diff options
author | marino <marino@FreeBSD.org> | 2016-12-18 01:31:26 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-12-18 01:31:26 +0800 |
commit | e5626b64fdf7ec68e5473d1f28a492f4f491af0f (patch) | |
tree | 33fba9393ecc78afd85760eb73a70376ac047256 /lang | |
parent | ef2f7d41e93c46370cbd2de8c26a98d9e5bf3b0d (diff) | |
download | freebsd-ports-gnome-e5626b64fdf7ec68e5473d1f28a492f4f491af0f.tar.gz freebsd-ports-gnome-e5626b64fdf7ec68e5473d1f28a492f4f491af0f.tar.zst freebsd-ports-gnome-e5626b64fdf7ec68e5473d1f28a492f4f491af0f.zip |
lang/maude: document ncurses requirement
- Set to link directly against ncurses (not curses)
- Explicitly set extra patches to apply to DF as well. They were already
but it wasn't clear if that was wanted or not.
- set USES=alias to fix building on DF
Diffstat (limited to 'lang')
-rw-r--r-- | lang/maude/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lang/maude/Makefile b/lang/maude/Makefile index ec26ac0f4bd3..4707f5a0edd4 100644 --- a/lang/maude/Makefile +++ b/lang/maude/Makefile @@ -20,10 +20,10 @@ LIB_DEPENDS= libbdd.so:science/buddy \ libgmp.so:math/gmp \ libsigsegv.so:devel/libsigsegv -USES= autoreconf bison +USES= alias autoreconf bison ncurses GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CPPFLAGS+= -I${NCURSESINC} -I${LOCALBASE}/include +LDFLAGS+= -L${NCURSESLIB} -L${LOCALBASE}/lib CONFIGURE_ARGS= --datadir=${DATADIR} MAKE_JOBS_UNSAFE= yes @@ -39,7 +39,7 @@ BROKEN_aarch64= Fails to link: missing sbrk .include <bsd.port.options.mk> -.if ${OSVERSION} >= 1000000 +.if ${OPSYS} == "DragonFly" || ${OSVERSION} >= 1000000 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Mixfix-lexerAux .endif @@ -64,6 +64,8 @@ post-extract: post-patch: @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \ ${WRKSRC}/src/Mixfix/global.hh + @${REINPLACE_CMD} -e 's|-lcurses|-lncurses|g' \ + ${WRKSRC}/configure.ac post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} |