# Template build file for 'perl'. pkgname=perl version=5.14.1 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 " homepage="http://www.perl.org" license="GPL-2" checksum=29b4a7e7c22d4a980ab9eb1ea486c5c4ee9ec533192a1ce8f3fe9ae32fb1f862 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. ln -sf /usr/bin/perl${version} ${DESTDIR}/usr/bin/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. vinstall ${FILESDIR}/perlbin.sh 644 etc/profile.d # 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. ln -sf /usr/lib/perl5/core_perl/CORE/libperl.so \ ${DESTDIR}/usr/lib/libperl.so }