freebsd-ports/news/nntpcache/Makefile

80 lines
2.2 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: nntpcache
# Date created: 6 January 1997
# Whom: proff@suburbia.net
#
1999-08-30 16:33:04 +02:00
# $FreeBSD$
#
PORTNAME= nntpcache
PORTVERSION= 3.0.2
PORTREVISION= 6
CATEGORIES= news
MASTER_SITES= http://www.xs4all.nl/~suelette/
MAINTAINER= leeym@FreeBSD.org
2003-02-20 20:00:52 +01:00
COMMENT= News caching/anti-spam/server-merging system
USE_AUTOTOOLS= automake:15:env
- Update to version 2.4.0b5 - Remove a verifiably bad site from MASTER_SITES. - Remove duplicate entry (DNS entry points to same IP) from MASTER_SITES. - Add new mirror to MASTER_SITES. - Change MAINTAINER to -ports, as the previous maintainer (and author) has expressed a lack of interest in continued maintenance of this port. - Deploy DOCSDIR. - General clean-up and reorganisation of Makefile. - Remove PKGMESSAGE completely, since this port requires no user action which is out of the ordinary (I do not consider editing configuration files to be out of the ordinary), and it contains no information which is not also contained elsewhere in a more standardised location. - Add NO_CDROM, as this software is not free and never has been. - Bring the startup script installed in ${PREFIX}/etc/rc.d up to current standards (I hope). - Install a fully functional startup script in ${PREFIX}/etc/rc.d (as most ports now do), instead of an inactive .sample startup script. - Install HTML documentation. - Deploy %%PORTDOCS%% pragma in pkg-plist. - Make SPOOLDIR a user-tweakable option (default: /var/spool). NNTPCache will cache news articles in ${SPOOLDIR}/nntpcache. - Remove the non-standard "hardlink-pgp-files" target from Makefile. - Comment out the run-time dependency on security/pgp for now. The only NNTPCache functionality which depends on PGP is very optional indeed and furthermore, there is now a plethora of PGPish ports for the user to choose from. (This may need to be tweaked further, since NNTPCache builds without PGP support if PGP is not detected during the configurations stage.) Approved by: Julian Assange <nntpcache@nntpcache.org>, previous maintainer
2001-09-14 11:47:23 +02:00
# This may be set interactively at install-time. NNTPCache will
# cache news articles and related data in ${SPOOLDIR}/nntpcache.
SPOOLDIR?= /var/spool
NO_CDROM= Free for individuals and non-military, non-profit organisations only
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir=${SPOOLDIR}
AUTHINFO_EXT= authinfo_pam.ext
USE_RC_SUBR= nntpcached
OPTIONS= LDAP "OpenLDAP support" off \
RADIUS "RADIUS support" off \
SPAMPHOBIA "Spamphobia NoCeM support" off
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_RADIUS)
CONFIGURE_ARGS+= --with-authinfo-radius
AUTHINFO_EXT+= authinfo_radius.ext
.endif
.if defined(WITH_LDAP) || defined(WITH_LDAP2)
USE_OPENLDAP= yes
CONFIGURE_ARGS+= --with-authinfo-ldap
CPPFLAGS+= -I${PREFIX}/include -I${LOCALBASE}/include
LDFLAGS+= -L${PREFIX}/lib -L${LOCALBASE}/lib
AUTHINFO_EXT+= authinfo_ldap.ext
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
.endif
CONFIGURE_ARGS+= --program-transform-name=''
- Update to version 2.4.0b5 - Remove a verifiably bad site from MASTER_SITES. - Remove duplicate entry (DNS entry points to same IP) from MASTER_SITES. - Add new mirror to MASTER_SITES. - Change MAINTAINER to -ports, as the previous maintainer (and author) has expressed a lack of interest in continued maintenance of this port. - Deploy DOCSDIR. - General clean-up and reorganisation of Makefile. - Remove PKGMESSAGE completely, since this port requires no user action which is out of the ordinary (I do not consider editing configuration files to be out of the ordinary), and it contains no information which is not also contained elsewhere in a more standardised location. - Add NO_CDROM, as this software is not free and never has been. - Bring the startup script installed in ${PREFIX}/etc/rc.d up to current standards (I hope). - Install a fully functional startup script in ${PREFIX}/etc/rc.d (as most ports now do), instead of an inactive .sample startup script. - Install HTML documentation. - Deploy %%PORTDOCS%% pragma in pkg-plist. - Make SPOOLDIR a user-tweakable option (default: /var/spool). NNTPCache will cache news articles in ${SPOOLDIR}/nntpcache. - Remove the non-standard "hardlink-pgp-files" target from Makefile. - Comment out the run-time dependency on security/pgp for now. The only NNTPCache functionality which depends on PGP is very optional indeed and furthermore, there is now a plethora of PGPish ports for the user to choose from. (This may need to be tweaked further, since NNTPCache builds without PGP support if PGP is not detected during the configurations stage.) Approved by: Julian Assange <nntpcache@nntpcache.org>, previous maintainer
2001-09-14 11:47:23 +02:00
NNTPSPOOLDIR?= ${SPOOLDIR}/${PORTNAME}
PLIST_SUB+= SPOOLDIR=${NNTPSPOOLDIR}
CPIO_CMD= ${CPIO} --quiet -pdum -R
MAN8= nntpcached.8 newshound.8
PORTDOCS= AUTHORS ChangeLog FAQ FAQ.html HACKING HTML \
INSTALL LICENSING NEWS README README.INN VERSION
.if defined(WITH_SPAMPHOBIA)
REVISEDATE= 20060903
PATCH_SITES+= http://people.freebsd.org/~leeym/:SPAMPHOBIA
PATCHFILES+= ${DISTNAME}-spamphobia-${REVISEDATE}.diff.gz:SPAMPHOBIA
.endif
post-configure:
@cd ${WRKSRC}/src && ${GMAKE} ${AUTHINFO_EXT}
post-install:
- Update to version 2.4.0b5 - Remove a verifiably bad site from MASTER_SITES. - Remove duplicate entry (DNS entry points to same IP) from MASTER_SITES. - Add new mirror to MASTER_SITES. - Change MAINTAINER to -ports, as the previous maintainer (and author) has expressed a lack of interest in continued maintenance of this port. - Deploy DOCSDIR. - General clean-up and reorganisation of Makefile. - Remove PKGMESSAGE completely, since this port requires no user action which is out of the ordinary (I do not consider editing configuration files to be out of the ordinary), and it contains no information which is not also contained elsewhere in a more standardised location. - Add NO_CDROM, as this software is not free and never has been. - Bring the startup script installed in ${PREFIX}/etc/rc.d up to current standards (I hope). - Install a fully functional startup script in ${PREFIX}/etc/rc.d (as most ports now do), instead of an inactive .sample startup script. - Install HTML documentation. - Deploy %%PORTDOCS%% pragma in pkg-plist. - Make SPOOLDIR a user-tweakable option (default: /var/spool). NNTPCache will cache news articles in ${SPOOLDIR}/nntpcache. - Remove the non-standard "hardlink-pgp-files" target from Makefile. - Comment out the run-time dependency on security/pgp for now. The only NNTPCache functionality which depends on PGP is very optional indeed and furthermore, there is now a plethora of PGPish ports for the user to choose from. (This may need to be tweaked further, since NNTPCache builds without PGP support if PGP is not detected during the configurations stage.) Approved by: Julian Assange <nntpcache@nntpcache.org>, previous maintainer
2001-09-14 11:47:23 +02:00
@ ${MKDIR} ${NNTPSPOOLDIR} && ${CHMOD} 750 ${NNTPSPOOLDIR}
@ ${CP} ${PREFIX}/etc/${PORTNAME}/VERSION ${NNTPSPOOLDIR} && \
${CHMOD} 640 ${NNTPSPOOLDIR}/VERSION
@ ${CHOWN} -R news:news ${NNTPSPOOLDIR}
.if !defined(NOPORTDOCS)
- Update to version 2.4.0b5 - Remove a verifiably bad site from MASTER_SITES. - Remove duplicate entry (DNS entry points to same IP) from MASTER_SITES. - Add new mirror to MASTER_SITES. - Change MAINTAINER to -ports, as the previous maintainer (and author) has expressed a lack of interest in continued maintenance of this port. - Deploy DOCSDIR. - General clean-up and reorganisation of Makefile. - Remove PKGMESSAGE completely, since this port requires no user action which is out of the ordinary (I do not consider editing configuration files to be out of the ordinary), and it contains no information which is not also contained elsewhere in a more standardised location. - Add NO_CDROM, as this software is not free and never has been. - Bring the startup script installed in ${PREFIX}/etc/rc.d up to current standards (I hope). - Install a fully functional startup script in ${PREFIX}/etc/rc.d (as most ports now do), instead of an inactive .sample startup script. - Install HTML documentation. - Deploy %%PORTDOCS%% pragma in pkg-plist. - Make SPOOLDIR a user-tweakable option (default: /var/spool). NNTPCache will cache news articles in ${SPOOLDIR}/nntpcache. - Remove the non-standard "hardlink-pgp-files" target from Makefile. - Comment out the run-time dependency on security/pgp for now. The only NNTPCache functionality which depends on PGP is very optional indeed and furthermore, there is now a plethora of PGPish ports for the user to choose from. (This may need to be tweaked further, since NNTPCache builds without PGP support if PGP is not detected during the configurations stage.) Approved by: Julian Assange <nntpcache@nntpcache.org>, previous maintainer
2001-09-14 11:47:23 +02:00
@ ${MKDIR} ${DOCSDIR}
@ cd ${WRKSRC} && ${FIND} ${PORTDOCS} \
| ${CPIO_CMD} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
.endif
.include <bsd.port.post.mk>