diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-03-17 11:09:25 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-03-17 11:09:25 +0800 |
commit | 3e6eb99bed69bbea8025bad21e87983e5a7db9fe (patch) | |
tree | 41b6d6e5c7616808710b4aea68c098700efcdd8f /biology/p5-AcePerl/Makefile | |
parent | 96accc3623f1eec2b9e9f1495ed0ed65742e7c95 (diff) | |
download | freebsd-ports-gnome-3e6eb99bed69bbea8025bad21e87983e5a7db9fe.tar.gz freebsd-ports-gnome-3e6eb99bed69bbea8025bad21e87983e5a7db9fe.tar.zst freebsd-ports-gnome-3e6eb99bed69bbea8025bad21e87983e5a7db9fe.zip |
- Simplify MASTER_SITES
- Strip libraries
Diffstat (limited to 'biology/p5-AcePerl/Makefile')
-rw-r--r-- | biology/p5-AcePerl/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/biology/p5-AcePerl/Makefile b/biology/p5-AcePerl/Makefile index c2811aba4af0..00faac7597ac 100644 --- a/biology/p5-AcePerl/Makefile +++ b/biology/p5-AcePerl/Makefile @@ -3,10 +3,9 @@ PORTNAME= AcePerl PORTVERSION= 1.92 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= biology databases perl5 -MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= Ace +MASTER_SITES= CPAN/Ace PKGNAMEPREFIX= p5- MAINTAINER= ports@FreeBSD.org @@ -30,4 +29,11 @@ post-patch: @ ${SED} -e 's|XX__CC__XX|${CC}|' < ${FILESDIR}/FREEBSD_DEF \ > ${WRKSRC}/acelib/wmake/FREEBSD_DEF +post-install: +.for f in Freesubs/Freesubs.so RPC/RPC.so + ${CHMOD} u+w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Ace/${f} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Ace/${f} + ${CHMOD} u-w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Ace/${f} +.endfor + .include <bsd.port.post.mk> |