1995-07-01 10:07:18 +00:00
|
|
|
# New ports collection makefile for: tin
|
1996-10-19 21:43:06 +00:00
|
|
|
# Date created: 25 July 1996
|
|
|
|
# Whom: obrien@cs.ucdavis.edu
|
1995-07-01 10:07:18 +00:00
|
|
|
#
|
1999-08-30 14:33:04 +00:00
|
|
|
# $FreeBSD$
|
1995-07-01 10:07:18 +00:00
|
|
|
#
|
|
|
|
|
2000-04-09 17:33:32 +00:00
|
|
|
PORTNAME= tin
|
2001-12-25 00:18:51 +00:00
|
|
|
PORTVERSION= 1.5.10
|
2001-05-22 18:16:59 +00:00
|
|
|
CATEGORIES+= news
|
2001-01-16 17:33:20 +00:00
|
|
|
MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/v1.5/ \
|
2000-05-23 20:50:17 +00:00
|
|
|
ftp://nuxi.ucdavis.edu/pub/tin/v1.5/ \
|
|
|
|
ftp://ftp.nuxi.com/pub/tin/v1.5/
|
1999-03-02 12:02:57 +00:00
|
|
|
|
2001-03-11 05:55:42 +00:00
|
|
|
MAINTAINER?= ache@FreeBSD.org
|
1995-07-01 10:07:18 +00:00
|
|
|
|
2001-01-16 17:33:20 +00:00
|
|
|
LIB_DEPENDS= uu.1:${PORTSDIR}/converters/uulib \
|
2001-12-25 00:18:51 +00:00
|
|
|
intl.1:${PORTSDIR}/devel/gettext \
|
|
|
|
giconv.2:${PORTSDIR}/converters/libiconv
|
1999-02-11 11:13:54 +00:00
|
|
|
|
2000-04-21 07:52:25 +00:00
|
|
|
USE_BZIP2= yes
|
2001-01-16 17:33:20 +00:00
|
|
|
USE_GMAKE= yes
|
1996-10-19 21:43:06 +00:00
|
|
|
GNU_CONFIGURE= yes
|
1998-04-05 15:07:22 +00:00
|
|
|
|
2000-04-21 07:52:25 +00:00
|
|
|
CONFIGURE_ARGS= --with-nntp-default-server=news \
|
|
|
|
--with-spooldir=/var/news \
|
|
|
|
--with-libdir=${PREFIX}/news/lib \
|
|
|
|
--with-defaults-dir=${PREFIX}/etc \
|
|
|
|
--with-editor=/usr/bin/ee \
|
2000-05-23 20:50:17 +00:00
|
|
|
--enable-nls \
|
|
|
|
--enable-curses \
|
|
|
|
--with-ncurses \
|
2001-12-25 00:18:51 +00:00
|
|
|
--disable-mime-strict-charset \
|
2000-04-21 07:52:25 +00:00
|
|
|
--enable-forgery \
|
|
|
|
--enable-break-long-lines \
|
|
|
|
--with-pgp=${PREFIX}/bin/pgp \
|
|
|
|
--with-ispell=${PREFIX}/bin/ispell \
|
|
|
|
--with-metamail=${PREFIX}/bin/metamail
|
2001-03-11 05:55:42 +00:00
|
|
|
CONFIGURE_ENV= CFLAGS='${CFLAGS} -DNNTP_SERVER_FILE="\"${PREFIX}/etc/nntpserver\""' \
|
2000-05-23 20:50:17 +00:00
|
|
|
CPPFLAGS='${CPPFLAGS} -I${LOCALBASE}/include' \
|
|
|
|
LDFLAGS='${LDFLAGS} -L${LOCALBASE}/lib'
|
2000-04-21 07:52:25 +00:00
|
|
|
ALL_TARGET= build
|
1996-11-18 11:44:27 +00:00
|
|
|
MAN1= tin.1
|
2001-11-30 23:33:50 +00:00
|
|
|
MAN5= tin.5
|
1996-10-19 21:43:06 +00:00
|
|
|
|
2001-08-12 20:40:15 +00:00
|
|
|
.if defined(WITH_TIN_NNTP_ONLY)
|
1996-10-19 21:43:06 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-nntp-only
|
|
|
|
.endif
|
|
|
|
|
1998-01-10 22:45:20 +00:00
|
|
|
post-patch:
|
|
|
|
@${MV} ${WRKSRC}/doc/tin.1 ${WRKSRC}/doc/tin.1.dist
|
|
|
|
@${SED} -e 's:/var/spool/news:/var/news:' \
|
|
|
|
-e 's:/etc/nntpserver:${PREFIX}/etc/nntpserver:' \
|
|
|
|
-e 's:/usr/lib/news:${PREFIX}/news/lib:' \
|
|
|
|
<${WRKSRC}/doc/tin.1.dist >${WRKSRC}/doc/tin.1
|
|
|
|
|
2001-03-11 05:55:42 +00:00
|
|
|
pre-configure:
|
|
|
|
${CP} ${FILESDIR}/pcre.h ${WRKSRC}/pcre
|
|
|
|
|
2001-12-25 00:18:51 +00:00
|
|
|
post-configure:
|
2001-12-25 12:21:17 +00:00
|
|
|
if nm /usr/lib/libc.a | ${GREP} -q strcasestr; then \
|
|
|
|
${ECHO} "#define HAVE_STRCASESTR 1" \
|
|
|
|
>> ${WRKSRC}/include/autoconf.h; \
|
|
|
|
fi
|
|
|
|
${ECHO} "#define HAVE_ICONV_H 1" >> ${WRKSRC}/include/autoconf.h
|
|
|
|
${ECHO} "#define HAVE_ICONV 1" >> ${WRKSRC}/include/autoconf.h
|
2001-12-25 00:18:51 +00:00
|
|
|
|
2001-08-07 16:44:01 +00:00
|
|
|
post-build:
|
2001-12-25 12:21:17 +00:00
|
|
|
cd ${WRKSRC}/po; ${GMAKE}
|
2001-08-07 16:44:01 +00:00
|
|
|
|
1999-02-11 11:13:54 +00:00
|
|
|
post-install:
|
|
|
|
cd ${WRKSRC}/doc; ${INSTALL_DATA} tin.defaults ${PREFIX}/etc/tin.defaults.dist
|
|
|
|
if [ ! -f ${PREFIX}/etc/tin.defaults ] ; then \
|
1999-03-02 12:02:57 +00:00
|
|
|
${CP} ${PREFIX}/etc/tin.defaults.dist ${PREFIX}/etc/tin.defaults; \
|
1999-02-11 11:13:54 +00:00
|
|
|
fi
|
2001-08-07 16:44:01 +00:00
|
|
|
cd ${WRKSRC}/doc; ${INSTALL_DATA} mime.types ${PREFIX}/etc/tin.mime.types.dist
|
|
|
|
if [ ! -f ${PREFIX}/etc/mime.types ] ; then \
|
|
|
|
${CP} ${PREFIX}/etc/tin.mime.types.dist ${PREFIX}/etc/mime.types; \
|
|
|
|
fi
|
1996-03-03 13:19:58 +00:00
|
|
|
|
1995-07-01 10:07:18 +00:00
|
|
|
.include <bsd.port.mk>
|