forked from ports/contrib
p5-net-dns: 0.59 -> 0.63
This commit is contained in:
parent
9bb053d9cc
commit
de3e0283f3
@ -22,6 +22,7 @@ drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/
|
|||||||
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/DNAME.pm
|
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/DNAME.pm
|
||||||
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/EID.pm
|
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/EID.pm
|
||||||
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/HINFO.pm
|
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/HINFO.pm
|
||||||
|
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/IPSECKEY.pm
|
||||||
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/ISDN.pm
|
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/ISDN.pm
|
||||||
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/LOC.pm
|
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/LOC.pm
|
||||||
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/MB.pm
|
-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/linux/Net/DNS/RR/MB.pm
|
||||||
@ -77,6 +78,7 @@ drwxr-xr-x root/root usr/man/man3/
|
|||||||
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::DNAME.3pm.gz
|
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::DNAME.3pm.gz
|
||||||
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::EID.3pm.gz
|
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::EID.3pm.gz
|
||||||
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::HINFO.3pm.gz
|
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::HINFO.3pm.gz
|
||||||
|
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::IPSECKEY.3pm.gz
|
||||||
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::ISDN.3pm.gz
|
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::ISDN.3pm.gz
|
||||||
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::LOC.3pm.gz
|
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::LOC.3pm.gz
|
||||||
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::MB.3pm.gz
|
-r--r--r-- root/root usr/man/man3/Net::DNS::RR::MB.3pm.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
d3408875f34e5fa0a313a4a21c70e832 Net-DNS-0.59.tar.gz
|
c46aad24af44d424a972bb59c3aa5f37 Net-DNS-0.63.tar.gz
|
||||||
|
@ -1,28 +1,27 @@
|
|||||||
# Description: Perl Library Net::DNS
|
# Description: Perl Library Net::DNS
|
||||||
# URL: ...
|
# URL: http://www.net-dns.org/
|
||||||
# Maintainer: unmaintained
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||||||
# Packager: Han Boetes, han at mijncomputer dot nl
|
# Packager: Han Boetes, han at mijncomputer dot nl
|
||||||
#
|
|
||||||
# Depends on: perl
|
# Depends on: perl
|
||||||
|
|
||||||
name=p5-net-dns
|
name=p5-net-dns
|
||||||
capsname=Net-DNS
|
capsname=Net-DNS
|
||||||
version=0.59
|
version=0.63
|
||||||
release=1
|
release=1
|
||||||
source=(http://search.cpan.org/CPAN/authors/id/O/OL/OLAF/Net-DNS-$version.tar.gz)
|
source=(http://search.cpan.org/CPAN/authors/id/O/OL/OLAF/Net-DNS-$version.tar.gz)
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $capsname-$version
|
cd $capsname-$version
|
||||||
yes n|perl Makefile.PL
|
yes n|perl Makefile.PL
|
||||||
make OPTIMIZE="$CFLAGS"
|
make OPTIMIZE="$CFLAGS"
|
||||||
make install DESTDIR=$PKG
|
make install DESTDIR=$PKG
|
||||||
# Remove perlcrap
|
# Remove perlcrap
|
||||||
find $PKG \
|
find $PKG \
|
||||||
-name .packlist -or \
|
-name .packlist -or \
|
||||||
-name '*.bs' -or \
|
-name '*.bs' -or \
|
||||||
-name autosplit.ix -or \
|
-name autosplit.ix -or \
|
||||||
-name perllocal.pod | xargs rm
|
-name perllocal.pod | xargs rm
|
||||||
# Remove empty directories
|
# Remove empty directories
|
||||||
find $PKG -depth -empty -exec rm -rf {} \;
|
find $PKG -depth -empty -exec rm -rf {} \;
|
||||||
chown -R root:root $PKG
|
chown -R root:root $PKG
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user