diff options
author | tijl <tijl@FreeBSD.org> | 2014-07-08 03:16:16 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-07-08 03:16:16 +0800 |
commit | 9a48fe5bfb6d07f75efdef4c3d301e4525987878 (patch) | |
tree | eae3874e1fa588346499e12a2a792872053377a1 | |
parent | cceb3320eba62511bce56e4c58b714e2204f574d (diff) | |
download | freebsd-ports-gnome-9a48fe5bfb6d07f75efdef4c3d301e4525987878.tar.gz freebsd-ports-gnome-9a48fe5bfb6d07f75efdef4c3d301e4525987878.tar.zst freebsd-ports-gnome-9a48fe5bfb6d07f75efdef4c3d301e4525987878.zip |
- Bump PORTREVISION after security/shishi library version change
- Add INSTALL_TARGET=install-strip
- Remove pre-install (creates directory outside stage area)
- Unhide post-install command
-rw-r--r-- | security/gss/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/security/gss/Makefile b/security/gss/Makefile index a91ece531c3c..6805d1ce4abf 100644 --- a/security/gss/Makefile +++ b/security/gss/Makefile @@ -3,7 +3,7 @@ PORTNAME= gss PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= GNU @@ -18,6 +18,7 @@ USES= libtool pathfix pkgconfig perl5 USE_PERL5= build GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-kerberos5 +INSTALL_TARGET= install-strip USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS NLS @@ -34,16 +35,8 @@ LDFLAGS+= -L${LOCALBASE}/lib post-configure: @cd ${WRKSRC}/doc && ${TOUCH} Makefile* -pre-install: - @${MKDIR} ${PREFIX}/${INFO_PATH} - -.include <bsd.port.options.mk> - post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgss.so -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} - @cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.endif + (cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include <bsd.port.mk> |