diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-27 09:52:21 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-27 09:52:21 +0000 |
commit | 42daabef369f5f9f4e94d79943a6f34991206ef1 (patch) | |
tree | d240917f03e266e8c5f12a1737cc8a8cdf95ac29 /news | |
parent | 851e129d4466cf5640db015a83c7e74c55d9e0a9 (diff) |
Notes
Diffstat (limited to 'news')
-rw-r--r-- | news/nget/Makefile | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/news/nget/Makefile b/news/nget/Makefile index 38e672880f17..053035ff9d2f 100644 --- a/news/nget/Makefile +++ b/news/nget/Makefile @@ -11,29 +11,21 @@ DISTNAME= nget-${PORTVERSION}+uulib MAINTAINER= ports@FreeBSD.org COMMENT= Auto-resuming command line nntp file grabber -MAN1= nget.1 ngetlite.1 -MANCOMPRESSED= no +USES= gmake +USE_GCC= any GNU_CONFIGURE= yes -USE_GMAKE= yes -NO_STAGE= yes post-extract: ${LN} -s nget-${PORTVERSION} ${WRKDIR}/${DISTNAME} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/nget ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/ngetlite ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/nget.1 ${MANPREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/ngetlite.1 ${MANPREFIX}/man/man1 - -post-install: - ${STRIP_CMD} ${PREFIX}/bin/nget - ${STRIP_CMD} ${PREFIX}/bin/ngetlite -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/nget ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/ngetlite ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/nget.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/ngetlite.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in README FAQ - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include <bsd.port.mk> |