diff options
author | tron <tron@pkgsrc.org> | 2001-08-28 06:17:41 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-08-28 06:17:41 +0000 |
commit | 9e965896f6f32edd95ccc5749e48129aef0c7fe1 (patch) | |
tree | 4f0d4cf3cebfc4327ac18c93c8e12b211a91589b /games/gnome-games | |
parent | 9e3d860e6bc8dcd3bb02705a13cb0726617d93cc (diff) | |
download | pkgsrc-9e965896f6f32edd95ccc5749e48129aef0c7fe1.tar.gz |
Fix auto configure files to work with version 2.52 of the "autoconf"
package.
Diffstat (limited to 'games/gnome-games')
-rw-r--r-- | games/gnome-games/Makefile | 4 | ||||
-rw-r--r-- | games/gnome-games/distinfo | 3 | ||||
-rw-r--r-- | games/gnome-games/patches/patch-ab | 18 |
3 files changed, 22 insertions, 3 deletions
diff --git a/games/gnome-games/Makefile b/games/gnome-games/Makefile index 01c820dedc4..44f365ad6bf 100644 --- a/games/gnome-games/Makefile +++ b/games/gnome-games/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2001/08/27 14:35:08 tron Exp $ +# $NetBSD: Makefile,v 1.28 2001/08/28 06:17:41 tron Exp $ DISTNAME= gnome-games-1.4.0.2 CATEGORIES= games gnome @@ -8,7 +8,7 @@ MAINTAINER= tron@netbsd.org HOMEPAGE= http://www.gnome.org/ COMMENT= GNOME games collection -BUILD_DEPENDS+= autoconf>=2.13:../../devel/autoconf +BUILD_DEPENDS+= autoconf>=2.50:../../devel/autoconf BUILD_DEPENDS+= automake>=1.4:../../devel/automake DEPENDS+= gnome-core>1.4.0:../../x11/gnome-core # Required for ports which don't build "libgtop". diff --git a/games/gnome-games/distinfo b/games/gnome-games/distinfo index 5cd5bdbe3d9..c1ca7cf62f7 100644 --- a/games/gnome-games/distinfo +++ b/games/gnome-games/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.3 2001/08/13 17:37:24 rh Exp $ +$NetBSD: distinfo,v 1.4 2001/08/28 06:17:41 tron Exp $ SHA1 (gnome-games-1.4.0.2.tar.gz) = 9184da446df16a9f651f8f18f2fae94055c680ff Size (gnome-games-1.4.0.2.tar.gz) = 7937722 bytes SHA1 (patch-aa) = 888cf35c192d70e2edd1e4f656b69eac25c2e88a +SHA1 (patch-ab) = a65a783eca7102c3ecb5352f7ce855b75434388b SHA1 (patch-ac) = 71cf86496f6a8cf5f3291a7e046704e3ed0855ed SHA1 (patch-ad) = cd4342eb8b024c47fdc6020fe32426d3a85dfd89 SHA1 (patch-ae) = 585442dc89430094211d598af63095ba7a99a055 diff --git a/games/gnome-games/patches/patch-ab b/games/gnome-games/patches/patch-ab new file mode 100644 index 00000000000..e60d4287cab --- /dev/null +++ b/games/gnome-games/patches/patch-ab @@ -0,0 +1,18 @@ +$NetBSD: patch-ab,v 1.3 2001/08/28 06:17:42 tron Exp $ + +--- configure.in.orig Thu Jul 5 08:39:39 2001 ++++ configure.in Tue Aug 28 08:08:55 2001 +@@ -15,12 +15,7 @@ + AC_ARG_PROGRAM + AM_PROG_LIBTOOL + +-## failure of 'AC_PRG_CXX' causes automake to abort +-# see if a C++ compiler exists and works +-AC_REQUIRE([AC_PROG_CXX])dnl +-if test "x$ac_cv_prog_cxx_works" = xno; then +- AC_MSG_WARN(ifelse([$1], , "No C++ compiler", [$1])) +-fi ++AC_PROG_CXX + AM_CONDITIONAL(CXX_PRESENT, test "x$ac_cv_prog_cxx_works" != xno) + + ## this should come after `AC_PROG_CC' |