summaryrefslogtreecommitdiff
path: root/news/slurp/Makefile
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-07-27 21:54:12 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-07-27 21:54:12 +0000
commit9cd707fee704bf61337b366efd84ab7713074983 (patch)
treeaefb8214c5a09ae787e355b25db15b5867b01d61 /news/slurp/Makefile
parentUpdated distribution patch. (diff)
A passive NNTP client that retrieves Usenet news articles from a remote server.
Submitted by: James Raynard <fports@jraynard.demon.co.uk>
Notes
Notes: svn path=/head/; revision=3439
Diffstat (limited to 'news/slurp/Makefile')
-rw-r--r--news/slurp/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/news/slurp/Makefile b/news/slurp/Makefile
new file mode 100644
index 000000000000..d27b55e64584
--- /dev/null
+++ b/news/slurp/Makefile
@@ -0,0 +1,35 @@
+# New ports collection makefile for: slurp
+# Version required: 1.10
+# Date created: 30 Jun 1996
+# Whom: jraynard
+#
+# $Id$
+#
+
+DISTNAME= slurp-1.10
+CATEGORIES+= news
+MASTER_SITES= ftp://ftp.demon.co.uk/pub/news/slurp/
+EXTRACT_SUFX= .tar.Z
+
+MAINTAINER= jraynard@FreeBSD.ORG
+
+#RUN_DEPENDS= ${PREFIX}/etc/innd:${PORTSDIR}/news/inn
+
+NO_WRKSUBDIR= yes
+
+pre-build:
+ @(cd ${WRKSRC}; cp conf.h conf.h.orig; \
+ sed -e 's!/usr/lib/news!${PREFIX}/news/lib!' -e 's!/var/spool!/var!' conf.h.orig > conf.h; \
+ rm -f syslog.h)
+ @cp ${FILESDIR}/dbz.* ${WRKSRC}
+
+do-install:
+ mkdir -p ${PREFIX}/news/bin ${PREFIX}/news/lib
+ install -c -o news -g news -m 0555 -s ${WRKSRC}/slurp ${PREFIX}/news/bin/
+ install -c -o man -g man -m 0444 ${WRKSRC}/slurp.1 ${PREFIX}/man/man1
+.if !defined(NOMANCOMPRESS)
+ gzip -9nf ${PREFIX}/man/man1/slurp.1
+.endif
+ install -c -o news -g news -m 0644 ${WRKSRC}/slurp.sys ${PREFIX}/news/lib/
+
+.include <bsd.port.mk>