diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-06-28 18:16:02 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-06-28 18:16:02 +0000 |
commit | 118c3ae53b3c17ba2608a5683f943674e19c14a6 (patch) | |
tree | 7c9391d54822b2d34e38b2220ce6958e0b69089b /mail/pine/Makefile | |
parent | 15c9d6dad81cf547279ec2433cadee3fee476c4e (diff) | |
download | pkgsrc-118c3ae53b3c17ba2608a5683f943674e19c14a6.tar.gz |
Make changes suggested by Jeremy C. Reed in PR pkg/21889:
- move parts of DESCR to MESSAGE
- USE_PKGINSTALL
- add ncurses-buildlink
- on linux, link with -lncurses rather than -lcurses
While there, shuffle some definitions around to match overall order.
Diffstat (limited to 'mail/pine/Makefile')
-rw-r--r-- | mail/pine/Makefile | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/mail/pine/Makefile b/mail/pine/Makefile index 4392d6d4be7..ea0cd73854a 100644 --- a/mail/pine/Makefile +++ b/mail/pine/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.69 2003/06/02 01:18:39 jschauma Exp $ +# $NetBSD: Makefile,v 1.70 2003/06/28 18:16:03 jschauma Exp $ DISTNAME= pine4.53 PKGNAME= pine-4.53 @@ -15,10 +15,26 @@ COMMENT= Program for Internet News and E-mail LICENSE= pine-license BUILD_DEFS+= PINE_USE_LDAP +USE_BUILDLINK2= YES +USE_PKGINSTALL= YES + +CONF_FILES= ${PREFIX}/share/examples/pine/pine.conf ${PKG_SYSCONFDIR}/pine.conf .include "../../mk/bsd.prefs.mk" -USE_BUILDLINK2= YES +.if ${OPSYS} == "SunOS" +BUILDNAME= so5 +BUILDFILE= sol +.elif ${OPSYS} == "Linux" +BUILDNAME= lrh +BUILDFILE= lnx +.elif ${OPSYS} == "Darwin" +BUILDNAME= osx +BUILDFILE= osx +.else +BUILDNAME= neb +BUILDFILE= neb +.endif .if defined(PINE_USE_LDAP) && (${PINE_USE_LDAP} == "YES") . include "../../databases/openldap/buildlink2.mk" @@ -34,7 +50,7 @@ pre-patch: do-configure: ${CP} -f ${WRKSRC}/pine/osdep/os-${BUILDFILE}.h ${WRKSRC}/pine/osdep/os-${BUILDFILE}.h.orig ${SED} \ - -e 's@/usr/local/lib/@${PREFIX}/etc/@' \ + -e 's@/usr/local/lib/@${PKG_SYSCONFDIR}/etc/@' \ -e 's@DEFAULT_DEBUG.*2@DEFAULT_DEBUG 0@' \ <${WRKSRC}/pine/osdep/os-${BUILDFILE}.h.orig >${WRKSRC}/pine/osdep/os-${BUILDFILE}.h @${RM} -rf ${WRKSRC}/pico @@ -62,7 +78,6 @@ do-install: -e 's|^\(sort-key\)=.*$$|\1=Arrival/Reverse|g' \ >${PREFIX}/share/examples/pine/pine.conf ${INSTALL_DATA} ${FILESDIR}/pine.conf.fixed ${PREFIX}/share/examples/pine/ - @[ -f ${PREFIX}/etc/pine.conf ] || ${CP} ${PREFIX}/share/examples/pine/pine.conf ${PREFIX}/etc/ ${INSTALL_DATA_DIR} ${PREFIX}/share/pine ${INSTALL_DATA_DIR} ${PREFIX}/share/pine/contrib ${INSTALL_DATA_DIR} ${PREFIX}/share/pine/contrib/utils @@ -72,22 +87,9 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/contrib/utils/* ${PREFIX}/share/pine/contrib/utils ${CHMOD} +x ${PREFIX}/share/pine/contrib/utils/*.sh +.include "../../devel/ncurses/buildlink2.mk" .include "../../editors/pico/buildlink2.mk" .include "../../mail/imap-uw/buildlink2.mk" .include "../../security/openssl/buildlink2.mk" .include "../../mk/bsd.pkg.mk" - -.if ${OPSYS} == "SunOS" -BUILDNAME= so5 -BUILDFILE= sol -.elif ${OPSYS} == "Linux" -BUILDNAME= lrh -BUILDFILE= lnx -.elif ${OPSYS} == "Darwin" -BUILDNAME= osx -BUILDFILE= osx -.else -BUILDNAME= neb -BUILDFILE= neb -.endif |