diff options
Diffstat (limited to 'databases')
21 files changed, 612 insertions, 97 deletions
diff --git a/databases/Makefile b/databases/Makefile index 00992381018c..49d175f55070 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -122,6 +122,11 @@ SUBDIR += libgda3-odbc SUBDIR += libgda3-postgresql SUBDIR += libgda3-reference + SUBDIR += libgda4 + SUBDIR += libgda4-mdb + SUBDIR += libgda4-mysql + SUBDIR += libgda4-postgresql + SUBDIR += libgda4-reference SUBDIR += libgdamm SUBDIR += libgnomedb SUBDIR += libgnomedb-reference diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile index c70896b80b28..a85d44b9fb97 100644 --- a/databases/evolution-data-server/Makefile +++ b/databases/evolution-data-server/Makefile @@ -3,12 +3,11 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/databases/evolution-data-server/Makefile,v 1.142 2008/03/10 20:33:29 mezz Exp $ +# $MCom: ports/databases/evolution-data-server/Makefile,v 1.164 2009/01/10 01:59:21 mezz Exp $ # PORTNAME= evolution-data-server -PORTVERSION= 2.22.3 -PORTREVISION= 2 +PORTVERSION= 2.24.2 CATEGORIES= databases gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -19,14 +18,15 @@ COMMENT= The data backends for the Evolution integrated mail/PIM suite LIB_DEPENDS= soup-2.4.1:${PORTSDIR}/devel/libsoup \ nss3.1:${PORTSDIR}/security/nss \ tasn1.3:${PORTSDIR}/security/libtasn1 \ + sqlite3.8:${PORTSDIR}/databases/sqlite3 \ gnome-keyring.0:${PORTSDIR}/security/gnome-keyring USE_BZIP2= yes USE_GMAKE= yes USE_BISON= build USE_GETTEXT= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnometarget libgnomeui \ - ltverhack +USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui ltverhack \ + ltasneededhack USE_OPENLDAP= yes USE_AUTOTOOLS= libtool:15 USE_BDB= 41+ @@ -39,9 +39,9 @@ CONFIGURE_ARGS= --enable-static \ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" -PLIST_SUB= VERSION="2.22" EVO_VERSION="1.2" +PLIST_SUB= VERSION="2.24" EVO_VERSION="1.2" -OPTIONS= IMAP4 "Enable experimental IMAP4 backend" off +#OPTIONS= IMAP4 "Enable experimental IMAP4 backend" off .include <bsd.port.pre.mk> @@ -55,12 +55,12 @@ CONFIGURE_ARGS+= --with-krb5=/usr KRB5_LIB= `/usr/bin/krb5-config gssapi --libs` .endif -.if defined(WITH_IMAP4) || defined(PACKAGE_BUILDING) -CONFIGURE_ARGS+= --enable-imap4=yes -PLIST_SUB+= IMAP4="" -.else +#.if defined(WITH_IMAP4) || defined(PACKAGE_BUILDING) +#CONFIGURE_ARGS+= --enable-imap4=yes +#PLIST_SUB+= IMAP4="" +#.else PLIST_SUB+= IMAP4="@comment " -.endif +#.endif EDS_BDB_MSG= "!!!WARNING!!!: Berkeley Database version is ${BDB_VER}. If this is an upgrade, you may experience problems if you or any other Evolution-data-server users were previously using BDB_VER 41." diff --git a/databases/evolution-data-server/distinfo b/databases/evolution-data-server/distinfo index 3a8b5e2af9a5..ffb8cf28418e 100644 --- a/databases/evolution-data-server/distinfo +++ b/databases/evolution-data-server/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/evolution-data-server-2.22.3.tar.bz2) = 7552919fa10a04a09130e29540482fdf -SHA256 (gnome2/evolution-data-server-2.22.3.tar.bz2) = 6e9fa1258c8b4d1fd75a1da78ee637ad5b8a82bc58c93324d73afecf8d73fe87 -SIZE (gnome2/evolution-data-server-2.22.3.tar.bz2) = 7621470 +MD5 (gnome2/evolution-data-server-2.24.2.tar.bz2) = ee08e677d30fadd58e53e6e064d4ae6e +SHA256 (gnome2/evolution-data-server-2.24.2.tar.bz2) = ac66e2f5341c488fa9e5e02c7e4eb7a7a1c01c093ad4a7a9b9e0e028f43f617a +SIZE (gnome2/evolution-data-server-2.24.2.tar.bz2) = 7886652 diff --git a/databases/evolution-data-server/files/patch-addressbook_backends_ldap_e-book-backend-ldap.c b/databases/evolution-data-server/files/patch-addressbook_backends_ldap_e-book-backend-ldap.c deleted file mode 100644 index b7266a514fb5..000000000000 --- a/databases/evolution-data-server/files/patch-addressbook_backends_ldap_e-book-backend-ldap.c +++ /dev/null @@ -1,13 +0,0 @@ ---- addressbook/backends/ldap/e-book-backend-ldap.c.orig 2007-12-14 15:23:50.000000000 +0100 -+++ addressbook/backends/ldap/e-book-backend-ldap.c 2007-12-21 11:29:01.000000000 +0100 -@@ -358,8 +358,8 @@ - - /* misc fields */ - STRING_PROP (E_CONTACT_HOMEPAGE_URL, "labeledURI"), -- /* map nickname to displayName */ -- STRING_PROP (E_CONTACT_NICKNAME, "displayName"), -+ /* map nickname to nickname */ -+ STRING_PROP (E_CONTACT_NICKNAME, "nickname"), - E_STRING_PROP (E_CONTACT_SPOUSE, "spouseName"), - E_STRING_PROP (E_CONTACT_NOTE, "note"), - E_COMPLEX_PROP (E_CONTACT_ANNIVERSARY, "anniversary", anniversary_populate, anniversary_ber, anniversary_compare), diff --git a/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-specials.c b/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-specials.c deleted file mode 100644 index e00b57db0780..000000000000 --- a/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-specials.c +++ /dev/null @@ -1,10 +0,0 @@ ---- camel/providers/imap4/camel-imap4-specials.c.orig Thu May 17 18:11:10 2007 -+++ camel/providers/imap4/camel-imap4-specials.c Thu May 17 18:11:17 2007 -@@ -22,6 +22,7 @@ - #include <config.h> - #endif - -+#include <glib.h> - #include <string.h> - - #include "camel-imap4-specials.h" diff --git a/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-summary.c b/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-summary.c deleted file mode 100644 index 55db1a65dcf0..000000000000 --- a/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-summary.c +++ /dev/null @@ -1,19 +0,0 @@ ---- camel/providers/imap4/camel-imap4-summary.c.orig Mon May 7 01:01:31 2007 -+++ camel/providers/imap4/camel-imap4-summary.c Mon May 7 01:05:32 2007 -@@ -1148,6 +1148,7 @@ static CamelIMAP4Command * - imap4_summary_fetch_flags (CamelFolderSummary *summary) - { - CamelFolder *folder = summary->folder; -+ CamelIMAP4Summary *imap4_summary = (CamelIMAP4Summary *) summary; - struct imap4_fetch_all_t *fetch; - CamelMessageInfo *info[2]; - CamelIMAP4Engine *engine; -@@ -1479,7 +1480,7 @@ camel_imap4_summary_flush_updates (Camel - } - } else { - /* need to fetch new envelopes */ -- first = scount + 1; -+ seqid = scount + 1; - } - - if (seqid != 0 && seqid <= imap4_summary->exists) { diff --git a/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in b/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in index f5b6fa2735d8..9cf7de30997e 100644 --- a/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in +++ b/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in @@ -1,6 +1,6 @@ ---- docs/reference/camel/Makefile.in.orig 2007-12-21 11:30:30.000000000 +0100 -+++ docs/reference/camel/Makefile.in 2007-12-21 11:55:58.000000000 +0100 -@@ -123,7 +123,7 @@ +--- docs/reference/camel/Makefile.in.orig 2008-09-08 23:00:49.000000000 +0200 ++++ docs/reference/camel/Makefile.in 2008-09-08 23:01:25.000000000 +0200 +@@ -129,7 +129,7 @@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ HAVE_JW = @HAVE_JW@ @@ -9,10 +9,10 @@ ICONV_CFLAGS = @ICONV_CFLAGS@ ICONV_LIBS = @ICONV_LIBS@ IDL_INCLUDES = @IDL_INCLUDES@ -@@ -690,8 +690,8 @@ +@@ -704,8 +704,8 @@ + echo '-- Installing '$$i ; \ + $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \ done; \ - echo '-- Installing $(srcdir)/html/index.sgml' ; \ - $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \ - which gtkdoc-rebase >/dev/null && \ - gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \ +# which gtkdoc-rebase >/dev/null && \ diff --git a/databases/evolution-data-server/files/patch-libedataserverui_e-source-option-menu.c b/databases/evolution-data-server/files/patch-libedataserverui_e-source-option-menu.c deleted file mode 100644 index 62532da02471..000000000000 --- a/databases/evolution-data-server/files/patch-libedataserverui_e-source-option-menu.c +++ /dev/null @@ -1,11 +0,0 @@ ---- libedataserverui/e-source-option-menu.c.orig Tue Nov 23 13:50:14 2004 -+++ libedataserverui/e-source-option-menu.c Tue Nov 23 13:50:33 2004 -@@ -24,6 +24,8 @@ - #include <config.h> - #endif - -+#include <sys/types.h> -+ - #include <gtk/gtkmenu.h> - #include <gtk/gtkmenuitem.h> - diff --git a/databases/evolution-data-server/pkg-plist b/databases/evolution-data-server/pkg-plist index d25e12757e86..bdd3a65ee501 100644 --- a/databases/evolution-data-server/pkg-plist +++ b/databases/evolution-data-server/pkg-plist @@ -1,4 +1,3 @@ -include/evolution-data-server-%%VERSION%%/camel/broken-date-parser.h include/evolution-data-server-%%VERSION%%/camel/camel-address.h include/evolution-data-server-%%VERSION%%/camel/camel-arg.h include/evolution-data-server-%%VERSION%%/camel/camel-block-file.h @@ -7,6 +6,7 @@ include/evolution-data-server-%%VERSION%%/camel/camel-charset-map.h include/evolution-data-server-%%VERSION%%/camel/camel-cipher-context.h include/evolution-data-server-%%VERSION%%/camel/camel-data-cache.h include/evolution-data-server-%%VERSION%%/camel/camel-data-wrapper.h +include/evolution-data-server-%%VERSION%%/camel/camel-db.h include/evolution-data-server-%%VERSION%%/camel/camel-debug.h include/evolution-data-server-%%VERSION%%/camel/camel-digest-folder.h include/evolution-data-server-%%VERSION%%/camel/camel-digest-store.h @@ -48,6 +48,7 @@ include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-html.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-index.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-linewrap.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-pgp.h +include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-progress.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-save.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-tohtml.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-windows.h @@ -59,6 +60,7 @@ include/evolution-data-server-%%VERSION%%/camel/camel-mime-part-utils.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-part.h include/evolution-data-server-%%VERSION%%/camel/camel-mime-utils.h include/evolution-data-server-%%VERSION%%/camel/camel-movemail.h +include/evolution-data-server-%%VERSION%%/camel/camel-msgport.h include/evolution-data-server-%%VERSION%%/camel/camel-multipart-encrypted.h include/evolution-data-server-%%VERSION%%/camel/camel-multipart-signed.h include/evolution-data-server-%%VERSION%%/camel/camel-multipart.h @@ -84,6 +86,8 @@ include/evolution-data-server-%%VERSION%%/camel/camel-sasl-plain.h include/evolution-data-server-%%VERSION%%/camel/camel-sasl-popb4smtp.h include/evolution-data-server-%%VERSION%%/camel/camel-sasl.h include/evolution-data-server-%%VERSION%%/camel/camel-search-private.h +include/evolution-data-server-%%VERSION%%/camel/camel-search-sql-sexp.h +include/evolution-data-server-%%VERSION%%/camel/camel-search-sql.h include/evolution-data-server-%%VERSION%%/camel/camel-seekable-stream.h include/evolution-data-server-%%VERSION%%/camel/camel-seekable-substream.h include/evolution-data-server-%%VERSION%%/camel/camel-service.h @@ -105,6 +109,7 @@ include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream-ssl.h include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream.h include/evolution-data-server-%%VERSION%%/camel/camel-text-index.h include/evolution-data-server-%%VERSION%%/camel/camel-transport.h +include/evolution-data-server-%%VERSION%%/camel/camel-trie.h include/evolution-data-server-%%VERSION%%/camel/camel-types.h include/evolution-data-server-%%VERSION%%/camel/camel-uid-cache.h include/evolution-data-server-%%VERSION%%/camel/camel-url-scanner.h @@ -148,10 +153,10 @@ include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy.h include/evolution-data-server-%%VERSION%%/exchange/exchange-oof.h include/evolution-data-server-%%VERSION%%/exchange/exchange-types.h include/evolution-data-server-%%VERSION%%/exchange/mapi.h -include/evolution-data-server-%%VERSION%%/google/gdata-google/gdata-google-service.h -include/evolution-data-server-%%VERSION%%/google/gdata/gdata-entry.h -include/evolution-data-server-%%VERSION%%/google/gdata/gdata-feed.h -include/evolution-data-server-%%VERSION%%/google/gdata/gdata-service-iface.h +include/evolution-data-server-%%VERSION%%/google/libgdata-google/gdata-google-service.h +include/evolution-data-server-%%VERSION%%/google/libgdata/gdata-entry.h +include/evolution-data-server-%%VERSION%%/google/libgdata/gdata-feed.h +include/evolution-data-server-%%VERSION%%/google/libgdata/gdata-service-iface.h include/evolution-data-server-%%VERSION%%/groupwise/e-gw-connection.h include/evolution-data-server-%%VERSION%%/groupwise/e-gw-container.h include/evolution-data-server-%%VERSION%%/groupwise/e-gw-filter.h @@ -162,6 +167,10 @@ include/evolution-data-server-%%VERSION%%/groupwise/e-gw-recur-utils.h include/evolution-data-server-%%VERSION%%/groupwise/e-gw-sendoptions.h include/evolution-data-server-%%VERSION%%/groupwise/soup-soap-message.h include/evolution-data-server-%%VERSION%%/groupwise/soup-soap-response.h +include/evolution-data-server-%%VERSION%%/libebackend/e-data-server-module.h +include/evolution-data-server-%%VERSION%%/libebackend/e-db3-utils.h +include/evolution-data-server-%%VERSION%%/libebackend/e-dbhash.h +include/evolution-data-server-%%VERSION%%/libebackend/e-file-cache.h include/evolution-data-server-%%VERSION%%/libebook/e-address-western.h include/evolution-data-server-%%VERSION%%/libebook/e-book-query.h include/evolution-data-server-%%VERSION%%/libebook/e-book-types.h @@ -194,6 +203,7 @@ include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book.h include/evolution-data-server-%%VERSION%%/libedata-cal/Evolution-DataServer-Calendar.h include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-cache.h include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-factory.h +include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-loader-factory.h include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sexp.h include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sync.h include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-util.h @@ -206,11 +216,7 @@ include/evolution-data-server-%%VERSION%%/libedataserver/e-account-list.h include/evolution-data-server-%%VERSION%%/libedataserver/e-account.h include/evolution-data-server-%%VERSION%%/libedataserver/e-categories.h include/evolution-data-server-%%VERSION%%/libedataserver/e-component-listener.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-data-server-module.h include/evolution-data-server-%%VERSION%%/libedataserver/e-data-server-util.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-db3-utils.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-dbhash.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-file-cache.h include/evolution-data-server-%%VERSION%%/libedataserver/e-flag.h include/evolution-data-server-%%VERSION%%/libedataserver/e-iconv.h include/evolution-data-server-%%VERSION%%/libedataserver/e-iterator.h @@ -218,6 +224,7 @@ include/evolution-data-server-%%VERSION%%/libedataserver/e-list-iterator.h include/evolution-data-server-%%VERSION%%/libedataserver/e-list.h include/evolution-data-server-%%VERSION%%/libedataserver/e-memory.h include/evolution-data-server-%%VERSION%%/libedataserver/e-msgport.h +include/evolution-data-server-%%VERSION%%/libedataserver/e-proxy.h include/evolution-data-server-%%VERSION%%/libedataserver/e-sexp.h include/evolution-data-server-%%VERSION%%/libedataserver/e-source-group.h include/evolution-data-server-%%VERSION%%/libedataserver/e-source-list.h @@ -228,6 +235,7 @@ include/evolution-data-server-%%VERSION%%/libedataserver/e-uid.h include/evolution-data-server-%%VERSION%%/libedataserver/e-url.h include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-hash-utils.h include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-utils.h +include/evolution-data-server-%%VERSION%%/libedataserver/eds-version.h include/evolution-data-server-%%VERSION%%/libedataserver/md5-utils.h include/evolution-data-server-%%VERSION%%/libedataserverui/e-book-auth-util.h include/evolution-data-server-%%VERSION%%/libedataserverui/e-categories-dialog.h @@ -294,10 +302,6 @@ lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.a lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.la lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.so lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.urls -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.urls lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.a lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.la lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.so @@ -329,6 +333,9 @@ lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.urls lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.a lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.la lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.so +lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.a +lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.la +lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.so lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.a lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.la lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.so @@ -338,6 +345,9 @@ lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.so lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.a lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.la lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.so +lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.a +lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.la +lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.so lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.a lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.la lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.so @@ -362,11 +372,15 @@ lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.so lib/libcamel-%%EVO_VERSION%%.a lib/libcamel-%%EVO_VERSION%%.la lib/libcamel-%%EVO_VERSION%%.so -lib/libcamel-%%EVO_VERSION%%.so.11 +lib/libcamel-%%EVO_VERSION%%.so.14 lib/libcamel-provider-%%EVO_VERSION%%.a lib/libcamel-provider-%%EVO_VERSION%%.la lib/libcamel-provider-%%EVO_VERSION%%.so -lib/libcamel-provider-%%EVO_VERSION%%.so.11 +lib/libcamel-provider-%%EVO_VERSION%%.so.14 +lib/libebackend-%%EVO_VERSION%%.a +lib/libebackend-%%EVO_VERSION%%.la +lib/libebackend-%%EVO_VERSION%%.so +lib/libebackend-%%EVO_VERSION%%.so.0 lib/libebook-%%EVO_VERSION%%.a lib/libebook-%%EVO_VERSION%%.la lib/libebook-%%EVO_VERSION%%.so @@ -386,7 +400,7 @@ lib/libedata-cal-%%EVO_VERSION%%.so.6 lib/libedataserver-%%EVO_VERSION%%.a lib/libedataserver-%%EVO_VERSION%%.la lib/libedataserver-%%EVO_VERSION%%.so -lib/libedataserver-%%EVO_VERSION%%.so.9 +lib/libedataserver-%%EVO_VERSION%%.so.11 lib/libedataserverui-%%EVO_VERSION%%.a lib/libedataserverui-%%EVO_VERSION%%.la lib/libedataserverui-%%EVO_VERSION%%.so @@ -411,6 +425,7 @@ libdata/bonobo/servers/GNOME_Evolution_DataServer_%%EVO_VERSION%%.server libdata/pkgconfig/camel-%%EVO_VERSION%%.pc libdata/pkgconfig/camel-provider-%%EVO_VERSION%%.pc libdata/pkgconfig/evolution-data-server-%%EVO_VERSION%%.pc +libdata/pkgconfig/libebackend-%%EVO_VERSION%%.pc libdata/pkgconfig/libebook-%%EVO_VERSION%%.pc libdata/pkgconfig/libecal-%%EVO_VERSION%%.pc libdata/pkgconfig/libedata-book-%%EVO_VERSION%%.pc @@ -427,19 +442,33 @@ libexec/evolution-data-server-%%VERSION%% share/doc/camel/Addresses.html share/doc/camel/ClassTree.html share/doc/camel/Crypto.html +share/doc/camel/Deprecated.html share/doc/camel/Filters.html share/doc/camel/Folders.html share/doc/camel/Fundamentals.html share/doc/camel/MIME.html +share/doc/camel/SearchFolders.html share/doc/camel/Services.html +share/doc/camel/Storage.html +share/doc/camel/StreamFilters.html share/doc/camel/Streams.html +share/doc/camel/Utilities.html share/doc/camel/camel-CamelAddress.html +share/doc/camel/camel-CamelCertDB.html share/doc/camel/camel-CamelCipherContext.html +share/doc/camel/camel-CamelDB.html +share/doc/camel/camel-CamelDataCache.html share/doc/camel/camel-CamelDataWrapper.html +share/doc/camel/camel-CamelFilterDriver.html share/doc/camel/camel-CamelFolder.html +share/doc/camel/camel-CamelFolderSearch.html share/doc/camel/camel-CamelFolderSummary.html share/doc/camel/camel-CamelGpgContext.html +share/doc/camel/camel-CamelHttpStream.html +share/doc/camel/camel-CamelIndex.html share/doc/camel/camel-CamelInternetAddress.html +share/doc/camel/camel-CamelKeyFile.html +share/doc/camel/camel-CamelKeyTable.html share/doc/camel/camel-CamelMedium.html share/doc/camel/camel-CamelMimeFilter.html share/doc/camel/camel-CamelMimeFilterBasic.html @@ -449,9 +478,12 @@ share/doc/camel/camel-CamelMimeFilterCanon.html share/doc/camel/camel-CamelMimeFilterCharset.html share/doc/camel/camel-CamelMimeFilterEnriched.html share/doc/camel/camel-CamelMimeFilterFrom.html +share/doc/camel/camel-CamelMimeFilterGZip.html share/doc/camel/camel-CamelMimeFilterHTML.html share/doc/camel/camel-CamelMimeFilterIndex.html +share/doc/camel/camel-CamelMimeFilterLinewrap.html share/doc/camel/camel-CamelMimeFilterPgp.html +share/doc/camel/camel-CamelMimeFilterProgress.html share/doc/camel/camel-CamelMimeFilterSave.html share/doc/camel/camel-CamelMimeFilterToHTML.html share/doc/camel/camel-CamelMimeFilterWindows.html @@ -459,13 +491,17 @@ share/doc/camel/camel-CamelMimeFilterYenc.html share/doc/camel/camel-CamelMimeMessage.html share/doc/camel/camel-CamelMimeParser.html share/doc/camel/camel-CamelMimePart.html +share/doc/camel/camel-CamelMsgPort.html share/doc/camel/camel-CamelMultipart.html share/doc/camel/camel-CamelMultipartEncrypted.html share/doc/camel/camel-CamelMultipartSigned.html +share/doc/camel/camel-CamelNNTPAddress.html +share/doc/camel/camel-CamelNewsAddress.html share/doc/camel/camel-CamelObject.html share/doc/camel/camel-CamelOfflineFolder.html share/doc/camel/camel-CamelOfflineJournal.html share/doc/camel/camel-CamelOfflineStore.html +share/doc/camel/camel-CamelSMIMEContext.html share/doc/camel/camel-CamelSasl.html share/doc/camel/camel-CamelSaslAnonymous.html share/doc/camel/camel-CamelSaslCramMd5.html @@ -474,6 +510,7 @@ share/doc/camel/camel-CamelSaslGssapi.html share/doc/camel/camel-CamelSaslKerberos4.html share/doc/camel/camel-CamelSaslLogin.html share/doc/camel/camel-CamelSaslNTLM.html +share/doc/camel/camel-CamelSaslPOPB4SMTP.html share/doc/camel/camel-CamelSaslPlain.html share/doc/camel/camel-CamelSeekableStream.html share/doc/camel/camel-CamelSeekableSubstream.html @@ -487,17 +524,43 @@ share/doc/camel/camel-CamelStreamFilter.html share/doc/camel/camel-CamelStreamFs.html share/doc/camel/camel-CamelStreamMem.html share/doc/camel/camel-CamelStreamNull.html +share/doc/camel/camel-CamelStreamProcess.html share/doc/camel/camel-CamelStreamVFS.html share/doc/camel/camel-CamelTcpStream.html share/doc/camel/camel-CamelTcpStreamRaw.html share/doc/camel/camel-CamelTcpStreamSSL.html +share/doc/camel/camel-CamelTextIndexName.html share/doc/camel/camel-CamelTransport.html share/doc/camel/camel-CamelVTrashFolder.html share/doc/camel/camel-CamelVeeFolder.html +share/doc/camel/camel-CamelVeeStore.html +share/doc/camel/camel-CamelVeeSummary.html +share/doc/camel/camel-camel-arg.html +share/doc/camel/camel-camel-charset-map.html +share/doc/camel/camel-camel-debug.html share/doc/camel/camel-camel-exception.html +share/doc/camel/camel-camel-file-utils.html +share/doc/camel/camel-camel-filter-search.html +share/doc/camel/camel-camel-folder-thread.html +share/doc/camel/camel-camel-i18n.html +share/doc/camel/camel-camel-iconv.html +share/doc/camel/camel-camel-junk-plugin.html +share/doc/camel/camel-camel-list-utils.html +share/doc/camel/camel-camel-lock-client.html +share/doc/camel/camel-camel-lock.html +share/doc/camel/camel-camel-mime-utils.html +share/doc/camel/camel-camel-movemail.html +share/doc/camel/camel-camel-net-utils.html share/doc/camel/camel-camel-operation.html +share/doc/camel/camel-camel-process.html share/doc/camel/camel-camel-provider.html +share/doc/camel/camel-camel-search-sql.html +share/doc/camel/camel-camel-string-utils.html +share/doc/camel/camel-camel-trie.html +share/doc/camel/camel-camel-uid-cache.html +share/doc/camel/camel-camel-url-scanner.html share/doc/camel/camel-camel-url.html +share/doc/camel/camel-camel-utf8.html share/doc/camel/camel.devhelp share/doc/camel/camel.devhelp2 share/doc/camel/classes.html @@ -505,10 +568,25 @@ share/doc/camel/home.png share/doc/camel/index.html share/doc/camel/index.sgml share/doc/camel/ix01.html +share/doc/camel/ix02.html share/doc/camel/left.png share/doc/camel/right.png share/doc/camel/style.css share/doc/camel/up.png +share/doc/libebackend/EFileCache.html +share/doc/libebackend/ch01.html +share/doc/libebackend/home.png +share/doc/libebackend/index.html +share/doc/libebackend/index.sgml +share/doc/libebackend/left.png +share/doc/libebackend/libebackend-e-data-server-module.html +share/doc/libebackend/libebackend-e-db3-utils.html +share/doc/libebackend/libebackend-e-dbhash.html +share/doc/libebackend/libebackend.devhelp +share/doc/libebackend/libebackend.devhelp2 +share/doc/libebackend/right.png +share/doc/libebackend/style.css +share/doc/libebackend/up.png share/doc/libebook/EBook.html share/doc/libebook/EBookListener.html share/doc/libebook/EBookView.html @@ -542,6 +620,7 @@ share/doc/libecal/index.html share/doc/libecal/index.sgml share/doc/libecal/ix01.html share/doc/libecal/left.png +share/doc/libecal/libecal-e-cal-check-timezones.html share/doc/libecal/libecal-e-cal-recur.html share/doc/libecal/libecal-e-cal-time-util.html share/doc/libecal/libecal-e-cal-types.html @@ -596,7 +675,6 @@ share/doc/libedata-cal/up.png share/doc/libedataserver/EAccount.html share/doc/libedataserver/EAccountList.html share/doc/libedataserver/EComponentListener.html -share/doc/libedataserver/EFileCache.html share/doc/libedataserver/EIterator.html share/doc/libedataserver/EList.html share/doc/libedataserver/EListIterator.html @@ -610,11 +688,10 @@ share/doc/libedataserver/index.sgml share/doc/libedataserver/ix01.html share/doc/libedataserver/left.png share/doc/libedataserver/libedataserver-EFlag.html +share/doc/libedataserver/libedataserver-EProxy.html share/doc/libedataserver/libedataserver-ESExp.html +share/doc/libedataserver/libedataserver-Version-Information.html share/doc/libedataserver/libedataserver-e-categories.html -share/doc/libedataserver/libedataserver-e-data-server-module.html -share/doc/libedataserver/libedataserver-e-db3-utils.html -share/doc/libedataserver/libedataserver-e-dbhash.html share/doc/libedataserver/libedataserver-e-iconv.html share/doc/libedataserver/libedataserver-e-memory.html share/doc/libedataserver/libedataserver-e-msgport.html @@ -705,6 +782,7 @@ share/locale/ka/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/kn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/ko/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/ku/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo +share/locale/la/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/lt/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/lv/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/mk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo @@ -730,7 +808,7 @@ share/locale/sk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/sl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/sq/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/sr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/sr@Latn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo +share/locale/sr@latin/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/sv/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/ta/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo share/locale/te/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo @@ -772,6 +850,7 @@ share/pixmaps/evolution-data-server/category_time-and-expenses_16.png @dirrm share/doc/libedata-book @dirrm share/doc/libecal @dirrm share/doc/libebook +@dirrm share/doc/libebackend @dirrm share/doc/camel @dirrm lib/evolution-data-server-%%EVO_VERSION%%/extensions @dirrm lib/evolution-data-server-%%EVO_VERSION%%/camel-providers @@ -783,9 +862,10 @@ share/pixmaps/evolution-data-server/category_time-and-expenses_16.png @dirrm include/evolution-data-server-%%VERSION%%/libedata-book @dirrm include/evolution-data-server-%%VERSION%%/libecal @dirrm include/evolution-data-server-%%VERSION%%/libebook +@dirrm include/evolution-data-server-%%VERSION%%/libebackend @dirrm include/evolution-data-server-%%VERSION%%/groupwise -@dirrm include/evolution-data-server-%%VERSION%%/google/gdata-google -@dirrm include/evolution-data-server-%%VERSION%%/google/gdata +@dirrm include/evolution-data-server-%%VERSION%%/google/libgdata-google +@dirrm include/evolution-data-server-%%VERSION%%/google/libgdata @dirrm include/evolution-data-server-%%VERSION%%/google @dirrm include/evolution-data-server-%%VERSION%%/exchange @dirrm include/evolution-data-server-%%VERSION%%/camel @@ -796,6 +876,8 @@ share/pixmaps/evolution-data-server/category_time-and-expenses_16.png @dirrmtry share/locale/xh @dirrmtry share/locale/te/LC_MESSAGES @dirrmtry share/locale/te +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin @dirrmtry share/locale/si/LC_MESSAGES @dirrmtry share/locale/si @dirrmtry share/locale/rw/LC_MESSAGES @@ -804,6 +886,8 @@ share/pixmaps/evolution-data-server/category_time-and-expenses_16.png @dirrmtry share/locale/oc @dirrmtry share/locale/mr/LC_MESSAGES @dirrmtry share/locale/mr +@dirrmtry share/locale/la/LC_MESSAGES +@dirrmtry share/locale/la @dirrmtry share/locale/ku/LC_MESSAGES @dirrmtry share/locale/ku @dirrmtry share/locale/dz/LC_MESSAGES diff --git a/databases/libgda4-mdb/Makefile b/databases/libgda4-mdb/Makefile new file mode 100644 index 000000000000..8528c8ba1ee0 --- /dev/null +++ b/databases/libgda4-mdb/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: libgda2 +# Date created: 02 June 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/databases/libgda4-mdb/Makefile,v 1.1 2008/08/18 23:53:35 kwm Exp $ +# + +PORTREVISION?= 0 +CATEGORIES= databases gnome +PKGNAMESUFFIX?= -mdb + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Provides mdb backend for the libgda4 library + +MASTERDIR= ${.CURDIR}/../libgda4 +BUILD_WRKSRC= ${WRKSRC}/providers/mdb/ +INSTALL_WRKSRC= ${BUILD_WRKSRC} +PLIST= ${.CURDIR}/pkg-plist + +LIBGDA4_SLAVE= mdb + +.include "${MASTERDIR}/Makefile" diff --git a/databases/libgda4-mdb/pkg-plist b/databases/libgda4-mdb/pkg-plist new file mode 100644 index 000000000000..30b1df5d9f44 --- /dev/null +++ b/databases/libgda4-mdb/pkg-plist @@ -0,0 +1,5 @@ +lib/libgda-%%VERSION%%/providers/libgda-mdb.a +lib/libgda-%%VERSION%%/providers/libgda-mdb.la +lib/libgda-%%VERSION%%/providers/libgda-mdb.so +libdata/pkgconfig/libgda-mdb-%%VERSION%%.pc +share/libgda-%%VERSION%%/mdb_specs_dsn.xml diff --git a/databases/libgda4-mysql/Makefile b/databases/libgda4-mysql/Makefile new file mode 100644 index 000000000000..b9b6b0b8c4ef --- /dev/null +++ b/databases/libgda4-mysql/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: libgda2 +# Date created: 02 June 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/databases/libgda4-mysql/Makefile,v 1.1 2008/08/18 23:53:35 kwm Exp $ +# + +PORTREVISION?= 0 +CATEGORIES= databases gnome +PKGNAMESUFFIX?= -mysql + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Provides mysql backend for the libgda3 library + +MASTERDIR= ${.CURDIR}/../libgda4 +BUILD_WRKSRC= ${WRKSRC}/providers/mysql/ +INSTALL_WRKSRC= ${BUILD_WRKSRC} +PLIST= ${.CURDIR}/pkg-plist + +LIBGDA4_SLAVE= mysql + +.include "${MASTERDIR}/Makefile" diff --git a/databases/libgda4-mysql/pkg-plist b/databases/libgda4-mysql/pkg-plist new file mode 100644 index 000000000000..5aff78cd8a02 --- /dev/null +++ b/databases/libgda4-mysql/pkg-plist @@ -0,0 +1,16 @@ +lib/libgda-%%VERSION%%/providers/libgda-mysql.a +lib/libgda-%%VERSION%%/providers/libgda-mysql.la +lib/libgda-%%VERSION%%/providers/libgda-mysql.so +libdata/pkgconfig/libgda-mysql-%%VERSION%%.pc +share/libgda-%%VERSION%%/mysql_specs_add_column.xml +share/libgda-%%VERSION%%/mysql_specs_create_db.xml +share/libgda-%%VERSION%%/mysql_specs_create_index.xml +share/libgda-%%VERSION%%/mysql_specs_create_table.xml +share/libgda-%%VERSION%%/mysql_specs_create_view.xml +share/libgda-%%VERSION%%/mysql_specs_drop_column.xml +share/libgda-%%VERSION%%/mysql_specs_drop_db.xml +share/libgda-%%VERSION%%/mysql_specs_drop_index.xml +share/libgda-%%VERSION%%/mysql_specs_drop_table.xml +share/libgda-%%VERSION%%/mysql_specs_drop_view.xml +share/libgda-%%VERSION%%/mysql_specs_dsn.xml +share/libgda-%%VERSION%%/mysql_specs_rename_table.xml diff --git a/databases/libgda4-postgresql/Makefile b/databases/libgda4-postgresql/Makefile new file mode 100644 index 000000000000..4c0b210af211 --- /dev/null +++ b/databases/libgda4-postgresql/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: libgda2 +# Date created: 02 June 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/databases/libgda4-postgresql/Makefile,v 1.1 2008/08/18 23:53:36 kwm Exp $ +# + +PORTREVISION?= 0 +CATEGORIES= databases gnome +PKGNAMESUFFIX?= -postgresql + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Provides postgresql access for the libgda4 library + +MASTERDIR= ${.CURDIR}/../libgda4 +BUILD_WRKSRC= ${WRKSRC}/providers/postgres/ +INSTALL_WRKSRC= ${BUILD_WRKSRC} +PLIST= ${.CURDIR}/pkg-plist + +LIBGDA4_SLAVE= postgresql + +.include "${MASTERDIR}/Makefile" diff --git a/databases/libgda4-postgresql/pkg-plist b/databases/libgda4-postgresql/pkg-plist new file mode 100644 index 000000000000..e2de17eb1d39 --- /dev/null +++ b/databases/libgda4-postgresql/pkg-plist @@ -0,0 +1,16 @@ +lib/libgda-%%VERSION%%/providers/libgda-postgres.a +lib/libgda-%%VERSION%%/providers/libgda-postgres.la +lib/libgda-%%VERSION%%/providers/libgda-postgres.so +libdata/pkgconfig/libgda-postgres-%%VERSION%%.pc +share/libgda-%%VERSION%%/postgres_specs_add_column.xml +share/libgda-%%VERSION%%/postgres_specs_create_db.xml +share/libgda-%%VERSION%%/postgres_specs_create_index.xml +share/libgda-%%VERSION%%/postgres_specs_create_table.xml +share/libgda-%%VERSION%%/postgres_specs_create_view.xml +share/libgda-%%VERSION%%/postgres_specs_drop_column.xml +share/libgda-%%VERSION%%/postgres_specs_drop_db.xml +share/libgda-%%VERSION%%/postgres_specs_drop_index.xml +share/libgda-%%VERSION%%/postgres_specs_drop_table.xml +share/libgda-%%VERSION%%/postgres_specs_drop_view.xml +share/libgda-%%VERSION%%/postgres_specs_dsn.xml +share/libgda-%%VERSION%%/postgres_specs_rename_table.xml diff --git a/databases/libgda4-reference/Makefile b/databases/libgda4-reference/Makefile new file mode 100644 index 000000000000..bf3894e64cd9 --- /dev/null +++ b/databases/libgda4-reference/Makefile @@ -0,0 +1,12 @@ +# New ports collection makefile for: libgda3-reference +# Date created: 09 May 2006 +# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org> +# +# $FreeBSD$ +# $MCOM$ + +PORTREVISION= 0 + +REFERENCE_SRC= ${WRKSRC}/doc/C + +.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" diff --git a/databases/libgda4-reference/pkg-descr b/databases/libgda4-reference/pkg-descr new file mode 100644 index 000000000000..6fcfe64af165 --- /dev/null +++ b/databases/libgda4-reference/pkg-descr @@ -0,0 +1,3 @@ +This port contains the programming reference for databases/libgda4. + +WWW: http://www.gnome-db.org/ diff --git a/databases/libgda4/Makefile b/databases/libgda4/Makefile new file mode 100644 index 000000000000..487461303ed6 --- /dev/null +++ b/databases/libgda4/Makefile @@ -0,0 +1,130 @@ +# New ports collection makefile for: libgda2 +# Date created: 02 June 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/databases/libgda4/Makefile,v 1.3 2008/10/09 22:27:17 kwm Exp $ +# + +PORTNAME= libgda4 +PORTVERSION?= 3.99.5 +PORTREVISION?= 0 +CATEGORIES= databases gnome +MASTER_SITES= GNOME +MASTER_SITE_SUBDIR= sources/${PORTNAME:S/4$//}/${PORTVERSION:R} +DISTNAME= libgda-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER?= gnome@FreeBSD.org +COMMENT?= Provides uniform access to different kinds of data sources + +USE_BZIP2= yes +LIBGDA4_SLAVE?= no + +.if !defined(REFERENCE_PORT) + +LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt + +USE_AUTOTOOLS= libtool:15 +USE_GETTEXT= yes +USE_XLIB= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gnomehack glib20 libxslt intlhack referencehack +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --without-sybase +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib -lintl" + +.include <bsd.port.pre.mk> + +#VERSION= ${PORTVERSION:R} +VERSION= 4.0 +PLIST_SUB= VERSION=${VERSION} + +.if ${LIBGDA4_SLAVE}=="no" +#MAN1= gda-config-tool-3.0.1 +#MAN5= gda-config-3.0.5 +.else +USE_GNOME+= libgda4 +.endif + +.if ${LIBGDA4_SLAVE}=="bdb" +USE_BDB= yes +CONFIGURE_ARGS+= --with-bdb=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-bdb +.endif + +.if ${LIBGDA4_SLAVE}=="mysql" +USE_MYSQL= yes +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-mysql +.endif + +.if ${LIBGDA4_SLAVE}=="postgresql" +USE_PGSQL= yes +CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-postgres +.endif + +.if ${LIBGDA4_SLAVE}=="ldap" +USE_OPENLDAP= yes +CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-ldap +.endif + +.if ${LIBGDA4_SLAVE}=="firebird" +LIB_DEPENDS+= gds.2:${PORTSDIR}/databases/firebird2-client +CONFIGURE_ARGS+= --with-firebird=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-firebird +.endif + +.if ${LIBGDA4_SLAVE}=="freetds" +LIB_DEPENDS+= tds.5:${PORTSDIR}/databases/freetds +CONFIGURE_ARGS+= --with-tds=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-tds +.endif + +# MDB (MS Access) +.if ${LIBGDA4_SLAVE}=="mdb" +LIB_DEPENDS+= mdbsql.0:${PORTSDIR}/databases/mdbtools +CONFIGURE_ARGS+= --with-mdb=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-mdb +.endif + +.if ${LIBGDA4_SLAVE}=="odbc" +LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC +CONFIGURE_ARGS+= --with-odbc=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-odbc +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|include/db.h|${BDB_VER}/include/db.h|g' \ + -e 's|ldb47|ldb${BDB_VER}|g' \ + -e 's|ldb|ldb${BDB_VER}|g' \ + ${WRKSRC}/configure +.if ${LIBGDA4_SLAVE}!="no" +#. for d in msql firebird odbc freetds mdb ldap mysql sqlite postgres +. for d in bdb mdb mysql sqlite postgres + @${REINPLACE_CMD} -e 's|$$(top_builddir)/libgda/libgda-4.0.la|${LOCALBASE}/lib/libgda-4.0.la|g' \ + ${WRKSRC}/providers/${d}/Makefile.in +. endfor +.endif + +.if ${LIBGDA4_SLAVE}=="no" +post-install: + ${INSTALL_DATA} ${WRKSRC}/data/config \ + ${PREFIX}/etc/libgda-${VERSION}/config.default +.endif + +.include <bsd.port.post.mk> +.endif diff --git a/databases/libgda4/distinfo b/databases/libgda4/distinfo new file mode 100644 index 000000000000..fa02f04031f1 --- /dev/null +++ b/databases/libgda4/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/libgda-3.99.5.tar.bz2) = e87a3584b77ba41532c93a43f115a7a7 +SHA256 (gnome2/libgda-3.99.5.tar.bz2) = 35f265638e3febea2dced537ba625242743dbaeaa83497860573104d61e0681e +SIZE (gnome2/libgda-3.99.5.tar.bz2) = 7686016 diff --git a/databases/libgda4/pkg-descr b/databases/libgda4/pkg-descr new file mode 100644 index 000000000000..12eb57b5ed9b --- /dev/null +++ b/databases/libgda4/pkg-descr @@ -0,0 +1,19 @@ +GNU Data Access (GDA) is an attempt to provide uniform access to +different kinds of data sources (databases, information servers, +mail spools, etc). + +It is a complete architecture that provides all you need to access +your data, defined by a set of CORBA interfaces as generic as possible +(but very powerful at the same time) so that any kind of data source +can be accessed through them. + +libgda is an interface to the GDA architecture, providing a nice +wrapper around the CORBA interfaces, for both the client and the server +parts. It also provides a bunch of tools to help you both in the +development and management of your data sources, all done through +the GDA model's set of CORBA interfaces. + +libgda was part of the GNOME-DB project, but has been separated from it +to allow non-GNOME applications to be developed based on it. + +WWW: http://www.gnome-db.org/ diff --git a/databases/libgda4/pkg-plist b/databases/libgda4/pkg-plist new file mode 100644 index 000000000000..bf22751673fa --- /dev/null +++ b/databases/libgda4/pkg-plist @@ -0,0 +1,206 @@ +bin/gda-list-config-%%VERSION%% +bin/gda-list-server-op-%%VERSION%% +bin/gda-sql-%%VERSION%% +bin/gda-test-connection-%%VERSION%% +bin/gda_trml2html/__init__.py +bin/gda_trml2html/trml2html.py +bin/gda_trml2html/utils.py +bin/gda_trml2pdf/__init__.py +bin/gda_trml2pdf/color.py +bin/gda_trml2pdf/trml2pdf.py +bin/gda_trml2pdf/utils.py +@unexec if cmp -s %D/etc/libgda-%%VERSION%%/config %D/etc/libgda-%%VERSION%%/config.default; then rm -f %D/etc/libgda-%%VERSION%%/config; fi +etc/libgda-%%VERSION%%/config.default +@exec [ -f %B/config ] || cp %B/%f %B/config +etc/libgda-%%VERSION%%/sales_test.db +include/libgda-%%VERSION%%/libgda-report/gda-report-docbook-document.h +include/libgda-%%VERSION%%/libgda-report/gda-report-document.h +include/libgda-%%VERSION%%/libgda-report/gda-report-engine.h +include/libgda-%%VERSION%%/libgda-report/gda-report-rml-document.h +include/libgda-%%VERSION%%/libgda-report/libgda-report.h +include/libgda-%%VERSION%%/libgda-xslt/libgda-xslt.h +include/libgda-%%VERSION%%/libgda/gda-attributes-manager.h +include/libgda-%%VERSION%%/libgda/gda-batch.h +include/libgda-%%VERSION%%/libgda/gda-binreloc.h +include/libgda-%%VERSION%%/libgda/gda-blob-op.h +include/libgda-%%VERSION%%/libgda/gda-column.h +include/libgda-%%VERSION%%/libgda/gda-config.h +include/libgda-%%VERSION%%/libgda/gda-connection-event.h +include/libgda-%%VERSION%%/libgda/gda-connection-private.h +include/libgda-%%VERSION%%/libgda/gda-connection.h +include/libgda-%%VERSION%%/libgda/gda-data-access-wrapper.h +include/libgda-%%VERSION%%/libgda/gda-data-comparator.h +include/libgda-%%VERSION%%/libgda/gda-data-handler.h +include/libgda-%%VERSION%%/libgda/gda-data-model-array.h +include/libgda-%%VERSION%%/libgda/gda-data-model-dir.h +include/libgda-%%VERSION%%/libgda/gda-data-model-extra.h +include/libgda-%%VERSION%%/libgda/gda-data-model-import.h +include/libgda-%%VERSION%%/libgda/gda-data-model-iter.h +include/libgda-%%VERSION%%/libgda/gda-data-model-iter-extra.h +include/libgda-%%VERSION%%/libgda/gda-data-model-private.h +include/libgda-%%VERSION%%/libgda/gda-data-model.h +include/libgda-%%VERSION%%/libgda/gda-data-proxy.h +include/libgda-%%VERSION%%/libgda/gda-data-select.h +include/libgda-%%VERSION%%/libgda/gda-debug-macros.h +include/libgda-%%VERSION%%/libgda/gda-decl.h +include/libgda-%%VERSION%%/libgda/gda-easy.h +include/libgda-%%VERSION%%/libgda/gda-enum-types.h +include/libgda-%%VERSION%%/libgda/gda-enums.h +include/libgda-%%VERSION%%/libgda/gda-holder.h +include/libgda-%%VERSION%%/libgda/gda-lockable.h +include/libgda-%%VERSION%%/libgda/gda-log.h +include/libgda-%%VERSION%%/libgda/gda-marshal.h +include/libgda-%%VERSION%%/libgda/gda-meta-store.h +include/libgda-%%VERSION%%/libgda/gda-meta-struct.h +include/libgda-%%VERSION%%/libgda/gda-mutex.h +include/libgda-%%VERSION%%/libgda/gda-quark-list.h +include/libgda-%%VERSION%%/libgda/gda-row.h +include/libgda-%%VERSION%%/libgda/gda-server-operation.h +include/libgda-%%VERSION%%/libgda/gda-server-provider-extra.h +include/libgda-%%VERSION%%/libgda/gda-server-provider-private.h +include/libgda-%%VERSION%%/libgda/gda-server-provider.h +include/libgda-%%VERSION%%/libgda/gda-set.h +include/libgda-%%VERSION%%/libgda/gda-statement-extra.h +include/libgda-%%VERSION%%/libgda/gda-statement.h +include/libgda-%%VERSION%%/libgda/gda-threader.h +include/libgda-%%VERSION%%/libgda/gda-transaction-status-private.h +include/libgda-%%VERSION%%/libgda/gda-transaction-status.h +include/libgda-%%VERSION%%/libgda/gda-util.h +include/libgda-%%VERSION%%/libgda/gda-value.h +include/libgda-%%VERSION%%/libgda/gda-xa-transaction.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-bin.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-boolean.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-numerical.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-string.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-time.h +include/libgda-%%VERSION%%/libgda/handlers/gda-handler-type.h +include/libgda-%%VERSION%%/libgda/libgda.h +include/libgda-%%VERSION%%/libgda/sqlite/gda-sqlite-provider.h +include/libgda-%%VERSION%%/providers-support/gda-data-select-priv.h +include/libgda-%%VERSION%%/providers-support/gda-pstmt.h +include/libgda-%%VERSION%%/sql-parser/gda-sql-parser.h +include/libgda-%%VERSION%%/sql-parser/gda-sql-parser-enum-types.h +include/libgda-%%VERSION%%/sql-parser/gda-sql-statement.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-compound.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-decl.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-delete.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-insert.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-parts.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-pspec.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-select.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-trans.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-unknown.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-update.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct-util.h +include/libgda-%%VERSION%%/sql-parser/gda-statement-struct.h +include/libgda-%%VERSION%%/virtual/gda-vconnection-data-model.h +include/libgda-%%VERSION%%/virtual/gda-vconnection-hub.h +include/libgda-%%VERSION%%/virtual/gda-virtual-connection.h +include/libgda-%%VERSION%%/virtual/gda-virtual-provider.h +include/libgda-%%VERSION%%/virtual/gda-vprovider-data-model.h +include/libgda-%%VERSION%%/virtual/gda-vprovider-hub.h +include/libgda-%%VERSION%%/virtual/libgda-virtual.h +lib/libgda-%%VERSION%%.a +lib/libgda-%%VERSION%%.la +lib/libgda-%%VERSION%%.so +lib/libgda-%%VERSION%%.so.4 +lib/libgda-%%VERSION%%/providers/libgda-sqlite.a +lib/libgda-%%VERSION%%/providers/libgda-sqlite.la +lib/libgda-%%VERSION%%/providers/libgda-sqlite.so +lib/libgda-report-%%VERSION%%.a +lib/libgda-report-%%VERSION%%.la +lib/libgda-report-%%VERSION%%.so +lib/libgda-report-%%VERSION%%.so.4 +lib/libgda-xslt-%%VERSION%%.a +lib/libgda-xslt-%%VERSION%%.la +lib/libgda-xslt-%%VERSION%%.so +lib/libgda-xslt-%%VERSION%%.so.4 +libdata/pkgconfig/libgda-%%VERSION%%.pc +libdata/pkgconfig/libgda-report-%%VERSION%%.pc +libdata/pkgconfig/libgda-sqlite-%%VERSION%%.pc +libdata/pkgconfig/libgda-xslt-%%VERSION%%.pc +share/libgda-%%VERSION%%/dtd/libgda-array.dtd +share/libgda-%%VERSION%%/dtd/libgda-paramlist.dtd +share/libgda-%%VERSION%%/dtd/libgda-server-operation.dtd +share/libgda-%%VERSION%%/information_schema.xml +share/libgda-%%VERSION%%/sqlite_specs_add_column.xml +share/libgda-%%VERSION%%/sqlite_specs_create_db.xml +share/libgda-%%VERSION%%/sqlite_specs_create_index.xml +share/libgda-%%VERSION%%/sqlite_specs_create_table.xml +share/libgda-%%VERSION%%/sqlite_specs_create_view.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_db.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_index.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_table.xml +share/libgda-%%VERSION%%/sqlite_specs_drop_view.xml +share/libgda-%%VERSION%%/sqlite_specs_dsn.xml +share/libgda-%%VERSION%%/sqlite_specs_rename_table.xml +share/locale/ar/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/az/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ca/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/cs/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/da/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/de/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/dz/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/el/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/en_CA/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/en_GB/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/es/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/eu/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/fa/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/fi/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/fr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ga/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/gl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/hr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/hu/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/it/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ja/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ko/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/lt/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/mk/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ml/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ms/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/nb/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ne/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/nl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/oc/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pa/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pt/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/pt_BR/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/ru/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/rw/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sk/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sl/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sq/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sr@Latn/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/sv/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/tr/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/uk/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/vi/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/zh_CN/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/zh_HK/LC_MESSAGES/libgda-%%VERSION%%.mo +share/locale/zh_TW/LC_MESSAGES/libgda-%%VERSION%%.mo +@dirrm share/libgda-%%VERSION%%/dtd +@dirrm share/libgda-%%VERSION%%/ +@dirrm lib/libgda-%%VERSION%%/providers +@dirrm lib/libgda-%%VERSION%% +@dirrm include/libgda-%%VERSION%%/virtual +@dirrm include/libgda-%%VERSION%%/sql-parser/ +@dirrm include/libgda-%%VERSION%%/providers-support +@dirrm include/libgda-%%VERSION%%/libgda/sqlite/ +@dirrm include/libgda-%%VERSION%%/libgda/handlers +@dirrm include/libgda-%%VERSION%%/libgda-xslt/ +@dirrm include/libgda-%%VERSION%%/libgda-report +@dirrmtry etc/libgda-%%VERSION%% +@dirrm bin/gda_trml2pdf +@dirrm bin/gda_trml2html +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz |