# Template build file for 'perl'. pkgname=perl version=5.14.0 distfiles="http://www.cpan.org/src/5.0/$pkgname-$version.tar.bz2" build_style=custom-install short_desc="Practical Extraction and Report Language" maintainer="Juan RP " checksum=ea027d0f5279b7465f69ee942ea4015296f90429f1ead7a99fe3b03a475ee821 long_desc=" Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more. The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal). Its major features are that it's easy to use, supports both procedural and object-oriented (OO) programming, has powerful built-in support for text processing, and has one of the world's most impressive collections of third-party modules." Add_dependency run glibc Add_dependency run gdbm Add_dependency run libdb Add_dependency build gdbm-devel Add_dependency build db-devel Add_dependency build less Add_dependency build groff do_build() { ./Configure \ -des -Dusethreads -Duseshrplib \ -Dinstallprefix=/usr \ -Dprefix=/usr -Dvendorprefix=/usr \ -Dprivlib=/usr/share/perl5/core_perl \ -Darchlib=/usr/lib/perl5/core_perl \ -Dsitelib=/usr/share/perl5/site_perl \ -Dsitearch=/usr/lib/perl5/site_perl \ -Dvendorlib=/usr/share/perl5/vendor_perl \ -Dvendorarch=/usr/lib/perl5/vendor_perl \ -Dscriptdir=/usr/lib/perl5/core_perl/bin \ -Dsitescript=/usr/lib/perl5/site_perl/bin \ -Dvendorscript=/usr/lib/perl5/vendor_perl/bin \ -Dinc_version_list=none -Dman1ext=1p -Dman3ext=3p \ -Dcccdlflags="-fPIC" -Doptimize="${XBPS_CFLAGS}" make ${makejobs} } do_install() { # We use the same defaults than Arch Linux. make DESTDIR=${DESTDIR} install # Make a link from perl${version} to perl. cd ${DESTDIR}/usr/bin && ln -sf perl${version} perl ### CPAN Settings ### # Set CPAN default config to use the site directories. sed -e '/(makepl_arg =>/ s/""/"INSTALLDIRS=site"/' \ -e '/(mbuildpl_arg =>/ s/""/"installdirs=site"/' \ -i ${DESTDIR}/usr/share/perl5/core_perl/CPAN/FirstTime.pm ### CPANPLUS Settings ### # Set CPANPLUS default config to use the site directories. sed -e "/{'makemakerflags'}/ s/'';/'INSTALLDIRS=site';/" \ -e "/{'buildflags'}/ s/'';/'installdirs=site';/" \ -i ${DESTDIR}/usr/share/perl5/core_perl/CPANPLUS/Config.pm # Profile script so set paths to perl scripts. install -D -m644 ${FILESDIR}/perlbin.sh \ ${DESTDIR}/etc/profile.d/perlbin.sh # Remove all pod files *except* those under # /usr/share/perl5/core_perl/pod/ (FS#16488) rm -f ${DESTDIR}/usr/share/perl5/core_perl/*.pod for d in ${DESTDIR}/usr/share/perl5/core_perl/*; do if [ -d $d -a $(basename $d) != "pod" ]; then find $d -name *.pod -delete fi done find ${DESTDIR}/usr/lib -name *.pod -delete find ${DESTDIR} -name .packlist -delete # Make a symlink so that libperl.so is accesible. cd ${DESTDIR}/usr/lib && \ ln -sf ./perl5/core_perl/CORE/libperl.so libperl.so }