blob: a28c69852e58d99f597c8b4fb0b57e66fc35c46b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# ex:ts=8
# New ports collection makefile for: tin
# Version required: tin1.3-unoff-BETA
# Date created: 25 July 1996
# Whom: obrien@cs.ucdavis.edu
#
# $Id: Makefile,v 1.49 1997/12/02 04:24:14 asami Exp $
#
DISTNAME= tinpre-1.4-971127
PKGNAME= tinpre-1.4-971127
CATEGORIES= news
MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/tin/ \
ftp://ftp.akk.uni-karlsruhe.de/pub/tin/ \
ftp://ftp.nuxi.com/pub/tin/
EXTRACT_SUFX= .tgz
MAINTAINER= ache@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME:S/pre-1.4//}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-nntp-default-server=news \
--with-spooldir=/var/news \
--with-libdir=${PREFIX}/news/lib \
--with-mime-default-charset=US-ASCII \
--enable-forgery \
--enable-curses \
--with-ncurses \
--enable-break-long-lines \
--with-pgp=${PREFIX}/bin/pgp \
--with-ispell=${PREFIX}/bin/ispell \
--with-metamail=${PREFIX}/bin/metamail
MAKEFILE= makefile
ALL_TARGET= build
MAN1= tin.1
.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
.include <bsd.port.mk>
|