diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-28 16:26:57 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-28 16:26:57 +0000 |
commit | 6d5018c2dac2f16c7b132c2bd28653926b51735f (patch) | |
tree | e416c6d9a64391e0666807b9abc870ac04007c07 /devel/bison175/Makefile | |
parent | f4c577e0fb4c741ea9706022b9ca7127a8398f90 (diff) | |
download | ports-6d5018c2dac2f16c7b132c2bd28653926b51735f.tar.gz ports-6d5018c2dac2f16c7b132c2bd28653926b51735f.zip |
Notes
Diffstat (limited to 'devel/bison175/Makefile')
-rw-r--r-- | devel/bison175/Makefile | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/devel/bison175/Makefile b/devel/bison175/Makefile index 29180a35c6c1..1d8b1855d0c2 100644 --- a/devel/bison175/Makefile +++ b/devel/bison175/Makefile @@ -17,28 +17,26 @@ COMMENT= A parser generator from FSF, (mostly) compatible with Yacc BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 -CONFLICTS= bison-[0-9]+ -.if !defined(WITHOUT_NLS) -PLIST_SUB= NLS="" -.else -PLIST_SUB= NLS="@comment " -.endif +CONFLICTS= bison-[0-9]+ USE_BZIP2= yes -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -.endif GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS= --disable-nls -.endif CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" \ MAKEINFO="makeinfo --no-split" MAN1= bison.1 +INFO= bison + +.if defined(WITHOUT_NLS) +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.else +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.endif .ifdef USE_BISON .error You have `USE_BISON' variable defined either in environment or in make(1) arguments. Please undefine and try again. |