p5-gd: First commit

This commit is contained in:
Alan Mizrahi 2008-05-03 09:43:23 -04:30
parent 5946cffdb6
commit 08b3bc3610
3 changed files with 47 additions and 0 deletions

27
p5-gd/.footprint Normal file
View File

@ -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

1
p5-gd/.md5sum Normal file
View File

@ -0,0 +1 @@
5fdb681e5614236e7a952a07eabc8791 GD-2.39.tar.gz

19
p5-gd/Pkgfile Normal file
View File

@ -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
}