diff options
author | rafan <rafan@FreeBSD.org> | 2008-05-23 10:32:05 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2008-05-23 10:32:05 +0800 |
commit | e0009b289d89aa50462591f1a4ab8c36aa67998c (patch) | |
tree | f5428f559f015221380179278ec4f768c8013ce9 /mail/mixmaster | |
parent | 971da6d709152c38da70a67a896ce74f58608d85 (diff) | |
download | freebsd-ports-gnome-e0009b289d89aa50462591f1a4ab8c36aa67998c.tar.gz freebsd-ports-gnome-e0009b289d89aa50462591f1a4ab8c36aa67998c.tar.zst freebsd-ports-gnome-e0009b289d89aa50462591f1a4ab8c36aa67998c.zip |
- As we have ncurses 5.6 in the base, make devel/ncurses optional for newer
system.
- Bump PORTREVISION
Approved by: Meyer Wolfsheim <wolf at priori.net> (maintainer)
Diffstat (limited to 'mail/mixmaster')
-rw-r--r-- | mail/mixmaster/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mail/mixmaster/Makefile b/mail/mixmaster/Makefile index ff8f65dfc9e2..6dba99af6a05 100644 --- a/mail/mixmaster/Makefile +++ b/mail/mixmaster/Makefile @@ -7,6 +7,7 @@ PORTNAME= mixmaster PORTVERSION= 2.9.1 +PORTREVISION= 1 CATEGORIES= mail security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} \ ftp://ftp.erisiandiscord.de/pub/misc/ @@ -18,8 +19,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= wolf@priori.net COMMENT= A cryptographically secure anonymous remailer -LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre \ - ncurses:${PORTSDIR}/devel/ncurses +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre USE_PERL5= yes USE_OPENSSL= yes @@ -39,6 +39,10 @@ MIXMASTER_SCRIPTS= ${WRKDIR}/mixmaster-update.pl .include <bsd.port.pre.mk> +.if ${OSVERSION} < 602107 || (${OSVERSION} > 700000 && ${OSVERSION} < 700033) +LIB_DEPENDS+= ncurses:${PORTSDIR}/devel/ncurses +.endif + post-patch: ${CP} ${FILESDIR}/Makefile.in ${WRKSRC}/Makefile @${RM} ${WRKSRC}/../conf/mix.cfg.orig |