diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-10-23 22:30:27 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-10-23 22:30:27 +0000 |
commit | 79a4b63aee6fceafa0626bf927fe700cfc3a9031 (patch) | |
tree | aabfdd8bdbdb32d1f0f366ea13a885dcd715cf6b /security/scanhill | |
parent | 79375e77af6c5cc2ffc60a66812098b76b71a2e2 (diff) |
Notes
Diffstat (limited to 'security/scanhill')
-rw-r--r-- | security/scanhill/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/security/scanhill/Makefile b/security/scanhill/Makefile index ae7afc02fe8f..14140056fad4 100644 --- a/security/scanhill/Makefile +++ b/security/scanhill/Makefile @@ -19,7 +19,6 @@ PORTDOCS= README.txt INSTALL.txt mysql.sql OPTIONS_DEFINE= MYSQL DOCS -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${PORT_OPTIONS:MMYSQL} @@ -31,15 +30,15 @@ post-patch: @${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/scanhill ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/scanhill.conf ${PREFIX}/etc/scanhill.conf-dist + ${INSTALL_PROGRAM} ${WRKSRC}/scanhill ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/scanhill.conf ${STAGEDIR}${PREFIX}/etc/scanhill.conf-dist .if !exists(${PREFIX}/etc/scanhill.conf) - ${INSTALL_DATA} ${WRKSRC}/scanhill.conf ${PREFIX}/etc/ + ${INSTALL_DATA} ${WRKSRC}/scanhill.conf ${STAGEDIR}${PREFIX}/etc/ .endif .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} . for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} . endfor .endif |