blob: be1364eb26d8a31938f58c9b19ba6b8b19f75332 (
plain)
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
|
# $NetBSD: Makefile,v 1.144 2004/07/22 17:04:28 drochner Exp $
DISTNAME= fetchmail-6.2.5
PKGREVISION= 2
CATEGORIES= mail
MASTER_SITES= http://catb.org/~esr/fetchmail/ \
http://sunsite.unc.edu/pub/Linux/system/mail/pop/
MAINTAINER= frueauf@NetBSD.org
HOMEPAGE= http://catb.org/~esr/fetchmail/
COMMENT= Batch mail retrieval/forwarding utility for pop2, pop3, apop, imap
PKG_INSTALLATION_TYPES= overwrite pkgviews
BUILD_USES_MSGFMT= yes
USE_BUILDLINK3= yes
USE_PKGINSTALL= yes
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-hesiod
USE_TBL= yes
BUILD_DEFS+= USE_INET6
LDFLAGS+= ${CFLAGS}
.include "../../mk/bsd.prefs.mk"
FETCHMAIL_USE_SSL?= yes
BUILD_DEFS+= FETCHMAIL_USE_SSL
.if defined(FETCHMAIL_USE_SSL) && !empty(FETCHMAIL_USE_SSL:M[yY][eE][sS])
. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
.else
CONFIGURE_ARGS+= --without-ssl
.endif
.if defined(KERBEROS)
PKG_USE_KERBEROS= yes
CONFIGURE_ARGS+= --with-kerberos=yes
. if ${MACHINE_PLATFORM:MNetBSD-1.[0-4]*-i386} == ""
REPLACE_KERBEROS_LIBS= # defined
. endif
.else
CONFIGURE_ARGS+= --with-kerberos=no
.endif
.if defined(USE_INET6) && !empty(USE_INET6:M[yY][eE][sS])
CONFIGURE_ARGS+= --enable-inet6
.endif
DOCDIR= ${PREFIX}/share/doc/fetchmail
RCD_SCRIPTS= fetchmail
post-extract:
@${RM} -f ${WRKSRC}/intl/libintl.h
.if ${OPSYS} == "NetBSD"
@${RM} -f ${WRKSRC}/md5.h
.endif
.if defined(REPLACE_KERBEROS_LIBS)
post-configure:
cd ${WRKSRC} && \
for F in configure.in configure; do \
${SED} -e "s/-lkrb -ldes/-lkrb -ldes -lcom_err -lroken/" \
$$F > $$F.mod; \
${MV} -f $$F.mod $$F; \
done
${CHMOD} a+x ${WRKSRC}/configure
.endif
post-build:
for file in ${WRKSRC}/fetchmail.man; do \
${MV} -f $$file $$file.tbl; \
${TBL} $$file.tbl > $$file; \
done
post-install:
${INSTALL_DATA_DIR} ${DOCDIR}
cd ${WRKSRC}; for file in \
FAQ NOTES FEATURES README COPYING \
fetchmail-FAQ.html fetchmail-features.html \
design-notes.html; \
do \
${INSTALL_DATA} $$file ${DOCDIR}; \
done
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|