diff options
Diffstat (limited to 'news/nntpcache/Makefile')
-rw-r--r-- | news/nntpcache/Makefile | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/news/nntpcache/Makefile b/news/nntpcache/Makefile index 7fa1a4dfa655..2427a65995f5 100644 --- a/news/nntpcache/Makefile +++ b/news/nntpcache/Makefile @@ -1,32 +1,49 @@ # New ports collection makefile for: nntpcache -# Version required: 1.0.7.1 +# Version required: 2.2b7 # Date created: 6 January 1997 # Whom: proff@suburbia.net # -# $Id: Makefile,v 1.8 1998/01/25 16:52:44 steve Exp $ +# $Id: Makefile,v 1.7 1997/12/24 01:21:28 alex Exp $ # -DISTNAME= nntpcache-2.2b4 +DISTNAME= nntpcache-2.2b7 CATEGORIES= news MASTER_SITES= ftp://nntpcache.org/pub/nntpcache/ \ ftp://ftp.ntnu.no/pub/unix/news/ \ ftp://ftp.nethelp.no/pub/unix/news/ \ ftp://suburbia.net/pub/nntpcache/ -BUILD_DEPENDS= pgp:${PORTSDIR}/security/pgp MAINTAINER= nntpcache@nntpcache.org +BUILD_DEPENDS= pgp:${PORTSDIR}/security/pgp + GNU_CONFIGURE= TRUE CONFIGURE_ARGS= --localstatedir=/var/spool -MAN8= newshound.8 nntpcached.8 +MAN8= nntpcached.8 newshound.8 +DOCS= AUTHORS ChangeLog FAQ FAQ.html HACKING \ + INSTALL LICENSING NEWS README README.INN VERSION USE_GMAKE= TRUE post-configure: - @sed -e "s:%%PREFIX%%:${PREFIX}:g" \ + @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" \ ${FILESDIR}/nntpcached.rc > ${WRKSRC}/nntpcached.sh post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/nntpcached.sh ${PREFIX}/etc/rc.d +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/nntpcache + for i in ${DOCS}; do \ + ${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/share/doc/nntpcache; \ + done +.endif + ${INSTALL_SCRIPT} ${WRKSRC}/nntpcached.sh \ + ${PREFIX}/etc/rc.d/nntpcached.sh.sample +# for i in ${PREFIX}/etc/nntpcache/*asc-dist ${PREFIX}/etc/nntpcache/*pgp-dist ; do \ +# j=`echo $$i | sed -e 's/-dist//'`; \ +# if [ \! -f $$j ]; then \ +# ln $$i $$j; \ +# fi; \ +# done + @${SED} -e 's#/usr/local#${PREFIX}#' ${PKGDIR}/MESSAGE .include <bsd.port.mk> |