diff options
Diffstat (limited to 'news/tin/Makefile')
-rw-r--r-- | news/tin/Makefile | 41 |
1 files changed, 34 insertions, 7 deletions
diff --git a/news/tin/Makefile b/news/tin/Makefile index 4a4ab9aee147..73d4d594bf46 100644 --- a/news/tin/Makefile +++ b/news/tin/Makefile @@ -1,18 +1,45 @@ +# ex:ts=8 # New ports collection makefile for: tin -# Version required: 1.2pl2 -# Date created: 29 Jun 1995 -# Whom: peter@haywire.dialix.oz.au +# Version required: tin1.3-unoff-BETA +# Date created: 25 July 1996 +# Whom: obrien@cs.ucdavis.edu # -# $Id: Makefile,v 1.1.1.1 1995/07/01 10:07:17 asami Exp $ +# $Id$ # -DISTNAME= tin-1.22 +DISTNAME= tin1.3-unoff-BETA-961018 +PKGNAME= tin-1.3.961018 CATEGORIES+= news -MASTER_SITES= ftp://ftp.germany.eu.net/pub/news/newsreader/unix/tin/ +MASTER_SITES= ftp://ftp.akk.uni-karlsruhe.de/pub/tin/ \ + ftp://nuxi.cs.ucdavis.edu/pub/tin/ -ALL_TARGET= freebsd +MAINTAINER= ache@FreeBSD.org + +EXTRACT_SUFX= .tgz +WRKSRC= ${WRKDIR}/${DISTNAME:S/tin1.3-unoff-BETA-//} +GNU_CONFIGURE= yes +CONFIGURE_ENV+= cf_cv_corefile=yes +CONFIGURE_ARGS+= --with-nntp-default-server=news \ + --with-spooldir=/var/news \ + --with-libdir=${PREFIX}/lib/news \ + --with-pgp=/usr/local/bin/pgp \ + --with-ispell=/usr/local/bin/ispell \ + --with-metamail=/usr/local/bin/metamail +MAKEFILE= makefile +ALL_TARGET= build + +.if defined(NNTP_ONLY) +CONFIGURE_ARGS+= --enable-nntp-only +.endif + + +post-configure: + echo '#define NNTP_SERVER_FILE "${PREFIX}/etc/nntpserver"' >>${WRKSRC}/include/autoconf.h + echo '#define SMTP_SERVER_FILE "${PREFIX}/etc/smtpserver"' >>${WRKSRC}/include/autoconf.h post-install: +.if !defined(NOMANCOMPRESS) gzip -9nf ${PREFIX}/man/man1/tin.1 +.endif .include <bsd.port.mk> |