mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# New ports collection makefile for: nntpcache
|
|
# Version required: 2.3.2
|
|
# Date created: 6 January 1997
|
|
# Whom: proff@suburbia.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= nntpcache-2.3.2
|
|
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/
|
|
|
|
MAINTAINER= nntpcache@nntpcache.org
|
|
|
|
BUILD_DEPENDS= pgp:${PORTSDIR}/security/pgp
|
|
|
|
GNU_CONFIGURE= TRUE
|
|
CONFIGURE_ARGS= --localstatedir=/var/spool
|
|
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" \
|
|
${FILESDIR}/nntpcached.rc > ${WRKSRC}/nntpcached.sh
|
|
|
|
post-install:
|
|
.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
|
|
@${SED} -e 's#/usr/local#${PREFIX}#' ${PKGDIR}/MESSAGE
|
|
|
|
hardlink-pgp-files:
|
|
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
|
|
|
|
.include <bsd.port.mk>
|