diff options
author | jlam <jlam> | 2002-09-09 19:25:26 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-09-09 19:25:26 +0000 |
commit | 8f037e509ea8d48231160aed3b740cdb235ef917 (patch) | |
tree | a482bee25d2ee486ebc21b8c1d962d6f3e91fc7b /mail/qpopper/Makefile | |
parent | 55a39ce0b0d642df66cb4c55c0b46d3eb4ae7d5c (diff) | |
download | pkgsrc-8f037e509ea8d48231160aed3b740cdb235ef917.tar.gz |
* buildlink1 --> buildlink2.
* Pass the LDFLAGS through to the build process so that the final binaries
are built with the appropriate -Wl,-R flags. This should fix pkg/18054.
* Use ROOT_{USER,GROUP} instead of hardcoding "root" and "wheel" when
installing poppassd.
Diffstat (limited to 'mail/qpopper/Makefile')
-rw-r--r-- | mail/qpopper/Makefile | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/mail/qpopper/Makefile b/mail/qpopper/Makefile index 9f38a084e78..9aa87cc0080 100644 --- a/mail/qpopper/Makefile +++ b/mail/qpopper/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2002/05/04 05:59:04 taca Exp $ +# $NetBSD: Makefile,v 1.34 2002/09/09 19:25:30 jlam Exp $ # DISTNAME= qpopper${VERSION} @@ -15,22 +15,25 @@ MAINTAINER= mellon@fugue.com HOMEPAGE= http://www.eudora.com/qpopper/ COMMENT= Qualcomm's POP server for Eudora -USE_BUILDLINK_ONLY= # defined - .include "Makefile.common" +USE_BUILDLINK2= # defined +CONFIGURE_ARGS+= --with-openssl=${SSLBASE} + PKG_USERS?= ${QPOPPER_USER} pre-build: - ${SED} 's"/usr/local/lib"${LOCALBASE}/libexec"' \ - ${WRKSRC}/man/popper.8 > ${WRKSRC}/man/popper.8.$$ && \ + ${SED} -e "s|/usr/local/lib|${PREFIX}/libexec|g" \ + ${WRKSRC}/man/popper.8 > ${WRKSRC}/man/popper.8.$$ && \ ${MV} -f ${WRKSRC}/man/popper.8.$$ ${WRKSRC}/man/popper.8 post-install: - ${INSTALL_DATA} ${WRKSRC}/License.txt ${LOCALBASE}/share/doc/qpopper.License - ${INSTALL_DATA} ${WRKSRC}/samples/qpopper.config \ - ${LOCALBASE}/share/examples + ${INSTALL_DATA} ${WRKSRC}/License.txt \ + ${PREFIX}/share/doc/qpopper.License + ${INSTALL_DATA} ${WRKSRC}/samples/qpopper.config \ + ${PREFIX}/share/examples + +.include "../../security/openssl/buildlink2.mk" -.include "../../security/openssl/buildlink.mk" .include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |