diff options
author | wiz <wiz@pkgsrc.org> | 2005-06-11 17:17:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-06-11 17:17:56 +0000 |
commit | 2138f7d7dd521494dd0e5cbb1b4f74a7f115b13b (patch) | |
tree | 825d58960edc91261e0020b6c39544b3ee4f4678 /x11/wxGTK | |
parent | b26abba03103d46b0377caf81eb029a41cbe12fe (diff) | |
download | pkgsrc-2138f7d7dd521494dd0e5cbb1b4f74a7f115b13b.tar.gz |
Fix automake m4 macro quoting. Closes PR 30501.
Bump PKGREVISION.
Diffstat (limited to 'x11/wxGTK')
-rw-r--r-- | x11/wxGTK/Makefile | 4 | ||||
-rw-r--r-- | x11/wxGTK/distinfo | 3 | ||||
-rw-r--r-- | x11/wxGTK/patches/patch-ag | 22 |
3 files changed, 26 insertions, 3 deletions
diff --git a/x11/wxGTK/Makefile b/x11/wxGTK/Makefile index 2f41bfe1f3d..745495d0608 100644 --- a/x11/wxGTK/Makefile +++ b/x11/wxGTK/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.39 2005/06/01 18:03:32 jlam Exp $ +# $NetBSD: Makefile,v 1.40 2005/06/11 17:17:56 wiz Exp $ # DISTNAME= wxGTK-2.4.2 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=wxwindows/} EXTRACT_SUFX= .tar.bz2 diff --git a/x11/wxGTK/distinfo b/x11/wxGTK/distinfo index ecb5f0318b1..fecbd516796 100644 --- a/x11/wxGTK/distinfo +++ b/x11/wxGTK/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2005/02/23 17:36:21 wiz Exp $ +$NetBSD: distinfo,v 1.17 2005/06/11 17:17:56 wiz Exp $ SHA1 (wxGTK-2.4.2.tar.bz2) = 3f1ebacaaf8eb5510c14ee10bafbc5f225be842c RMD160 (wxGTK-2.4.2.tar.bz2) = 8076d1ba31c9b23becb241cbad5a83763fee776e @@ -9,3 +9,4 @@ SHA1 (patch-ac) = 01aa0bea28f838680cce6326fa67700b12f75d86 SHA1 (patch-ad) = 809a12f89b018373910b31442dfd315276cafbdf SHA1 (patch-ae) = 8c4c8fd6e644466af181be1694921aeb14580383 SHA1 (patch-af) = 0310ad28ee99580ce822c09dcce2a8df899fd0f5 +SHA1 (patch-ag) = ccdaca4030c08aefa922367019e0c9249b810456 diff --git a/x11/wxGTK/patches/patch-ag b/x11/wxGTK/patches/patch-ag new file mode 100644 index 00000000000..8e8b70052a0 --- /dev/null +++ b/x11/wxGTK/patches/patch-ag @@ -0,0 +1,22 @@ +$NetBSD: patch-ag,v 1.1 2005/06/11 17:17:56 wiz Exp $ + +--- wxwin.m4.orig 2003-09-21 13:31:27.000000000 +0200 ++++ wxwin.m4 +@@ -33,7 +33,7 @@ dnl adds support for --wx-prefix, --wx-e + dnl command line options + dnl --------------------------------------------------------------------------- + +-AC_DEFUN(AM_OPTIONS_WXCONFIG, ++AC_DEFUN([AM_OPTIONS_WXCONFIG], + [ + AC_ARG_WITH(wx-prefix, [ --with-wx-prefix=PREFIX Prefix where wxWindows is installed (optional)], + wx_config_prefix="$withval", wx_config_prefix="") +@@ -56,7 +56,7 @@ dnl ------------------------------------ + dnl + dnl Get the cflags and libraries from the wx-config script + dnl +-AC_DEFUN(AM_PATH_WXCONFIG, ++AC_DEFUN([AM_PATH_WXCONFIG], + [ + dnl do we have wx-config name: it can be wx-config or wxd-config or ... + if test x${WX_CONFIG_NAME+set} != xset ; then |