diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2014-01-31 17:07:01 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2014-01-31 17:07:01 +0000 |
commit | 74db5af24f3c07b2f3beb77218b820a25303e54f (patch) | |
tree | b8cadd2c46941908929bb84a94d7cb165fda6561 /net/queso | |
parent | 2a3e5f6057f4edf0ea985bcf110a31e81ee11b80 (diff) |
Notes
Diffstat (limited to 'net/queso')
-rw-r--r-- | net/queso/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/net/queso/Makefile b/net/queso/Makefile index 6b05c0f8831a..b411902a67c7 100644 --- a/net/queso/Makefile +++ b/net/queso/Makefile @@ -16,9 +16,6 @@ OPTIONS_DEFINE= DOCS GNU_CONFIGURE= yes -NO_STAGE= yes -.include <bsd.port.options.mk> - post-patch: @${REINPLACE_CMD} -e \ 's|-O2 -pipe|| ; \ @@ -26,11 +23,9 @@ post-patch: @${LN} -sf queso.conf ${WRKSRC}/queso.conf.sample do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} queso ${PREFIX}/sbin) - (cd ${WRKSRC} && ${INSTALL_DATA} queso.conf.sample ${PREFIX}/etc) -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} Documentation.txt ${DOCSDIR}) -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/queso ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_DATA} ${WRKSRC}/queso.conf.sample ${STAGEDIR}${PREFIX}/etc + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Documentation.txt ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |