p5-extutils-pkgconfig: new maintainer. fix perms.

This commit is contained in:
John Vogel 2018-02-18 06:19:03 -05:00
parent 4efba6f449
commit e19bcfc3df
3 changed files with 20 additions and 20 deletions

View File

@ -4,8 +4,8 @@ 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/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/ drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/ExtUtils/ drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/ExtUtils/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.24/ExtUtils/PkgConfig.pm -rw-r--r-- root/root usr/lib/perl5/site_perl/5.24/ExtUtils/PkgConfig.pm
drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/ drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/ drwxr-xr-x root/root usr/share/man/man3/
-r--r--r-- root/root usr/share/man/man3/ExtUtils::PkgConfig.3pm.gz -rw-r--r-- root/root usr/share/man/man3/ExtUtils::PkgConfig.3pm.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+DVD8eAL8B7NmpYcRh5xUqBE5v7u4p8ZfvRUsUN9o8/UQXxmyIeN0XXLFzmIPt3RVhhziZ73HMFVX8v935sYg8= RWSagIOpLGJF3yWKTsv7us56dWK+nnuLMyDwiZOz2hdbB8OpxHVNKH8fE8BCJ2RMzBZA4P+hHfeyNBpABlRdhROsbhOQtTttcw4=
SHA256 (Pkgfile) = 9fd37df6e2602651c89d3e73c0773450ef777357cbb62c7f4198faed03ab580a SHA256 (Pkgfile) = a98c8c821b123e5dc0fa35715ff2ba0f21279373a112188af576c43004cf44dd
SHA256 (.footprint) = bb3e6b2da6f2584997dd440f715a358e0c172d90e008cd7e3273ac4a856a5908 SHA256 (.footprint) = 9a4d09173e3ba27358ce647b497213f8b37851185f68ea92a26c7e856def246d
SHA256 (ExtUtils-PkgConfig-1.16.tar.gz) = bbeaced995d7d8d10cfc51a3a5a66da41ceb2bc04fedcab50e10e6300e801c6e SHA256 (ExtUtils-PkgConfig-1.16.tar.gz) = bbeaced995d7d8d10cfc51a3a5a66da41ceb2bc04fedcab50e10e6300e801c6e

View File

@ -1,24 +1,24 @@
# Description: Perl bindings for pkgconfig # Description: Perl bindings for pkgconfig
# URL: http://search.cpan.org/dist/ExtUtils-PkgConfig/ # URL: https://search.cpan.org/dist/ExtUtils-PkgConfig/
# Maintainer: Jose V Beneyto, sepen at crux dot nu # Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# Packager: Han Boetes, han at mijncomputer dot nl # Depends on: p5-xml-parser
# Depends on: p5-xml-parser
name=p5-extutils-pkgconfig name=p5-extutils-pkgconfig
version=1.16 version=1.16
release=1 release=2
source=(http://www.cpan.org/modules/by-module/ExtUtils/ExtUtils-PkgConfig-$version.tar.gz) source=(https://www.cpan.org/modules/by-module/ExtUtils/ExtUtils-PkgConfig-$version.tar.gz)
build() { build() {
cd ExtUtils-PkgConfig-$version cd ExtUtils-PkgConfig-$version
perl Makefile.PL perl Makefile.PL
make OPTIMIZE="$CFLAGS" make OPTIMIZE="$CFLAGS"
make install DESTDIR=$PKG make install DESTDIR=$PKG
find $PKG \ find $PKG -type f -a ! -perm -u+w | xargs chmod u+w
-name perllocal.pod \ find $PKG \
-o -name "*.bs" \ -name perllocal.pod \
-o -name .packlist | xargs rm -o -name "*.bs" \
find $PKG -empty | xargs rmdir -p ||: -o -name .packlist | xargs rm
find $PKG -empty | xargs rmdir -p ||:
} }