diff options
author | pawel <pawel@FreeBSD.org> | 2014-07-08 20:26:03 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2014-07-08 20:26:03 +0800 |
commit | 2f604bf9b27e3759fc4d07fdf9e649f14c90d8c0 (patch) | |
tree | 69796bd23d49999bacdd5c8b58f117d214c37a9d /security | |
parent | 5dad7440e41399dee85207ac2f6fe4f61d65928e (diff) | |
download | freebsd-ports-gnome-2f604bf9b27e3759fc4d07fdf9e649f14c90d8c0.tar.gz freebsd-ports-gnome-2f604bf9b27e3759fc4d07fdf9e649f14c90d8c0.tar.zst freebsd-ports-gnome-2f604bf9b27e3759fc4d07fdf9e649f14c90d8c0.zip |
Add staging support, allow it as regular user
Diffstat (limited to 'security')
-rw-r--r-- | security/fbopenssl/Makefile | 12 | ||||
-rw-r--r-- | security/fbopenssl/files/BSDMakefile | 2 |
2 files changed, 5 insertions, 9 deletions
diff --git a/security/fbopenssl/Makefile b/security/fbopenssl/Makefile index 104827d4d317..4abbb5fdd245 100644 --- a/security/fbopenssl/Makefile +++ b/security/fbopenssl/Makefile @@ -5,11 +5,12 @@ PORTVERSION= 0.0.4 CATEGORIES= security MASTER_SITES= SF/modgssapache/${PORTNAME}/${PORTVERSION}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= GSS-API and SPNEGO extensions for OpenSSL LICENSE= GPLv2 +USES= uidfix USE_LDCONFIG= yes USE_OPENSSL= yes MAKEFILE= BSDMakefile @@ -19,16 +20,11 @@ PORTDOCS= readme.txt OPTIONS_DEFINE= DOCS -NO_STAGE= yes -.include <bsd.port.options.mk> - post-extract: ${INSTALL_DATA} ${FILESDIR}/BSDMakefile ${WRKSRC} -.if ${PORT_OPTIONS:MDOCS} post-install: - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/security/fbopenssl/files/BSDMakefile b/security/fbopenssl/files/BSDMakefile index 590ebb313f9a..f3964ee82d0c 100644 --- a/security/fbopenssl/files/BSDMakefile +++ b/security/fbopenssl/files/BSDMakefile @@ -31,6 +31,6 @@ FILES= include/asn1help.h \ FILESDIR?= ${PREFIX}/include/fbopenssl beforeinstall: - install -m 0755 -d ${PREFIX}/include/fbopenssl + install -m 0755 -d ${DESTDIR}${PREFIX}/include/fbopenssl .include <bsd.lib.mk> |