diff options
author | marino <marino@FreeBSD.org> | 2016-02-06 00:48:27 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-02-06 00:48:27 +0800 |
commit | 1ae59470f8aafc5085c9c0d5e27d44843a5cf3c2 (patch) | |
tree | bfbff9983f17e261af72a8ebad258f47dea5e139 /japanese | |
parent | 88e45225c58bb5dd76282e3f5b2e7a21e7696786 (diff) | |
download | freebsd-ports-gnome-1ae59470f8aafc5085c9c0d5e27d44843a5cf3c2.tar.gz freebsd-ports-gnome-1ae59470f8aafc5085c9c0d5e27d44843a5cf3c2.tar.zst freebsd-ports-gnome-1ae59470f8aafc5085c9c0d5e27d44843a5cf3c2.zip |
japanese/ng: USES+= ncurses, link with libncurses (not termcap)
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/ng/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/japanese/ng/Makefile b/japanese/ng/Makefile index ea47ee8ccdf9..3c31b492ec91 100644 --- a/japanese/ng/Makefile +++ b/japanese/ng/Makefile @@ -13,12 +13,13 @@ PATCHFILES= ng-1.4.4-replace_bug.patch MAINTAINER?= ports@FreeBSD.org COMMENT?= Light Emacs-clone with Japanese support +USES= ncurses MAKEFILE= sys/sysv/Makefile MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LIBS="${LDFLAGS}" ALL_TARGET= ng CFLAGS+= -Wno-error=return-type -LDFLAGS+= -ltermcap +LDFLAGS+= -lncurses DOCSDIR= ${PREFIX}/share/doc/ja/${PORTNAME} |