Thu Feb 12 18:43:21 2009 UTC ()
Bump PKGREVISION because the path to m4 was changed on Darwin<9.

The tools framework changed m4 on Darwin<9 from the native one to the
pkgsrc version last month.  bison needs a PKGREVISION bump because it
embeds the path to m4 in its binary.


(minskim)
diff -r1.68 -r1.69 pkgsrc/devel/bison/Makefile

cvs diff -r1.68 -r1.69 pkgsrc/devel/bison/Makefile (switch to unified diff)

--- pkgsrc/devel/bison/Makefile 2008/12/12 09:08:05 1.68
+++ pkgsrc/devel/bison/Makefile 2009/02/12 18:43:21 1.69
@@ -1,41 +1,42 @@ @@ -1,41 +1,42 @@
1# $NetBSD: Makefile,v 1.68 2008/12/12 09:08:05 wiz Exp $ 1# $NetBSD: Makefile,v 1.69 2009/02/12 18:43:21 minskim Exp $
2 2
3DISTNAME= bison-2.4.1 3DISTNAME= bison-2.4.1
 4PKGREVISION= 1
4CATEGORIES= devel 5CATEGORIES= devel
5MASTER_SITES= ${MASTER_SITE_GNU:=bison/} 6MASTER_SITES= ${MASTER_SITE_GNU:=bison/}
6EXTRACT_SUFX= .tar.bz2 7EXTRACT_SUFX= .tar.bz2
7 8
8MAINTAINER= cjep@NetBSD.org 9MAINTAINER= cjep@NetBSD.org
9HOMEPAGE= http://www.gnu.org/software/bison/bison.html 10HOMEPAGE= http://www.gnu.org/software/bison/bison.html
10COMMENT= GNU yacc(1) replacement 11COMMENT= GNU yacc(1) replacement
11 12
12PKG_INSTALLATION_TYPES= overwrite pkgviews 13PKG_INSTALLATION_TYPES= overwrite pkgviews
13PKG_DESTDIR_SUPPORT= user-destdir 14PKG_DESTDIR_SUPPORT= user-destdir
14 15
15GNU_CONFIGURE= YES 16GNU_CONFIGURE= YES
16USE_LANGUAGES= c c++ 17USE_LANGUAGES= c c++
17USE_PKGLOCALEDIR= yes 18USE_PKGLOCALEDIR= yes
18USE_TOOLS+= grep gm4:run msgfmt 19USE_TOOLS+= grep gm4:run msgfmt
19INFO_FILES= # PLIST 20INFO_FILES= # PLIST
20 21
21CONFIGURE_ENV+= gt_cv_func_gnugettext1_libintl=yes 22CONFIGURE_ENV+= gt_cv_func_gnugettext1_libintl=yes
22 23
23TEST_TARGET= check 24TEST_TARGET= check
24 25
25# Avoid rebuilding manpage 26# Avoid rebuilding manpage
26pre-build: 27pre-build:
27 ${TOUCH} ${WRKSRC}/doc/bison.1 28 ${TOUCH} ${WRKSRC}/doc/bison.1
28 29
29# "bison" wants a recent version of "gettext" which at least NetBSD doesn't 30# "bison" wants a recent version of "gettext" which at least NetBSD doesn't
30# provide. Figure out whether it will install the locale files or not. 31# provide. Figure out whether it will install the locale files or not.
31PLIST_SRC= ${WRKDIR}/PLIST 32PLIST_SRC= ${WRKDIR}/PLIST
32 33
33post-configure: 34post-configure:
34 if grep -q '^POSUB = po$$' ${WRKSRC}/Makefile; then \ 35 if grep -q '^POSUB = po$$' ${WRKSRC}/Makefile; then \
35 ${CP} ${PKGDIR}/PLIST ${PLIST_SRC}; \ 36 ${CP} ${PKGDIR}/PLIST ${PLIST_SRC}; \
36 else \ 37 else \
37 ${GREP} -v '^share/locale/' ${PKGDIR}/PLIST >${PLIST_SRC}; \ 38 ${GREP} -v '^share/locale/' ${PKGDIR}/PLIST >${PLIST_SRC}; \
38 fi 39 fi
39 40
40.include "../../devel/gettext-lib/buildlink3.mk" 41.include "../../devel/gettext-lib/buildlink3.mk"
41.include "../../mk/bsd.pkg.mk" 42.include "../../mk/bsd.pkg.mk"