1
0
forked from ports/contrib

p5-anyevent: initial release

This commit is contained in:
Han Boetes 2006-11-26 16:39:45 +01:00
parent 7f274ae06a
commit 1e38f077bb
3 changed files with 39 additions and 0 deletions

16
p5-anyevent/.footprint Normal file
View File

@ -0,0 +1,16 @@
drwxr-xr-x root/root usr/
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/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent/Impl/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent/Impl/Coro.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent/Impl/Event.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent/Impl/Glib.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent/Impl/Perl.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/AnyEvent/Impl/Tk.pm
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man3/
-r--r--r-- root/root usr/man/man3/AnyEvent.3pm.gz

1
p5-anyevent/.md5sum Normal file
View File

@ -0,0 +1 @@
048a183e5c3154f8d7d0b16888ffe07b AnyEvent-2.1.tar.gz

22
p5-anyevent/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: Perl bindings for AnyEvent
# URL: http://www.gtkperl.org
# Maintainer: Han Boetes <han@mijncomputer.nl>
# Depends on: perl
name=p5-anyevent
version=2.1
release=1
source="http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/AnyEvent-2.1.tar.gz"
build()
{
cd AnyEvent-$version
perl Makefile.PL
make OPTIMIZE="$CFLAGS"
make install DESTDIR=$PKG
find $PKG \
-name perllocal.pod \
-o -name "*.bs" \
-o -name .packlist | xargs rm
find $PKG -empty | xargs rmdir -p ||:
}