diff options
author | pawel <pawel@FreeBSD.org> | 2013-01-05 21:49:36 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2013-01-05 21:49:36 +0800 |
commit | b185f6be3370c0363cc8475ce75328a8ca9ce9c3 (patch) | |
tree | afc783b5421fb2b7fd98080878b4ae9e9ed42f2d | |
parent | df0489eb03a5f61aefd62512e94ccb769ffb2eeb (diff) | |
download | freebsd-ports-gnome-b185f6be3370c0363cc8475ce75328a8ca9ce9c3.tar.gz freebsd-ports-gnome-b185f6be3370c0363cc8475ce75328a8ca9ce9c3.tar.zst freebsd-ports-gnome-b185f6be3370c0363cc8475ce75328a8ca9ce9c3.zip |
Build and link with base ncurses otherwise program has UI display problems.
-rw-r--r-- | polish/ekg/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/polish/ekg/Makefile b/polish/ekg/Makefile index 9c9335894889..463df5aeed45 100644 --- a/polish/ekg/Makefile +++ b/polish/ekg/Makefile @@ -3,6 +3,7 @@ PORTNAME= ekg DISTVERSION= 1.8rc2 +PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= polish net-im MASTER_SITES= http://ekg.chmurka.net/ @@ -16,7 +17,6 @@ LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo \ USE_GMAKE= yes GNU_CONFIGURE= yes USE_PKGCONFIG= build -USE_NCURSES= yes USE_GNOME= gnomehack USE_LDCONFIG= yes @@ -24,8 +24,8 @@ CONFIGURE_ARGS= --without-libungif \ --without-libjpeg \ --disable-ui-gtk -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo ${PTHREAD_LIBS} +CFLAGS+= -I/usr/include -I${LOCALBASE}/include +LDFLAGS+= -L/usr/lib -lncurses -L${LOCALBASE}/lib -lexecinfo ${PTHREAD_LIBS} MAN1= ekg.1 MANLANG= "" pl |