diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-07-27 21:54:12 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-07-27 21:54:12 +0000 |
commit | 9cd707fee704bf61337b366efd84ab7713074983 (patch) | |
tree | aefb8214c5a09ae787e355b25db15b5867b01d61 /news/slurp/Makefile | |
parent | 7d76d7782449b2b54ecd8b4df3166056438d138b (diff) | |
download | ports-9cd707fee704bf61337b366efd84ab7713074983.tar.gz ports-9cd707fee704bf61337b366efd84ab7713074983.zip |
Notes
Diffstat (limited to 'news/slurp/Makefile')
-rw-r--r-- | news/slurp/Makefile | 35 |
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> |