summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1999-02-23 19:33:07 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1999-02-23 19:33:07 +0000
commit0bef0476034eeb99e5f8afb7b9d52950b7cb352c (patch)
tree051e9ddd59f27f9b97f8d79eeab47a06e3a7007d /news
parentSave this port from rotting: overtake maintainership. (diff)
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.
Notes
Notes: svn path=/head/; revision=16876
Diffstat (limited to 'news')
-rw-r--r--news/inn-stable/Makefile69
-rw-r--r--news/inn-stable/distinfo2
2 files changed, 42 insertions, 29 deletions
diff --git a/news/inn-stable/Makefile b/news/inn-stable/Makefile
index c73821fbb6c4..5cf5caa11f9e 100644
--- a/news/inn-stable/Makefile
+++ b/news/inn-stable/Makefile
@@ -3,26 +3,38 @@
# Date created: 20 Oct 1994 (1.4), 18 Dec 1996 (1.5.1)
# Whom: torstenb
#
-# $Id: Makefile,v 1.34 1999/02/17 06:35:44 andreas Exp $
+# $Id: Makefile,v 1.35 1999/02/17 06:40:02 andreas Exp $
#
-DISTNAME= inn-STABLE_2_2-1999-02-14_03-02
+DISTNAME= inn-STABLE_2_2-1999-02-17_03-02
PKGNAME= inn-stable-v22
CATEGORIES= news
MASTER_SITES= ftp://ftp.isc.org/isc/inn/snapshots/
MAINTAINER= andreas@FreeBSD.ORG
+.if defined(BATCH)
+# in BATCH mode we use the default
+NEWSSPOOL=/var/spool/news
+.else
+# you can set this in /etc/make.conf !
+NEWSSPOOL?=/var/spool/news
+.endif
+
HAS_CONFIGURE= yes
CONFIGURE_ARGS+=--prefix=${PREFIX}/news
CONFIGURE_ARGS+=--infodir=${PREFIX}/info
CONFIGURE_ARGS+=--mandir=${PREFIX}/man
-CONFIGURE_ARGS+=--with-spool-dir=/var/spool/news
+CONFIGURE_ARGS+=--with-spool-dir=${NEWSSPOOL}
CONFIGURE_ARGS+=--with-log-dir=/var/log/news
-CONFIGURE_ARGS+=--with-tmp-path=/tmp
+
+# 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"
+CONFIGURE_ARGS+=--with-tmp-path=${NEWSSPOOL}/tmp
# Highly recommended, because many of the really good spam filters
-# are written in Perl
+# are written in Perl (from the author)
CONFIGURE_ARGS+=--with-perl
# if server has less than 256 MB RAM
CONFIGURE_ARGS+=--enable-tagged-hash
@@ -30,7 +42,7 @@ CONFIGURE_ARGS+=--enable-tagged-hash
CONFIGURE_ARGS+=--disable-static
# Most available filters seem to be written in Perl these days,
-# so you can safely leave out TCL support.
+# so you can safely leave out TCL support (from the author)
#CONFIGURE_ARGS+=--with-tcl
# Do not create shared libraries
#CONFIGURE_ARGS+=--disable-shared
@@ -54,36 +66,37 @@ MAN8= actived.8 actsync.8 actsyncd.8 archive.8 batcher.8 buffchan.8 \
pgpverify.8 prunehistory.8 pullnews.8 scanlogs.8 send-uucp.8 sm.8 \
tally.control.8 tally.unwanted.8 writelog.8
+pre-extract:
+ @${ECHO} ">> building inn2 with NEWSSPOOL=${NEWSSPOOL}..."
+
pre-install:
${MKDIR} ${PREFIX}/news
- ${MKDIR} -m 0755 ${PREFIX}/news/sbin && \
- chown news.news ${PREFIX}/news/sbin
+ chown news.news ${PREFIX}/news
+ ${MKDIR} ${NEWSSPOOL}/news
+ chown news.news ${NEWSSPOOL}
update: build
@(cd ${WRKSRC} ; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} update)
+ @${MAKE} ${.MAKEFLAGS} compress-man
@${MAKE} ${.MAKEFLAGS} post-install
post-install:
- if [ ! -d /var/spool/news ]; then \
- ${MKDIR} -m 0775 /var/spool/news/articles; \
- chown news.news /var/spool/news/articles; \
- ${MKDIR} -m 0775 /var/spool/news/cycbuffs; \
- chown news.news /var/spool/news/cycbuffs; \
- ${MKDIR} -m 0775 /var/spool/news/incoming; \
- chown news.news /var/spool/news/incoming; \
- ${MKDIR} -m 0775 /var/spool/news/incoming/bad; \
- chown news.news /var/spool/news/incoming/bad; \
- ${MKDIR} -m 0775 /var/spool/news/innfeed; \
- chown news.news /var/spool/news/innfeed; \
- ${MKDIR} -m 0775 /var/spool/news/outgoing; \
- chown news.news /var/spool/news/outgoing; \
- ${MKDIR} -m 0775 /var/spool/news/overview; \
- chown news.news /var/spool/news/overview; \
- ${MKDIR} -m 0775 /var/spool/news/tmp; \
- chown news.news /var/spool/news/tmp; \
- ${MKDIR} -m 0775 /var/spool/news/uniover; \
- chown news.news /var/spool/news/uniover; \
- fi
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/articles
+ chown news.news ${NEWSSPOOL}/articles
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/cycbuffs
+ chown news.news ${NEWSSPOOL}/cycbuffs
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/incoming/bad
+ chown news.news ${NEWSSPOOL}/incoming/bad
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/innfeed
+ chown news.news ${NEWSSPOOL}/innfeed
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/outgoing
+ chown news.news ${NEWSSPOOL}/outgoing
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/overview
+ chown news.news ${NEWSSPOOL}/overview
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/tmp
+ chown news.news ${NEWSSPOOL}/tmp
+ ${MKDIR} -m 0775 ${NEWSSPOOL}/uniover
+ chown news.news ${NEWSSPOOL}/uniover
${SED} <${FILESDIR}/innd.sh >${PREFIX}/etc/rc.d/innd.sh \
s+!!PREFIX!!+${PREFIX}+g && chmod +x ${PREFIX}/etc/rc.d/innd.sh
# make rnews work when getting news via uucp !
diff --git a/news/inn-stable/distinfo b/news/inn-stable/distinfo
index cba673c0daed..f38ea451fcfa 100644
--- a/news/inn-stable/distinfo
+++ b/news/inn-stable/distinfo
@@ -1 +1 @@
-MD5 (inn-STABLE_2_2-1999-02-14_03-02.tar.gz) = b8fdc29a35551f1dd4c31e46026755aa
+MD5 (inn-STABLE_2_2-1999-02-17_03-02.tar.gz) = ca0d3c748bb4289a7380702359be4120