diff options
author | 2003-05-30 08:13:44 +0000 | |
---|---|---|
committer | 2003-05-30 08:13:44 +0000 | |
commit | 45a0bd934a994281eca47e39281854c63e37be72 (patch) | |
tree | fedd15a55741b14ca3ebe421d31184c148409cf7 /eclass/perl-post.eclass | |
parent | removed make test (diff) | |
download | gentoo-2-45a0bd934a994281eca47e39281854c63e37be72.tar.gz gentoo-2-45a0bd934a994281eca47e39281854c63e37be72.tar.bz2 gentoo-2-45a0bd934a994281eca47e39281854c63e37be72.zip |
folded perl-post functions into perl-module eclass -- was needless
Diffstat (limited to 'eclass/perl-post.eclass')
-rw-r--r-- | eclass/perl-post.eclass | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/eclass/perl-post.eclass b/eclass/perl-post.eclass deleted file mode 100644 index 3f0dccfd66fc..000000000000 --- a/eclass/perl-post.eclass +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-post.eclass,v 1.10 2003/02/16 04:26:21 vapier Exp $ -# -# Author: Seemant Kulleen <seemant@gentoo.org> -# -# The perl-post eclass is designed to allow the ${installarchdir}/perllocal.pod -# file to be updated cleanly after perl and/or perl-modules are installed -# or removed. - -ECLASS=perl-post -INHERITED="$INHERITED $ECLASS" - -EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ - perlinfo updatepod - -SITE_LIB="" -ARCH_LIB="" -POD_DIR="" - - -perl-post_pkg_setup() { - - perlinfo -} - - -perl-post_pkg_preinst() { - - perlinfo -} - -perl-post_pkg_postinst() { - - updatepod -} - -perl-post_pkg_prerm() { - - updatepod -} - -perl-post_pkg_postrm() { - - updatepod -} - -perl-post_perlinfo() { - - if [ -f /usr/bin/perl ] - then - eval `perl '-V:installarchlib'` - eval `perl '-V:installsitearch'` - ARCH_LIB=${installarchlib} - SITE_LIB=${installsitearch} - - eval `perl '-V:version'` - POD_DIR="/usr/share/perl/gentoo-pods/${version}" - fi - -} - -perl-post_updatepod() { - perlinfo - - if [ -d "${POD_DIR}" ] - then - for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do - cat ${FILE} >> ${ARCH_LIB}/perllocal.pod - rm -f ${FILE} - done - for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do - cat ${FILE} >> ${SITE_LIB}/perllocal.pod - rm -f ${FILE} - done - - #cat ${POD_DIR}/*.pod.arch >> ${ARCH_LIB}/perllocal.pod - #cat ${POD_DIR}/*.pod.site >> ${SITE_LIB}/perllocal.pod - #rm -f ${POD_DIR}/*.pod.site - #rm -f ${POD_DIR}/*.pod.site - fi -} |