p5-gtk2: new maintainer. fix perms.

This commit is contained in:
John Vogel 2018-02-22 03:20:00 -05:00
parent b16fa00f78
commit 9da9918c27
3 changed files with 679 additions and 681 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zs2Mj5MvRnStUjCoLp9WcIm6sOI/bhLTjt7OWs5RfJqX5RIzzrjImWaapv5xHivo6T3u7FZ7+WPOV5ZestTjAs=
SHA256 (Pkgfile) = 1c933b88336047ecd2d444d3fa1eab877535954a0bbde094c7f878ad3626f1f1
SHA256 (.footprint) = 2c540c3fe77b64edfdac052d569de533800d4d5aa798134a511c0782346e5e55
RWSagIOpLGJF32YKElWgNKGUySAzWcUPpPeyvVONiLlYIReD5P8O6eg6HCRs0szkXwYbEDRWfBb3odk+50PQNqNZr9MS9shHfgE=
SHA256 (Pkgfile) = c0f6eeb527c7aaf0ab748b6baff0de66d93fa488f528e84390a9d3b6c3b603fd
SHA256 (.footprint) = 593ef285bd5dcfde1905cfd83c3391c9000f08b31fe0a74bb109a365ea7ac861
SHA256 (Gtk2-1.24992.tar.gz) = a2ed6902f7f29f7c8dddbe58119589f433252a12132c295c54afbac587cc8480

View File

@ -1,8 +1,7 @@
# Description: Perl bindings for GTK2
# URL: http://search.cpan.org/dist/Gtk2/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Han Boetes, han at mijncomputer dot nl
# Depends on: gtk p5-pango xorg-libxdamage
# URL: http://search.cpan.org/dist/Gtk2/
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# Depends on: gtk p5-pango xorg-libxdamage
name=p5-gtk2
version=1.24992
@ -10,20 +9,19 @@ release=1
source=(http://www.cpan.org/modules/by-module/Gtk2/Gtk2-$version.tar.gz)
build() {
cd Gtk2-$version
perl Makefile.PL \
--without-gdkimlib \
--without-gnome \
--without-applets \
--without-gnomeprint \
--without-glade
cd Gtk2-$version
make OPTIMIZE="$CFLAGS"
make install DESTDIR=$PKG
perl Makefile.PL \
--without-gdkimlib \
--without-gnome \
--without-applets \
--without-gnomeprint \
--without-glade
find $PKG \
-name perllocal.pod \
-o -name "*.bs" \
-o -name .packlist | xargs rm
find $PKG -empty | xargs rmdir -p ||:
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 ||:
find $PKG -type f -a -perm -u-w | xargs chmod u+w
}