From 377cd4c64b700d56f110bad73b35728c5c385823 Mon Sep 17 00:00:00 2001 From: Mario Sergio Fujikawa Ferreira Date: Sun, 6 May 2001 03:34:23 +0000 Subject: o also, fix the gdbm issue, qpopper 4.0.1 breaks with installed gdbm port (--without-gdbm) o USE_AUTOCONF due to files/patch-configure.in rev 1.1 o update ipv6 patch to version 20010504 o move all options to WITH_* options, let the older options work for a while o advertise all WITH_* options o add WITH_POPPASSD support (Hajimu Umemoto contribution) PR: 27093 Submitted by: Hajimu Umemoto , K Karthik --- mail/qpopper/Makefile | 56 +++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 50 insertions(+), 6 deletions(-) (limited to 'mail/qpopper/Makefile') diff --git a/mail/qpopper/Makefile b/mail/qpopper/Makefile index ab1df714eb98..56b37a7fb2d1 100644 --- a/mail/qpopper/Makefile +++ b/mail/qpopper/Makefile @@ -16,34 +16,68 @@ DISTNAME= ${PORTNAME}${PORTVERSION} .if ${OSVERSION} >= 400014 PATCH_SITES= http://www.imasy.or.jp/~ume/ipv6/ -PATCHFILES= qpopper4.0.1-ipv6-20010425.diff.gz +PATCHFILES= qpopper4.0.1-ipv6-20010504.diff.gz PATCH_DIST_STRIP= -p1 .endif MAINTAINER= lioux@FreeBSD.org +USE_AUTOCONF= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-lmd -lutil" \ OS_DEFS="-DSETPROCTITLE ${OS_DEFS}" CONFIGURE_ARGS= --enable-apop=${PREFIX}/etc/qpopper/pop.auth \ --enable-nonauth-file=/etc/ftpusers \ - --with-apopuid=pop \ + --with-apopuid=pop --without-gdbm \ --enable-keep-temp-drop +PLIST_SUB= EPOPPASSD=${EPOPPASSD} + MAN8= qpopauth.8 qpopper.8 -# If APOP_ONLY variable present in the environment, qpopper builds -# with APOP authentification only. +pre-fetch: .if defined(APOP_ONLY) + @${ECHO_MSG} "==> The APOP_ONLY option is deprecated, please use" + @${ECHO_MSG} " WITH_APOP_ONLY instead." + @${ECHO_MSG} "==> The APOP_ONLY option will work in this version but" + @${ECHO_MSG} " not on future ones." +.endif +.if defined(FULL_POPD_DEBUG) + @${ECHO_MSG} "==> The FULL_POPD_DEBUG option is deprecated, please" + @${ECHO_MSG} " use WITH_FULL_POPD_DEBUG instead." + @${ECHO_MSG} "==> The FULL_POPD_DEBUG option will work in this version but" + @${ECHO_MSG} " not on future ones." +.endif + @${ECHO_MSG} "" + @${ECHO_MSG} "You may use the following build options:" + @${ECHO_MSG} "" + @${ECHO_MSG} "WITH_APOP_ONLY=yes builds with APOP authentication only" + @${ECHO_MSG} "WITH_FULL_POPD_DEBUG=yes buils with more verbose debugging" + @${ECHO_MSG} "WITH_POPPASSD=yes builds the poppassd daemon" + +# If WITH_APOP_ONLY variable present in the environment, qpopper builds +# with APOP authentication only. +.if defined(APOP_ONLY) || defined(WITH_APOP_ONLY) OS_DEFS+= -DAPOP_ONLY .endif -# If FULL_POPD_DEBUG variable present in the environment, qpopper builds +# If WITH_FULL_POPD_DEBUG variable present in the environment, qpopper builds # with more verbose debugging. See also -d option to qpopper -.if defined(FULL_POPD_DEBUG) +.if defined(FULL_POPD_DEBUG) || defined(WITH_FULL_POPD_DEBUG) CONFIGURE_ARGS+= --enable-debugging .endif +# If WITH_POPPASSD variable present in the environment, qpopper builds +# with poppassd support. +.if defined(WITH_POPPASSD) +CONFIGURE_ARGS+= --enable-poppassd +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-password::Makefile.in \ + ${FILESDIR}/extra-patch-password::poppassd.c +EPOPPASSD= "" +.else +EPOPPASSD= "@comment " +.endif + .if exists(/usr/lib/libssl.a) && exists(/usr/lib/libcrypto.a) CONFIGURE_ARGS+= --with-openssl=/usr .elif exists(${LOCALBASE}/lib/libssl.a) && exists(${LOCALBASE}/lib/libcrypto.a) @@ -59,6 +93,13 @@ RSAGLUE+= -lRSAglue post-patch: @${RM} -f ${WRKSRC}/popper/md5.h @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/man/* +.if defined(WITH_POPPASSD) + @${PERL} -pi -ne "s|/usr/bin/smbpasswd|${PREFIX}/bin/smbpasswd|" \ + ${WRKSRC}/password/poppassd.c +.endif + +pre-configure: + @(cd ${WRKSRC}; ${CHMOD} u+w configure*) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/popper/popauth ${PREFIX}/bin/qpopauth @@ -66,6 +107,9 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/man/popauth.8 ${MANPREFIX}/man/man8/qpopauth.8 ${INSTALL_MAN} ${WRKSRC}/man/popper.8 ${MANPREFIX}/man/man8/qpopper.8 ${LN} -sf ${PREFIX}/bin/qpopauth ${PREFIX}/bin/qapopauth +.if defined(WITH_POPPASSD) + ${INSTALL_PROGRAM} ${WRKSRC}/password/poppassd ${PREFIX}/libexec/qpoppassd +.endif post-install: @${SED} -e "s:/usr/local:${PREFIX}:g" ${PKGMESSAGE} -- cgit v1.2.3