[69515] trunk/dports/databases/libgda4

jwa at macports.org jwa at macports.org
Thu Jul 8 10:45:07 PDT 2010


Revision: 69515
          http://trac.macports.org/changeset/69515
Author:   jwa at macports.org
Date:     2010-07-08 10:45:06 -0700 (Thu, 08 Jul 2010)
Log Message:
-----------
version bump to 4.1.7, change configure.in to configure.ac

Modified Paths:
--------------
    trunk/dports/databases/libgda4/Portfile

Added Paths:
-----------
    trunk/dports/databases/libgda4/files/patch-configure.ac.diff

Removed Paths:
-------------
    trunk/dports/databases/libgda4/files/patch-configure.in.diff

Modified: trunk/dports/databases/libgda4/Portfile
===================================================================
--- trunk/dports/databases/libgda4/Portfile	2010-07-08 17:30:31 UTC (rev 69514)
+++ trunk/dports/databases/libgda4/Portfile	2010-07-08 17:45:06 UTC (rev 69515)
@@ -6,7 +6,7 @@
 name		libgda4
 conflicts       libgda3
 set gname       libgda
-version		4.1.6
+version		4.1.7
 set branch      [join [lrange [split ${version} .] 0 1] .]
 description	GDA provides uniform access to diffent kinds of data sources.
 long_description	\
@@ -21,11 +21,11 @@
 master_sites    gnome:sources/${gname}/${branch}/
 use_bzip2	yes
 
-checksums           md5     353dbf284ca7b43935a8fb8863b8391b \
-                    sha1    b7d28750deef91cd6a247382a6125067d2d9f969 \
-                    rmd160  e8d70fa9e125d34a2c50e173885ecbf878a00f9c
+checksums           md5     b400f71c8366df7a6d366adca7b50979 \
+                    sha1    d7e27d0bc93cbed9fd34a123e18c623cf529a574 \
+                    rmd160  556dad433d461aad62bbf42aec9bb9e494346ee4
 
-patchfiles      patch-configure.in.diff
+patchfiles      patch-configure.ac.diff
 
 depends_build	port:pkgconfig \
                 port:flex \

Copied: trunk/dports/databases/libgda4/files/patch-configure.ac.diff (from rev 69201, trunk/dports/databases/libgda4/files/patch-configure.in.diff)
===================================================================
--- trunk/dports/databases/libgda4/files/patch-configure.ac.diff	                        (rev 0)
+++ trunk/dports/databases/libgda4/files/patch-configure.ac.diff	2010-07-08 17:45:06 UTC (rev 69515)
@@ -0,0 +1,36 @@
+--- configure.ac	2010-06-28 21:10:54.000000000 +0300
++++ configure.ac	2010-06-28 21:10:27.000000000 +0300
+@@ -327,6 +327,7 @@
+     AC_MSG_RESULT([Mac OS X - carbon])
+     platform_carbon=yes
+     SOPREFIX='lib'
++    linklibext=".dylib"
+     if test "$enable_binreloc" != "no"
+     then
+ 	AC_DEFINE(ENABLE_BINRELOC)
+@@ -559,6 +560,25 @@
+ 				BDB_LIBS="-L${bdbdir}/lib -ldb"
+ 				break
+ 			fi
++                        if test $platform_carbon = yes  -a -f $d/include/db47/db.h -a -f $d/lib/db47/libdb$linklibext
++                        then    
++                                AC_MSG_RESULT(found Berkeley DB 4.7 in $d)
++                                AC_DEFINE(HAVE_BDB, 1, [Have Berkeley DB])
++                                bdbdir=$d
++                                BDB_CFLAGS="-I${bdbdir}/include/db47"
++                                BDB_LIB="$d/lib/db47/libdb$linklibext"
++                                BDB_LIBS="-L${bdbdir}/lib/db47 -ldb"
++                                break
++			elif test $platform_carbon = yes  -a -f $d/include/db46/db.h -a -f $d/lib/db46/libdb$linklibext
++			then
++				AC_MSG_RESULT(found Berkeley DB 4.6 in $d)
++				AC_DEFINE(HAVE_BDB, 1, [Have Berkeley DB])
++				bdbdir=$d
++				BDB_CFLAGS="-I${bdbdir}/include/db46"
++				BDB_LIB="$d/lib/db46/libdb$linklibext"
++				BDB_LIBS="-L${bdbdir}/lib/db46 -ldb"
++				break
++			fi
+ 			dnl FIXME: check for db1 (non-sleepycat implementation)
+ 		done
+ 		if test x$bdbdir = x

Deleted: trunk/dports/databases/libgda4/files/patch-configure.in.diff
===================================================================
--- trunk/dports/databases/libgda4/files/patch-configure.in.diff	2010-07-08 17:30:31 UTC (rev 69514)
+++ trunk/dports/databases/libgda4/files/patch-configure.in.diff	2010-07-08 17:45:06 UTC (rev 69515)
@@ -1,36 +0,0 @@
---- configure.in.orig	2009-04-18 05:03:50.000000000 -0700
-+++ configure.in	2009-06-13 15:19:24.000000000 -0700
-@@ -176,6 +176,7 @@
-     AC_MSG_RESULT([Mac OS X - carbon])
-     platform_carbon=yes
-     SOPREFIX='lib'
-+    linklibext=".dylib"
-     AM_BINRELOC
-     LIBTOOL_EXPORT_OPTIONS=$EXPORT_SYM_REGEX
-     LIBTOOL_PROV_EXPORT_OPTIONS=$EXPORT_PROV_SYM_REGEX
-@@ -355,6 +356,25 @@
- 				BDB_LIBS="-L${bdbdir}/lib -ldb"
- 				break
- 			fi
-+                        if test $platform_carbon = yes  -a -f $d/include/db47/db.h -a -f $d/lib/db47/libdb$linklibext
-+                        then    
-+                                AC_MSG_RESULT(found Berkeley DB 4.7 in $d)
-+                                AC_DEFINE(HAVE_BDB, 1, [Have Berkeley DB])
-+                                bdbdir=$d
-+                                BDB_CFLAGS="-I${bdbdir}/include/db47"
-+                                BDB_LIB="$d/lib/db47/libdb$linklibext"
-+                                BDB_LIBS="-L${bdbdir}/lib/db47 -ldb"
-+                                break
-+			elif test $platform_carbon = yes  -a -f $d/include/db46/db.h -a -f $d/lib/db46/libdb$linklibext
-+			then
-+				AC_MSG_RESULT(found Berkeley DB 4.6 in $d)
-+				AC_DEFINE(HAVE_BDB, 1, [Have Berkeley DB])
-+				bdbdir=$d
-+				BDB_CFLAGS="-I${bdbdir}/include/db46"
-+				BDB_LIB="$d/lib/db46/libdb$linklibext"
-+				BDB_LIBS="-L${bdbdir}/lib/db46 -ldb"
-+				break
-+			fi
- 			dnl FIXME: check for db1 (non-sleepycat implementation)
- 		done
- 		if test x$bdbdir = x
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20100708/6532ce1d/attachment-0001.html>


More information about the macports-changes mailing list