mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: tin
|
|
# Date created: 25 July 1996
|
|
# Whom: obrien@cs.ucdavis.edu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tin
|
|
PORTVERSION= 1.5.6
|
|
CATEGORIES= news
|
|
MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/v1.5/ \
|
|
ftp://nuxi.ucdavis.edu/pub/tin/v1.5/ \
|
|
ftp://ftp.nuxi.com/pub/tin/v1.5/
|
|
|
|
MAINTAINER= ache@FreeBSD.org
|
|
|
|
LIB_DEPENDS= uu.1:${PORTSDIR}/converters/uulib \
|
|
intl.1:${PORTSDIR}/devel/gettext
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
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 \
|
|
--enable-nls \
|
|
--enable-curses \
|
|
--with-ncurses \
|
|
--with-mime-default-charset=ISO-8859-1 \
|
|
--enable-forgery \
|
|
--enable-break-long-lines \
|
|
--with-pgp=${PREFIX}/bin/pgp \
|
|
--with-ispell=${PREFIX}/bin/ispell \
|
|
--with-metamail=${PREFIX}/bin/metamail
|
|
CONFIGURE_ENV= CFLAGS='${CFLAGS} -DNNTP_SERVER_FILE="\"${PREFIX}/etc/nntpserver\""' \
|
|
CPPFLAGS='${CPPFLAGS} -I${LOCALBASE}/include' \
|
|
LDFLAGS='${LDFLAGS} -L${LOCALBASE}/lib'
|
|
MAKEFILE= makefile
|
|
ALL_TARGET= build
|
|
MAN1= tin.1
|
|
|
|
.if defined(NNTP_ONLY)
|
|
CONFIGURE_ARGS+= --enable-nntp-only
|
|
.endif
|
|
|
|
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
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc; ${INSTALL_DATA} tin.defaults ${PREFIX}/etc/tin.defaults.dist
|
|
if [ ! -f ${PREFIX}/etc/tin.defaults ] ; then \
|
|
${CP} ${PREFIX}/etc/tin.defaults.dist ${PREFIX}/etc/tin.defaults; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|