1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Update to version 0.0.20091026 of bugle which is sixteen (sic!) versions

newer and no longer requires an older version of GCC.  Fix two portability
issues in the autoconf scripts (submitted upstream, too), though there still
is a problem left, so this remains BROKEN.

Approved by:	maintainer timeout
This commit is contained in:
Gerald Pfeifer 2009-11-01 17:21:52 +00:00
parent 778a71b62e
commit 126ed7f5b0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=243610
3 changed files with 31 additions and 7 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= bugle
PORTVERSION= 0.0.20071009
PORTREVISION= 1
PORTVERSION= 0.0.20091026
CATEGORIES= graphics
MASTER_SITES= SF
@ -19,7 +18,6 @@ OPTIONS+= GUI "With GTK support (GtkGlExt)" off
OPTIONS+= THREADS "With threading support" off
GNU_CONFIGURE= yes
USE_GCC= 3.4
USE_GL= gl
USE_PERL5= yes
USE_AUTOTOOLS= libltdl:22
@ -72,6 +70,6 @@ BROKEN= Fails to link
.endif
post-patch:
@${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g' ${WRKSRC}/gentokens/find_header.perl
@${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g' ${WRKSRC}/gengl/find_header.perl
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
MD5 (bugle-0.0.20071009.tar.gz) = def7cba9b7b7a5019756373b8d972b01
SHA256 (bugle-0.0.20071009.tar.gz) = 2a4813bb03e5bec3f94ef62c06d1485a669ed230f6fb5f5c31ca5f73820947ea
SIZE (bugle-0.0.20071009.tar.gz) = 1464821
MD5 (bugle-0.0.20091026.tar.gz) = f8a8c24bbf91f4aee3cd8de21a62d0a5
SHA256 (bugle-0.0.20091026.tar.gz) = 70cde49e43455839eee0386ccaec40073952cc09bc226deeac21608d71f28329
SIZE (bugle-0.0.20091026.tar.gz) = 1918949

View File

@ -0,0 +1,26 @@
--- configure.ac.orig 2009-10-26 20:12:49.000000000 +0100
+++ configure.ac 2009-11-01 15:23:46.000000000 +0100
@@ -228,8 +228,8 @@
[test $withval = no && HAVE_GTK=0], [])
GLDB=gldb/gldb$EXEEXT
GLDB_GUI=gldb/gldb-gui$EXEEXT
-test $HAVE_GTK == 1 || GLDB_GUI=""
-test $BUGLE_OSAPI == "BUGLE_OSAPI_POSIX" || GLDB=""
+test $HAVE_GTK = 1 || GLDB_GUI=""
+test $BUGLE_OSAPI = "BUGLE_OSAPI_POSIX" || GLDB=""
AC_SUBST(GLDB)
AC_SUBST(GLDB_GUI)
--- configure.orig 2009-10-26 20:17:02.000000000 +0100
+++ configure 2009-11-01 15:33:48.000000000 +0100
@@ -37159,8 +37159,8 @@
GLDB=gldb/gldb$EXEEXT
GLDB_GUI=gldb/gldb-gui$EXEEXT
-test $HAVE_GTK == 1 || GLDB_GUI=""
-test $BUGLE_OSAPI == "BUGLE_OSAPI_POSIX" || GLDB=""
+test $HAVE_GTK = 1 || GLDB_GUI=""
+test $BUGLE_OSAPI = "BUGLE_OSAPI_POSIX" || GLDB=""