aboutsummaryrefslogtreecommitdiffstats
path: root/news/tin/Makefile
blob: 22149646ac4af42d608e643ebe0782a035329878 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# New ports collection makefile for:    tin
# Date created:     25 July 1996
# Whom:         obrien@cs.ucdavis.edu
#
# $FreeBSD$
#

PORTNAME=   tin
PORTVERSION=    1.8.3
PORTREVISION=   7
CATEGORIES+=    news ipv6
MASTER_SITES=   ftp://ftp.tin.org/pub/news/clients/tin/stable/ \
        ftp://ftp.sunet.se/pub/news/readers/tin/stable/ \
        ftp://sunsite.icm.edu.pl/pub/unix/news/tin/stable/ \
        ftp://ftp.ka.nu/pub/news/clients/tin/stable/ \
        ftp://ftp.tau.ac.il/pub/unix/news/tin/stable/ \
        ftp://ftp.cuhk.edu.hk/pub/packages/news/tin/stable/ \
        ftp://ftp.funet.fi/pub/unix/news/tin-unoff/ \
        ftp://ftp.lip6.fr/pub/unix/news/readers/tin-unoff/ \
        ftp://ftp.karlsruhe.org/pub/news/clients/tin/stable/ \
        ftp://ftp.akk.uni-karlsruhe.de/pub/news/clients/tin/stable/ \
        ftp://ftp.cs.tu-berlin.de/pub/net/news/tin/stable/ \
        ftp://ftp.informatik.uni-hamburg.de/pub/soft/news/tin/stable/

MAINTAINER?=    johans@FreeBSD.org
COMMENT=    Easy-to-use threaded newsreader with NOV/NNTP support

LIB_DEPENDS=    uu.3:${PORTSDIR}/converters/uulib \
        pcre.0:${PORTSDIR}/devel/pcre
RUN_DEPENDS=    ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support

USE_BZIP2=  yes
USE_GETTEXT=    yes
USE_GMAKE=  yes
USE_ICONV=  yes
GNU_CONFIGURE=  yes
TIN_EDITOR?=    /usr/bin/ee

OPTIONS=    GNUPG   "Enable message signing via GnuPG (no PGP6)" On \
        PGP6    "Enable message signing via PGP6 (no GnuPG)" Off \
        ISPELL  "Enable spell checking via ispell" On \
        METAMAIL  "Enable MIME support via metamail" On \
        CANLOCK   "Enable Cancel-Lock key support via libcanlock" Off \
        NNTP_ONLY "Only read news via NNTP (no spool dir support)" Off

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 602107 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700033)
TIN_SCREEN?=    ncurses
.else
TIN_SCREEN?=    ncursesw
.endif

# --with-mime-default-charset=US-ASCII needed to build tin in the non-ascii
# national environment.
CONFIGURE_ARGS+=--with-nntp-default-server=news \
        --with-spooldir=/var/news \
        --with-libdir=${PREFIX}/news/lib \
        --with-defaults-dir=${PREFIX}/etc \
        --with-editor=${TIN_EDITOR} \
        --enable-nls \
        --with-pcre=yes \
        --with-screen=${TIN_SCREEN} \
        --enable-break-long-lines \
        --with-libiconv-prefix=${LOCALBASE} \
        --with-mime-default-charset=US-ASCII \
        --enable-ipv6
CONFIGURE_ENV=  CFLAGS='${CFLAGS} -DNNTP_SERVER_FILE="\"${PREFIX}/etc/nntpserver\""' \
        CPPFLAGS='${CPPFLAGS} -I${LOCALBASE}/include' \
        LDFLAGS='${LDFLAGS} -L${LOCALBASE}/lib'
ALL_TARGET= build
MAN1=       tin.1 w2r.pl.1 opt-case.pl.1 tinews.pl.1
MAN5=       tin.5 tin_mbox.5 tin_mmdf.5
MLINKS=     tin.1 rtin.1

.ifdef  WITH_NNTP_ONLY
CONFIGURE_ARGS+=    --enable-nntp-only
.endif

.ifdef  WITH_GNUPG
RUN_DEPENDS+=       gpg:${PORTSDIR}/security/gnupg
CONFIGURE_ARGS+=    --with-gpg=${PREFIX}/bin/gpg \
            --without-pgp --without-pgpk
.elifdef WITH_PGP6
RUN_DEPENDS+=       pgp:${PORTSDIR}/security/pgp6
CONFIGURE_ARGS+=    --with-pgp=${PREFIX}/bin/pgp \
            --without-pgpk --without-gpg
.else
CONFIGURE_ARGS+=    --disable-pgp-gpg
.endif

.ifdef  WITH_ISPELL
RUN_DEPENDS+=       ispell:${PORTSDIR}/textproc/ispell
CONFIGURE_ARGS+=    --with-ispell=${PREFIX}/bin/ispell
.endif

.ifdef  WITH_METAMAIL
RUN_DEPENDS+=       metamail:${PORTSDIR}/mail/metamail
CONFIGURE_ARGS+=    --with-metamail=${PREFIX}/bin/metamail
.endif

post-patch:
    ${REINPLACE_CMD} -Ee 's:5/(mmdf|mbox):5/tin_\1:g' \
        ${WRKSRC}/src/Makefile.in
    ${REINPLACE_CMD} -e 's:/var/spool/news:/var/news:g' \
        -e 's:/etc/nntpserver:${PREFIX}/etc/nntpserver:g' \
        -e 's:/usr/lib/news:${PREFIX}/news/lib:g' \
        -e 's:/etc/mime\.types:${PREFIX}/etc/mime.types:g' \
        -e 's:url_handler\.sh:tinurl_handler.sh:g' \
        ${WRKSRC}/doc/tin.1 ${WRKSRC}/doc/tin.5
    ${REINPLACE_CMD} \
        -e 's:/etc/mime\.types:${PREFIX}/etc/mime.types:g' \
        ${WRKSRC}/src/mimetypes.c
    ${REINPLACE_CMD} \
        -e 's:url_handler\.sh:tinurl_handler.sh:g' \
        ${WRKSRC}/src/Makefile.in ${WRKSRC}/include/tin.h
    ${MV}   ${WRKSRC}/tools/url_handler.sh \
        ${WRKSRC}/tools/tinurl_handler.sh

.ifdef  WITH_CANLOCK
MAKE_ARGS+= CANLIB='-L../libcanlock -lcanlock' \
        CANLOCK=-DUSE_CANLOCK
.endif

pre-build:
.ifdef  WITH_CANLOCK
    cd ${WRKSRC}/src; ${GMAKE} canlock
.endif

post-build:
    cd ${WRKSRC}/po; ${GMAKE}

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.post.mk>