diff --git a/p5-gd/.footprint b/p5-gd/.footprint new file mode 100644 index 000000000..908998bda --- /dev/null +++ b/p5-gd/.footprint @@ -0,0 +1,27 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-r-xr-xr-x root/root usr/bin/bdf2gdfont.pl +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/perl5/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/linux/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/GD.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/linux/GD/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/GD/Image.pm +-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/GD/Polygon.pm +-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/GD/Polyline.pm +-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/GD/Simple.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/linux/auto/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/linux/auto/GD/ +-r-xr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/linux/auto/GD/GD.so +-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/qd.pl +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-r--r--r-- root/root usr/man/man1/bdf2gdfont.pl.1pm.gz +drwxr-xr-x root/root usr/man/man3/ +-r--r--r-- root/root usr/man/man3/GD.3pm.gz +-r--r--r-- root/root usr/man/man3/GD::Image.3pm.gz +-r--r--r-- root/root usr/man/man3/GD::Polygon.3pm.gz +-r--r--r-- root/root usr/man/man3/GD::Polyline.3pm.gz +-r--r--r-- root/root usr/man/man3/GD::Simple.3pm.gz diff --git a/p5-gd/.md5sum b/p5-gd/.md5sum new file mode 100644 index 000000000..fb872cb3e --- /dev/null +++ b/p5-gd/.md5sum @@ -0,0 +1 @@ +5fdb681e5614236e7a952a07eabc8791 GD-2.39.tar.gz diff --git a/p5-gd/Pkgfile b/p5-gd/Pkgfile new file mode 100644 index 000000000..bffb44299 --- /dev/null +++ b/p5-gd/Pkgfile @@ -0,0 +1,19 @@ +# Description: Perl interface to GD graphics library +# URL: http://search.cpan.org/~lds/GD-2.39/ +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: libgd + +name=p5-gd +version=2.39 +release=1 +source=(http://search.cpan.org/CPAN/authors/id/L/LD/LDS/GD-$version.tar.gz ) + +build () { + mkdir -p $PKG/usr/bin + cd GD-$version + perl Makefile.PL + make OPTIMIZE="${CFLAGS}" + make DESTDIR=${PKG} install + find $PKG \( \( -depth -empty \) -o \( -name .packlist -o -name '*.bs' -o -name autosplit.ix -o -name perllocal.pod \) \) -exec rm -rf {} \; + chown -R root:root $PKG +}