diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-04-11 08:34:17 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-04-11 08:34:17 +0000 |
commit | 8d27ddb9bd993385ce5d7a9b17e2fe231ec8c69f (patch) | |
tree | 82565381028ebd8b5a674bafdecce3a45c5c2e6d /mail/mutt14 | |
parent | 0a59b351f616abe849539bc2afbc8eba4abe8004 (diff) | |
download | ports-8d27ddb9bd993385ce5d7a9b17e2fe231ec8c69f.tar.gz ports-8d27ddb9bd993385ce5d7a9b17e2fe231ec8c69f.zip |
Add a new macro to deal with conflict between ncurses from base and ncurses from ports.
If a ports is linked against ncurses from base or from the ports, it should then add:
USE_NCURSES=yes
it is also possible to specify the hard dependency on the ports ncurses or one the base one adding the following macros:
WITH_NCURSES_PORT=yes or WITH_NCURSES_BASE=yes
PR: ports/155269
Submitted by: me
Reviwed by: pav@
Approved by: portmgr (pav@)
Exp-run by: portmgr (pav@)
Notes
Notes:
svn path=/head/; revision=272515
Diffstat (limited to 'mail/mutt14')
-rw-r--r-- | mail/mutt14/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/mutt14/Makefile b/mail/mutt14/Makefile index d3c5fd63be4d..0fd835f19459 100644 --- a/mail/mutt14/Makefile +++ b/mail/mutt14/Makefile @@ -52,6 +52,8 @@ BUILD_DEPENDS= ispell:${PORTSDIR}/textproc/ispell RUN_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell \ urlview:${PORTSDIR}/textproc/urlview USE_GMAKE= yes +USE_NCURSES= yes + .endif .if defined (MUTT_LITE) PKGNAMESUFFIX= -lite @@ -75,7 +77,7 @@ USE_ICONV= yes .if defined(WITH_SLANG) LIB_DEPENDS+= slang.2:${PORTSDIR}/devel/libslang2 .elif defined(WITH_NCURSES) -LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses +WITH_NCURSES_PORT= yes .endif .if !defined (MUTT_LITE) .if defined(WITH_MUTT_CYRUS_SASL) @@ -126,8 +128,8 @@ CONFIGURE_ARGS+= --with-libiconv-prefix=${PREFIX} .if defined(WITH_SLANG) CONFIGURE_ARGS+= --with-slang=${PREFIX} .elif defined(WITH_NCURSES) -CONFIGURE_ARGS+= --with-curses=${PREFIX} -CFLAGS+= -I${PREFIX}/include/ncurses -I${PREFIX}/include +CONFIGURE_ARGS+= --with-curses=${NCURSESBASE} +CFLAGS+= -I${NCURSESINC} .endif .if !defined(WITHOUT_GSSAPI) .if exists(${LOCALBASE}/bin/gss-client) |