[107332] trunk/dports/databases/libgda5/Portfile
Revision: 107332 https://trac.macports.org/changeset/107332 Author: devans@macports.org Date: 2013-06-25 10:30:21 -0700 (Tue, 25 Jun 2013) Log Message: ----------- libgda5: use embedded libsqlite3 rather than system version, update desktop database post activate, dependencies. Modified Paths: -------------- trunk/dports/databases/libgda5/Portfile Modified: trunk/dports/databases/libgda5/Portfile =================================================================== --- trunk/dports/databases/libgda5/Portfile 2013-06-25 17:30:08 UTC (rev 107331) +++ trunk/dports/databases/libgda5/Portfile 2013-06-25 17:30:21 UTC (rev 107332) @@ -6,7 +6,7 @@ name libgda5 set gname libgda version 5.1.2 -revision 1 +revision 2 license {GPL-2 LGPL} set branch [join [lrange [split ${version} .] 0 1] .] @@ -30,10 +30,10 @@ depends_build port:pkgconfig \ port:intltool \ - port:gnome-doc-utils + port:gnome-doc-utils \ + port:desktop-file-utils depends_lib port:readline \ - port:sqlite3 \ path:bin/dot:graphviz \ port:gtksourceview2 \ port:goocanvas \ @@ -43,6 +43,9 @@ port:libtool \ port:gobject-introspection +depends_run port:gnome-settings-daemon \ + port:yelp + default_variants +bdb #use_autoreconf yes @@ -50,8 +53,13 @@ configure.perl ${prefix}/bin/perl configure.env-append INTLTOOL_PERL=${configure.perl} +# +# use embedded libsqlite3 rather than the system version +# to avoid dlopen 'Can't find file libsqlite3.so' errors +# + configure.args --with-bdb=${prefix} \ - --enable-system-sqlite \ + --enable-system-sqlite=no \ --enable-introspection \ --disable-silent-rules \ --without-mysql \ @@ -153,6 +161,7 @@ post-activate { system "${prefix}/bin/gtk-update-icon-cache -f -t ${prefix}/share/icons/hicolor" + system "${prefix}/bin/update-desktop-database ${prefix}/share/applications" } notes "The with_ and without_ variants are deprecated"
participants (1)
-
devans@macports.org