diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-02-04 18:02:08 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-02-04 18:02:08 +0000 |
commit | 200b97ea0d58557d30f6f573fb2601784acac191 (patch) | |
tree | 09fe3025c61860d4714ae2cea600d52ccc3e8b4b /devel/bison | |
parent | - Update to version 040202 (diff) |
Switch to USE_GETTEXT.
PR: 62351
Submitted by: TAKAHASHI Kaoru <kaoru@kaisei.org>
Notes
Notes:
svn path=/head/; revision=99990
Diffstat (limited to 'devel/bison')
-rw-r--r-- | devel/bison/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/bison/Makefile b/devel/bison/Makefile index 337d7fc5bc21..29180a35c6c1 100644 --- a/devel/bison/Makefile +++ b/devel/bison/Makefile @@ -15,18 +15,20 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org 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]+ -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 .if !defined(WITHOUT_NLS) PLIST_SUB= NLS="" .else PLIST_SUB= NLS="@comment " .endif -RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 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) |