1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/news/inn-stable/Makefile

86 lines
2.9 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: inn
1996-12-18 23:32:28 +00:00
# Date created: 20 Oct 1994 (1.4), 18 Dec 1996 (1.5.1)
# Whom: torstenb
#
1999-08-30 14:33:04 +00:00
# $FreeBSD$
#
PORTNAME= inn
2001-01-08 13:01:10 +00:00
SNAPSHOT= 20010107
PORTVERSION= 2.3.${SNAPSHOT}
CATEGORIES= news
MASTER_SITES= ftp://ftp.isc.org/isc/inn/snapshots/
DISTNAME= inn-STABLE-${SNAPSHOT}
MAINTAINER= des@FreeBSD.org
1995-05-04 22:39:46 +00:00
USE_GMAKE=YES
1999-02-24 23:27:16 +00:00
.if exists(/var/news)
INN_NEWSSPOOL?=/var/news
.elif exists(/var/spool/news)
INN_NEWSSPOOL?=/var/spool/news
updated inn2 to last recent STABLE version inn-STABLE_2_2-1999-02-17_03-02 introduced new variable NEWSSPOOL, which points to news spooldir... - can be fine-tuned in /etc/make.conf - can be overwritten on the commandline - defaults to /var/spool/news, when not set - is set to /var/spool/news, when in port building (BATCH) mode bugfix: tmp- and spool-dir have to live on the same filesystem, to avoid this error: "rnews: cant rename /tmp/36d24c3ehN1072 to /var/spool/news/incoming/36d24c3eTg1072 Cross-device link" Solution -> CONFIGURE_ARGS+=--with-tmp-path=${NEWSSPOOL}/tmp added two comments "(from the author)", to reflect that I'm not personally focussed on perl Some (early) output in the pre-extract phase, to tell the admin, where our news-spool will live: @${ECHO} ">> building inn2 with NEWSSPOOL=${NEWSSPOOL}..." Create ${PREFIX}/news and ${NEWSSPOOL}/news with proper permissions in pre-install target Since we took care about creation of spool-dir in pre-install, we can now safely perform the ${MKDIR}'s in post-install target ${MKDIR} creates ${NEWSSPOOL}/incoming/bad and ${NEWSSPOOL}/incoming at the same time, so save some CPU cycles Fixed update target, manual pages will be compressed now by performing a "compress-man" as well (we had "up to date" uncompressed and old compressed manpages, which is kinda sub-optimal ;-) Well people, I think now we have a real fine inn port. I'd like to ask the inn port maintainer, if we should remove inn, since it's a bit outdated. The new inn2 offers many new features and you have the possibility to change inn's runtime behaviour in config files, instead of recompiling it. Then I think, that the old inn isn't maintained anymore by ISC.
1999-02-23 19:33:07 +00:00
.else
INN_NEWSSPOOL?=${PREFIX}/news/spool
updated inn2 to last recent STABLE version inn-STABLE_2_2-1999-02-17_03-02 introduced new variable NEWSSPOOL, which points to news spooldir... - can be fine-tuned in /etc/make.conf - can be overwritten on the commandline - defaults to /var/spool/news, when not set - is set to /var/spool/news, when in port building (BATCH) mode bugfix: tmp- and spool-dir have to live on the same filesystem, to avoid this error: "rnews: cant rename /tmp/36d24c3ehN1072 to /var/spool/news/incoming/36d24c3eTg1072 Cross-device link" Solution -> CONFIGURE_ARGS+=--with-tmp-path=${NEWSSPOOL}/tmp added two comments "(from the author)", to reflect that I'm not personally focussed on perl Some (early) output in the pre-extract phase, to tell the admin, where our news-spool will live: @${ECHO} ">> building inn2 with NEWSSPOOL=${NEWSSPOOL}..." Create ${PREFIX}/news and ${NEWSSPOOL}/news with proper permissions in pre-install target Since we took care about creation of spool-dir in pre-install, we can now safely perform the ${MKDIR}'s in post-install target ${MKDIR} creates ${NEWSSPOOL}/incoming/bad and ${NEWSSPOOL}/incoming at the same time, so save some CPU cycles Fixed update target, manual pages will be compressed now by performing a "compress-man" as well (we had "up to date" uncompressed and old compressed manpages, which is kinda sub-optimal ;-) Well people, I think now we have a real fine inn port. I'd like to ask the inn port maintainer, if we should remove inn, since it's a bit outdated. The new inn2 offers many new features and you have the possibility to change inn's runtime behaviour in config files, instead of recompiling it. Then I think, that the old inn isn't maintained anymore by ISC.
1999-02-23 19:33:07 +00:00
.endif
INN_NEWSLOG?=/var/log/news
updated inn2 to last recent STABLE version inn-STABLE_2_2-1999-02-17_03-02 introduced new variable NEWSSPOOL, which points to news spooldir... - can be fine-tuned in /etc/make.conf - can be overwritten on the commandline - defaults to /var/spool/news, when not set - is set to /var/spool/news, when in port building (BATCH) mode bugfix: tmp- and spool-dir have to live on the same filesystem, to avoid this error: "rnews: cant rename /tmp/36d24c3ehN1072 to /var/spool/news/incoming/36d24c3eTg1072 Cross-device link" Solution -> CONFIGURE_ARGS+=--with-tmp-path=${NEWSSPOOL}/tmp added two comments "(from the author)", to reflect that I'm not personally focussed on perl Some (early) output in the pre-extract phase, to tell the admin, where our news-spool will live: @${ECHO} ">> building inn2 with NEWSSPOOL=${NEWSSPOOL}..." Create ${PREFIX}/news and ${NEWSSPOOL}/news with proper permissions in pre-install target Since we took care about creation of spool-dir in pre-install, we can now safely perform the ${MKDIR}'s in post-install target ${MKDIR} creates ${NEWSSPOOL}/incoming/bad and ${NEWSSPOOL}/incoming at the same time, so save some CPU cycles Fixed update target, manual pages will be compressed now by performing a "compress-man" as well (we had "up to date" uncompressed and old compressed manpages, which is kinda sub-optimal ;-) Well people, I think now we have a real fine inn port. I'd like to ask the inn port maintainer, if we should remove inn, since it's a bit outdated. The new inn2 offers many new features and you have the possibility to change inn's runtime behaviour in config files, instead of recompiling it. Then I think, that the old inn isn't maintained anymore by ISC.
1999-02-23 19:33:07 +00:00
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --mandir=${PREFIX}/man
CONFIGURE_ARGS+= --prefix=${PREFIX}/news
CONFIGURE_ARGS+= --with-spool-dir=${INN_NEWSSPOOL}
CONFIGURE_ARGS+= --with-log-dir=${INN_NEWSLOG}
CONFIGURE_ARGS+= --with-perl
CONFIGURE_ARGS+= --with-tmp-path=${INN_NEWSSPOOL}/tmp
CONFIGURE_ARGS+= --with-largefiles
1996-12-18 23:32:28 +00:00
# Various Options. See ${WRKSRC}/INSTALL for details
# Use tagged hash table for the history database. Uses much less memory but
# is somewhat slower
#CONFIGURE_ARGS+= --enable-tagged-hash
1996-12-18 23:32:28 +00:00
MAN1= ckpasswd.1 convdate.1 getlist.1 grephistory.1 inews.1 innconfval.1 \
innfeed.1 nntpget.1 rnews.1 shlock.1 shrinkfile.1 simpleftp.1 \
startinnfeed.1
MAN3= clientlib.3 dbz.3 inndcomm.3 libinn.3 libstorage.3 parsedate.3 qio.3 \
wildmat.3
MAN5= active.5 buffindexed.conf.5 control.ctl.5 cycbuff.conf.5 \
distrib.pats.5 expire.ctl.5 history.5 incoming.conf.5 inn.conf.5 \
innfeed.conf.5 innwatch.ctl.5 moderators.5 motd.news.5 newsfeeds.5 \
newslog.5 nnrp.access.5 nnrpd.track.5 nntpsend.ctl.5 ovdb.5 \
overview.fmt.5 passwd.nntp.5 readers.conf.5 sasl.conf.5 storage.conf.5
MAN8= actsync.8 actsyncd.8 archive.8 batcher.8 buffchan.8 cnfsheadconf.8 \
cnfsstat.8 controlchan.8 ctlinnd.8 cvtbatch.8 dbprocs.8 expire.8 \
expireover.8 expirerm.8 fastrm.8 filechan.8 inncheck.8 innd.8 inndf.8 \
inndstart.8 innreport.8 innstat.8 innwatch.8 innxbatch.8 innxmit.8 \
mailpost.8 makedbz.8 makehistory.8 mod-active.8 news.daily.8 \
news2mail.8 newsrequeue.8 nnrpd.8 nntpsend.8 ovdb_recover.8 \
ovdb_upgrade.8 overchan.8 pgpverify.8 prunehistory.8 pullnews.8 \
scanlogs.8 send-uucp.8 sm.8 tally.control.8 writelog.8
EXTRA= ${WRKSRC}/HISTORY ${WRKSRC}/INSTALL ${WRKSRC}/LICENSE
updated inn2 to last recent STABLE version inn-STABLE_2_2-1999-02-17_03-02 introduced new variable NEWSSPOOL, which points to news spooldir... - can be fine-tuned in /etc/make.conf - can be overwritten on the commandline - defaults to /var/spool/news, when not set - is set to /var/spool/news, when in port building (BATCH) mode bugfix: tmp- and spool-dir have to live on the same filesystem, to avoid this error: "rnews: cant rename /tmp/36d24c3ehN1072 to /var/spool/news/incoming/36d24c3eTg1072 Cross-device link" Solution -> CONFIGURE_ARGS+=--with-tmp-path=${NEWSSPOOL}/tmp added two comments "(from the author)", to reflect that I'm not personally focussed on perl Some (early) output in the pre-extract phase, to tell the admin, where our news-spool will live: @${ECHO} ">> building inn2 with NEWSSPOOL=${NEWSSPOOL}..." Create ${PREFIX}/news and ${NEWSSPOOL}/news with proper permissions in pre-install target Since we took care about creation of spool-dir in pre-install, we can now safely perform the ${MKDIR}'s in post-install target ${MKDIR} creates ${NEWSSPOOL}/incoming/bad and ${NEWSSPOOL}/incoming at the same time, so save some CPU cycles Fixed update target, manual pages will be compressed now by performing a "compress-man" as well (we had "up to date" uncompressed and old compressed manpages, which is kinda sub-optimal ;-) Well people, I think now we have a real fine inn port. I'd like to ask the inn port maintainer, if we should remove inn, since it's a bit outdated. The new inn2 offers many new features and you have the possibility to change inn's runtime behaviour in config files, instead of recompiling it. Then I think, that the old inn isn't maintained anymore by ISC.
1999-02-23 19:33:07 +00:00
pre-install:
${MKDIR} ${INN_NEWSSPOOL}
1995-05-04 22:39:46 +00:00
post-install:
@(if [ ! -f ${PREFIX}/news/db/history ] ; then \
${ECHO} 'Creating empty history database...' ; \
cd ${PREFIX}/news/db ; \
${TOUCH} history ; \
${CHMOD} 644 history ; \
${CHOWN} news:news history ; \
../bin/makedbz -i ; \
for s in dir hash index ; do \
${INSTALL} -o news -m 644 history.n.$${s} history.$${s} ; \
done ; \
fi)
@${SED} <${FILESDIR}/innd.sh >${PREFIX}/etc/rc.d/innd.sh \
s+!!PREFIX!!+${PREFIX}+g && ${CHMOD} +x ${PREFIX}/etc/rc.d/innd.sh
@${MKDIR} ${PREFIX}/share/doc/inn
@${INSTALL_DATA} ${EXTRA} ${PREFIX}/share/doc/inn
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.mk>