blob: fb578328c7ba9b5681b8c51c6bcac3dec5a4200e (
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
|
# $NetBSD: Makefile,v 1.22 2000/08/24 00:57:32 wiz Exp $
#
DISTNAME= qpopper2.53
PKGNAME= qpopper-2.53
CATEGORIES= mail
MASTER_SITES= ftp://ftp.qualcomm.com/eudora/servers/unix/popper/
EXTRACT_SUFX= .tar.Z
MAINTAINER= mellon@fugue.com
HOMEPAGE= http://eudora.qualcomm.com/freeware/qpop.html
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --libexecdir=${PREFIX}/libexec \
--sysconfdir=${PREFIX}/etc --enable-apop \
--with-apop=/etc/apop.auth --with-apopuid=root
.include "../../mk/bsd.prefs.mk"
.if defined(USE_KERBEROS4)
CONFIGURE_ARGS+=--enable-kerberos
RESTRICTED= uses Kerberos encryption code
.endif
BUILD_DEFS+= QPOPPER_SERVERMODE USE_INET6
.include "../../mk/bsd.prefs.mk"
.if defined(QPOPPER_SERVERMODE)
CONFIGURE_ARGS+= --enable-servermode
.endif
.if defined(USE_INET6) && ${USE_INET6} == YES
CONFIGURE_ENV+= O_DEFS="${O_DEFS}" CFLAGS="-DINET6"
.endif
# popper makefile doesn't have an install target...
do-install:
(cd ${WRKSRC}; \
${INSTALL_PROGRAM} popper ${PREFIX}/libexec/qpopper; \
${INSTALL} -o root -c -g ${BINGRP} -m 4755 popauth \
${PREFIX}/bin/qpopauth; \
${INSTALL_MAN} popper.8 ${PREFIX}/man/man8/qpopper.8; \
${INSTALL_MAN} popauth.8 ${PREFIX}/man/man8/qpopauth.8 ; \
${INSTALL_MAN} License ${PREFIX}/share/doc/qpopper.License \
)
.include "../../mk/bsd.pkg.mk"
|