diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2000-11-17 14:51:05 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2000-11-17 14:51:05 +0000 |
commit | cc2cb0427eae798219f02937450157427c09dc1b (patch) | |
tree | 7f714ba61ff89772ecf03bd8ae56c96ef49719e4 /misc/pinfo/Makefile | |
parent | d749c9a48f67259a09fb1910b63833ff71d856f1 (diff) | |
download | ports-cc2cb0427eae798219f02937450157427c09dc1b.tar.gz ports-cc2cb0427eae798219f02937450157427c09dc1b.zip |
Notes
Diffstat (limited to 'misc/pinfo/Makefile')
-rw-r--r-- | misc/pinfo/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/misc/pinfo/Makefile b/misc/pinfo/Makefile index 6a7a7ec05203..0d19ad1568d0 100644 --- a/misc/pinfo/Makefile +++ b/misc/pinfo/Makefile @@ -15,17 +15,21 @@ MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-included-gettext --with-readline -CONFIGURE_ENV= LIBS="-lgnuregex -L${PREFIX}/lib -lintl" \ - CFLAGS="${CFLAGS} -I${PREFIX}/include" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib -lgnuregex" +CONFIGURE_ARGS= --with-readline MAN1= pinfo.1 +pre-patch: + @${PERL} -pi -e \ + 's|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + .include <bsd.port.pre.mk> .if ${OSVERSION} < 400010 LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses -CONFIGURE_ARGS+= --with-ncurses=${PREFIX} +CONFIGURE_ARGS+= --with-ncurses=${LOCALBASE} .endif .include <bsd.port.post.mk> |