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
|
# Created by: Tai-hwa Liang <avatar@www.mmlab.cse.yzu.edu.tw>
# $FreeBSD$
PORTNAME= pine
PORTVERSION= 4.64
CATEGORIES= chinese mail news
MASTER_SITES= ftp://ftp.cac.washington.edu/pine/
DISTNAME= ${PORTNAME}${PORTVERSION}
PATCH_SITES= http://people.FreeBSD.org/~avatar/ports/patches/pine/ \
ftp://www.mmlab.cse.yzu.edu.tw/pub/collect/patch/pine/
PATCHFILES= ${PORTNAME}${PORTVERSION}.patch.gz
MAINTAINER= avatar@mmlab.cse.yzu.edu.tw
COMMENT= Program for Internet News & Email with Chinese(BIG-5) support
USE_BZIP2= yes
.if defined(WITH_SSL)
USE_OPENSSL= yes
EXTRA_OPTS= SSLDIR=${OPENSSLBASE}
.else
EXTRA_OPTS= NOSSL SSLTYPE=none
.endif
NO_LATEST_LINK= yes
MAN1= pine.1 pico.1 pilot.1
NO_STAGE= yes
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
pre-fetch:
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
${SH} pkg-install
.endif
post-patch:
for i in ${WRKSRC}/doc/pine.1 \
${WRKSRC}/pine/filter.c \
${WRKSRC}/pine/init.c \
${WRKSRC}/pine/pine.hlp \
${WRKSRC}/pine/mailcap.c \
${WRKSRC}/pine/osdep/os-bsf.h ; do \
${MV} $$i $$i.sed ; \
${SED} -e "s:@@PREFIX@@:${PREFIX}:g" \
$$i.sed >$$i ; \
${RM} $$i.sed ; \
done
for i in ${WRKSRC}/doc/tech-notes.txt \
${WRKSRC}/doc/tech-notes/*.html ; do \
${MV} $$i $$i.sed ; \
${SED} -e "s:/usr/local/lib/:${PREFIX}/etc/:g" \
$$i.sed >$$i ; \
${RM} $$i.sed ; \
done
do-build:
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ./build bsf ${EXTRA_OPTS})
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/pico ${PREFIX}/bin/pico
${INSTALL_PROGRAM} ${WRKSRC}/bin/pilot ${PREFIX}/bin/pilot
${INSTALL_PROGRAM} ${WRKSRC}/bin/pine ${PREFIX}/bin/pine
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
< ${FILESDIR}/pgpdecode > ${WRKSRC}/bin/pgpdecode
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
< ${FILESDIR}/pgpencrypt > ${WRKSRC}/bin/pgpencrypt
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
< ${FILESDIR}/pgpsign > ${WRKSRC}/bin/pgpsign
${INSTALL_SCRIPT} ${WRKSRC}/bin/pgpencrypt ${PREFIX}/bin/pgpencrypt
${INSTALL_SCRIPT} ${WRKSRC}/bin/pgpdecode ${PREFIX}/bin/pgpdecode
${INSTALL_SCRIPT} ${WRKSRC}/bin/pgpsign ${PREFIX}/bin/pgpsign
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
< ${FILESDIR}/dot.pinerc.sample \
> ${WRKSRC}/dot.pinerc.sample
${INSTALL_DATA} ${WRKSRC}/dot.pinerc.sample \
${PREFIX}/etc/dot.pinerc.sample
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
< ${FILESDIR}/dot.pinerc.pgp.sample \
> ${WRKSRC}/dot.pinerc.pgp.sample
${INSTALL_DATA} ${WRKSRC}/dot.pinerc.pgp.sample \
${PREFIX}/etc/dot.pinerc.pgp.sample
${INSTALL_MAN} ${WRKSRC}/doc/pico.1 ${PREFIX}/man/man1/pico.1
${INSTALL_MAN} ${WRKSRC}/doc/pilot.1 ${PREFIX}/man/man1/pilot.1
${INSTALL_MAN} ${WRKSRC}/doc/pine.1 ${PREFIX}/man/man1/pine.1
.if ${PORT_OPTIONS:MDOCS}
${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} \
${PREFIX}/share/doc/pine \
${PREFIX}/share/doc/pine/tech-notes
${INSTALL_DATA} ${WRKSRC}/doc/brochure.txt ${PREFIX}/share/doc/pine
${INSTALL_DATA} ${WRKSRC}/doc/tech-notes.txt ${PREFIX}/share/doc/pine
${INSTALL_DATA} ${WRKSRC}/doc/tech-notes/*.html \
${PREFIX}/share/doc/pine/tech-notes/
.endif
post-install:
${PREFIX}/bin/pine -P ${PREFIX}/etc/pine.conf -conf >${WRKSRC}/pine.conf
${INSTALL_DATA} ${WRKSRC}/pine.conf ${PREFIX}/etc/pine.conf
@${ECHO} " - - - - - - - - - - - - - - - - - - - - - - - - -"
@${ECHO} " If Pine exits with \"Received abort signal\" try"
@${ECHO} " disabling the \"quell-folder-internal-msg\" feature"
@${ECHO} " - - - - - - - - - - - - - - - - - - - - - - - - -"
.include <bsd.port.mk>
|