diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-26 01:16:36 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-26 01:16:36 +0800 |
commit | 181f22437c81a50126939fff44f9bb9fa937ee74 (patch) | |
tree | f4f62ee25cce76550c5a0e03e6af7e95793c0f0a | |
parent | d821bb7d23d9fb577710251f3fbe34c51e7e867b (diff) | |
download | marcuscom-ports-181f22437c81a50126939fff44f9bb9fa937ee74.tar marcuscom-ports-181f22437c81a50126939fff44f9bb9fa937ee74.tar.gz marcuscom-ports-181f22437c81a50126939fff44f9bb9fa937ee74.tar.bz2 marcuscom-ports-181f22437c81a50126939fff44f9bb9fa937ee74.tar.lz marcuscom-ports-181f22437c81a50126939fff44f9bb9fa937ee74.tar.xz marcuscom-ports-181f22437c81a50126939fff44f9bb9fa937ee74.tar.zst marcuscom-ports-181f22437c81a50126939fff44f9bb9fa937ee74.zip |
USE_X_PREFIX -> USE_XLIB, bump the PORTREVISION.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6801 df743ca5-7f9a-e211-a948-0013205c9059
39 files changed, 1156 insertions, 0 deletions
diff --git a/databases/libgda/Makefile b/databases/libgda/Makefile new file mode 100644 index 000000000..0d5294cd3 --- /dev/null +++ b/databases/libgda/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: libgda +# Date created: 8th March 2001 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= libgda +PORTVERSION= 0.2.96 +PORTREVISION= 5 +CATEGORIES= databases gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.2 +DIST_SUBDIR= gnome + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Provides uniform access to different kinds of data sources + +LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm + +USE_BZIP2= yes +USE_XLIB= yes +USE_GNOME= gnomehack gnomeprefix gnomehier gconf bonobo +USE_GMAKE= yes +USE_GETTEXT= yes +INSTALLS_OMF= yes +INSTALLS_SHLIB= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-gtk-doc +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib -lintl -lgdbm" +CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} +PLIST_SUB= VERSION=${PORTVERSION} + +post-patch: + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|share/idl|share/gnome/idl|g' + +.include <bsd.port.mk> diff --git a/databases/libgda/distinfo b/databases/libgda/distinfo new file mode 100644 index 000000000..4546d1e02 --- /dev/null +++ b/databases/libgda/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome/libgda-0.2.96.tar.bz2) = f9975f05dfb2144e5470b792f2319987 +SHA256 (gnome/libgda-0.2.96.tar.bz2) = 7dc02adc402fd800fe1f5020bc2dd56842d5aa17c1a4da46dcdaedc7533c2f9f +SIZE (gnome/libgda-0.2.96.tar.bz2) = 909541 diff --git a/databases/libgda/files/patch-aa b/databases/libgda/files/patch-aa new file mode 100644 index 000000000..aa77c2716 --- /dev/null +++ b/databases/libgda/files/patch-aa @@ -0,0 +1,14 @@ + +$FreeBSD: ports/databases/libgda/files/patch-aa,v 1.5 2001/11/21 11:23:50 sobomax Exp $ + +--- Makefile.in.orig Wed Nov 21 10:29:52 2001 ++++ Makefile.in Wed Nov 21 10:30:19 2001 +@@ -158,7 +158,7 @@ + YACC = @YACC@ + l = @l@ + +-SUBDIRS = po intl macros idl lib bindings providers tools testing doc ++SUBDIRS = po intl macros idl lib bindings providers tools doc + + + EXTRA_DIST = COPYING libgda.spec.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in diff --git a/databases/libgda/files/patch-bindings_c++_gdaBatch.cpp b/databases/libgda/files/patch-bindings_c++_gdaBatch.cpp new file mode 100644 index 000000000..2412c1226 --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaBatch.cpp @@ -0,0 +1,11 @@ +--- bindings/c++/gdaBatch.cpp.orig Sat Jun 15 17:01:27 2002 ++++ bindings/c++/gdaBatch.cpp Sat Jun 15 17:01:41 2002 +@@ -127,7 +127,7 @@ + } + + GdaBatch* +-Batch::getCStruct (bool refn = true) const ++Batch::getCStruct (bool refn) const + { + if (refn) + ref (); diff --git a/databases/libgda/files/patch-bindings_c++_gdaCommand.cpp b/databases/libgda/files/patch-bindings_c++_gdaCommand.cpp new file mode 100644 index 000000000..8f8667e86 --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaCommand.cpp @@ -0,0 +1,11 @@ +--- bindings/c++/gdaCommand.cpp.orig Sat Jun 15 17:02:00 2002 ++++ bindings/c++/gdaCommand.cpp Sat Jun 15 17:02:08 2002 +@@ -139,7 +139,7 @@ + */ + + GdaCommand* +-Command::getCStruct (bool refn = true) const ++Command::getCStruct (bool refn) const + { + if (refn) + ref (); diff --git a/databases/libgda/files/patch-bindings_c++_gdaConnection.cpp b/databases/libgda/files/patch-bindings_c++_gdaConnection.cpp new file mode 100644 index 000000000..aebf4440a --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaConnection.cpp @@ -0,0 +1,11 @@ +--- bindings/c++/gdaConnection.cpp.orig Sat Jun 15 17:02:32 2002 ++++ bindings/c++/gdaConnection.cpp Sat Jun 15 17:02:41 2002 +@@ -294,7 +294,7 @@ + return gda_connection_get_version (_gda_connection); + } + +-GdaConnection* Connection::getCStruct (bool refn = true) const ++GdaConnection* Connection::getCStruct (bool refn) const + { + if (refn) ref (); + return _gda_connection; diff --git a/databases/libgda/files/patch-bindings_c++_gdaConnection.h b/databases/libgda/files/patch-bindings_c++_gdaConnection.h new file mode 100644 index 000000000..5846ac683 --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaConnection.h @@ -0,0 +1,11 @@ +--- bindings/c++/gdaConnection.h.orig Sat Jun 15 17:00:34 2002 ++++ bindings/c++/gdaConnection.h Sat Jun 15 17:00:54 2002 +@@ -20,6 +20,8 @@ + #ifndef __gda_bindings_cpp_gdaConnectionH + #define __gda_bindings_cpp_gdaConnectionH + ++using namespace std; ++ + namespace gda { + + class Recordset; diff --git a/databases/libgda/files/patch-bindings_c++_gdaError.cpp b/databases/libgda/files/patch-bindings_c++_gdaError.cpp new file mode 100644 index 000000000..4b4e2c6ab --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaError.cpp @@ -0,0 +1,11 @@ +--- bindings/c++/gdaError.cpp.orig Sat Jun 15 17:03:02 2002 ++++ bindings/c++/gdaError.cpp Sat Jun 15 17:03:09 2002 +@@ -98,7 +98,7 @@ + } + + GdaError* +-Error::getCStruct (bool refn = true) const ++Error::getCStruct (bool refn) const + { + if (refn) ref (); + return _gda_error; diff --git a/databases/libgda/files/patch-bindings_c++_gdaField.cpp b/databases/libgda/files/patch-bindings_c++_gdaField.cpp new file mode 100644 index 000000000..e650f0af2 --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaField.cpp @@ -0,0 +1,11 @@ +--- bindings/c++/gdaField.cpp.orig Sat Jun 15 17:03:38 2002 ++++ bindings/c++/gdaField.cpp Sat Jun 15 17:03:45 2002 +@@ -428,7 +428,7 @@ + } + + GdaField* +-Field::getCStruct (bool refn = true) const ++Field::getCStruct (bool refn) const + { + if (refn) ref (); + return _gda_field; diff --git a/databases/libgda/files/patch-bindings_c++_gdaHelpers.h b/databases/libgda/files/patch-bindings_c++_gdaHelpers.h new file mode 100644 index 000000000..100ddee8a --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaHelpers.h @@ -0,0 +1,11 @@ +--- bindings/c++/gdaHelpers.h.orig Sat Jun 15 17:04:17 2002 ++++ bindings/c++/gdaHelpers.h Sat Jun 15 17:04:31 2002 +@@ -19,6 +19,8 @@ + //#ifndef __gda_helpers_cpp_gdaHelpersH + //#define __gda_helpers_cpp_gdaHelpersH + ++using namespace std; ++ + namespace gda { + string gda_return_string (gchar* pszString); + }; diff --git a/databases/libgda/files/patch-bindings_c++_gdaIncludes.h b/databases/libgda/files/patch-bindings_c++_gdaIncludes.h new file mode 100644 index 000000000..b4d3d7a15 --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaIncludes.h @@ -0,0 +1,11 @@ +--- bindings/c++/gdaIncludes.h.orig Sat Jun 15 16:53:57 2002 ++++ bindings/c++/gdaIncludes.h Sat Jun 15 16:55:03 2002 +@@ -51,4 +51,8 @@ + #include "gdaRecordset.h" + #include "gdaValue.h" + ++// Needed to get references to string working without having to pre-pend ++// std:: to each one. ++using namespace std; ++ + #endif // __gda_bindings_cpp_gdaIncludesH diff --git a/databases/libgda/files/patch-bindings_c++_gdaRecordset.cpp b/databases/libgda/files/patch-bindings_c++_gdaRecordset.cpp new file mode 100644 index 000000000..77a27c211 --- /dev/null +++ b/databases/libgda/files/patch-bindings_c++_gdaRecordset.cpp @@ -0,0 +1,11 @@ +--- bindings/c++/gdaRecordset.cpp.orig Sat Jun 15 17:05:30 2002 ++++ bindings/c++/gdaRecordset.cpp Sat Jun 15 17:05:55 2002 +@@ -254,7 +254,7 @@ + } + + GdaRecordset* +-Recordset::getCStruct (bool refn = true) const ++Recordset::getCStruct (bool refn) const + { + if (refn) ref (); + return _gda_recordset; diff --git a/databases/libgda/files/patch-configure b/databases/libgda/files/patch-configure new file mode 100644 index 000000000..04235bcc1 --- /dev/null +++ b/databases/libgda/files/patch-configure @@ -0,0 +1,13 @@ + +$FreeBSD: ports/databases/libgda/files/patch-configure,v 1.5 2002/05/01 20:23:00 sobomax Exp $ + +--- configure 2002/05/01 08:18:05 1.1 ++++ configure 2002/05/01 08:19:03 +@@ -5785,6 +5785,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/databases/libgda/files/patch-doc::C::reference::libgda-client::Makefile.in b/databases/libgda/files/patch-doc::C::reference::libgda-client::Makefile.in new file mode 100644 index 000000000..fe1e15733 --- /dev/null +++ b/databases/libgda/files/patch-doc::C::reference::libgda-client::Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD: ports/databases/libgda/files/patch-doc::C::reference::libgda-client::Makefile.in,v 1.1 2002/05/01 20:23:00 sobomax Exp $ + +--- doc/C/reference/libgda-client/Makefile.in 2002/05/01 08:16:31 1.1 ++++ doc/C/reference/libgda-client/Makefile.in 2002/05/01 08:17:40 +@@ -171,7 +171,7 @@ + LDFLAGS = " $(GDA_CLIENT_LIBS) $(top_builddir)/lib/gda-common/.libs/libgda-common.so $(top_builddir)/lib/gda-client/.libs/libgda-client.a " + + +-DOC_DIR = $(datadir)/html ++DOC_DIR = $(prefix)/share/doc/libgda + + DOC_DIR_INSTALL_FILES = libgda-client.args libgda-client.hierarchy libgda-client.signals libgda-client.types libgda-client-decl.txt libgda-client-sections.txt + diff --git a/databases/libgda/files/patch-doc::C::reference::libgda-common::Makefile.in b/databases/libgda/files/patch-doc::C::reference::libgda-common::Makefile.in new file mode 100644 index 000000000..4661dcd44 --- /dev/null +++ b/databases/libgda/files/patch-doc::C::reference::libgda-common::Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD: ports/databases/libgda/files/patch-doc::C::reference::libgda-common::Makefile.in,v 1.1 2002/05/01 20:23:00 sobomax Exp $ + +--- doc/C/reference/libgda-common/Makefile.in 2002/05/01 08:16:31 1.1 ++++ doc/C/reference/libgda-common/Makefile.in 2002/05/01 08:17:35 +@@ -171,7 +171,7 @@ + LDFLAGS = " $(GDA_CLIENT_LIBS) $(top_builddir)/lib/gda-common/.libs/libgda-common.a " + + +-DOC_DIR = $(datadir)/html ++DOC_DIR = $(prefix)/share/doc/libgda + + DOC_DIR_INSTALL_FILES = libgda-common.args libgda-common.hierarchy libgda-common.signals libgda-common.types libgda-common-decl.txt libgda-common-sections.txt + diff --git a/databases/libgda/files/patch-providers::gda-default-server::sqlite::lemon.c b/databases/libgda/files/patch-providers::gda-default-server::sqlite::lemon.c new file mode 100644 index 000000000..5aab82eb2 --- /dev/null +++ b/databases/libgda/files/patch-providers::gda-default-server::sqlite::lemon.c @@ -0,0 +1,50 @@ +--- providers/gda-default-server/sqlite/lemon.c.orig Mon Aug 4 09:34:14 2003 ++++ providers/gda-default-server/sqlite/lemon.c Mon Aug 4 09:43:12 2003 +@@ -7,7 +7,7 @@ + ** The author of this program disclaims copyright. + */ + #include <stdio.h> +-#include <varargs.h> ++#include <stdarg.h> + #include <string.h> + #include <ctype.h> + +@@ -70,7 +70,7 @@ + void Configlist_reset(/* void */); + + /********* From the file "error.h" ***************************************/ +-void ErrorMsg( /* char *, int, char *, ... */ ); ++void ErrorMsg( char *, int, char *, ... ); + + /****** From the file "option.h" ******************************************/ + struct s_options { +@@ -1092,12 +1092,13 @@ + #define ERRMSGSIZE 10000 /* Hope this is big enough. No way to error check */ + #define LINEWIDTH 79 /* Max width of any output line */ + #define PREFIXLIMIT 30 /* Max width of the prefix on each line */ +-void ErrorMsg(va_alist) +-va_dcl ++void ErrorMsg( char *filename, int lineno, char *format, ... ) + { ++ /* + char *filename; + int lineno; + char *format; ++ */ + char errmsg[ERRMSGSIZE]; + char prefix[PREFIXLIMIT+10]; + int errmsgsize; +@@ -1106,10 +1107,12 @@ + va_list ap; + int end, restart, base; + +- va_start(ap); ++ va_start(ap, format); ++ /* + filename = va_arg(ap,char*); + lineno = va_arg(ap,int); + format = va_arg(ap,char*); ++ */ + /* Prepare a prefix to be prepended to every output line */ + if( lineno>0 ){ + sprintf(prefix,"%.*s:%d: ",PREFIXLIMIT-10,filename,lineno); diff --git a/databases/libgda/files/patch-tools::gda-buildserver.in b/databases/libgda/files/patch-tools::gda-buildserver.in new file mode 100644 index 000000000..f61d47a02 --- /dev/null +++ b/databases/libgda/files/patch-tools::gda-buildserver.in @@ -0,0 +1,14 @@ + +$FreeBSD: ports/databases/libgda/files/patch-tools::gda-buildserver.in,v 1.1 2001/08/06 10:56:39 sobomax Exp $ + +--- tools/gda-buildserver.in 2001/08/06 08:16:41 1.1 ++++ tools/gda-buildserver.in 2001/08/06 08:16:54 +@@ -7,7 +7,7 @@ + CC=@CC@ + shell=@shell@ + +-TEMPLATES_DIR="${prefix}/share/gda/templates" ++TEMPLATES_DIR="${prefix}/share/gnome/gda/templates" + TMPL_C_FILES="gda-srv-command.c gda-srv-connection.c gda-srv-recordset.c main-srv.c" + TMPL_H_FILES="gda-srv.h" + diff --git a/databases/libgda/files/patch-tools::templates::Makefile.in b/databases/libgda/files/patch-tools::templates::Makefile.in new file mode 100644 index 000000000..670d43b7f --- /dev/null +++ b/databases/libgda/files/patch-tools::templates::Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD: ports/databases/libgda/files/patch-tools::templates::Makefile.in,v 1.1 2001/08/06 10:56:39 sobomax Exp $ + +--- tools/templates/Makefile.in 2001/08/06 08:15:18 1.1 ++++ tools/templates/Makefile.in 2001/08/06 08:15:53 +@@ -148,7 +148,7 @@ + + EXTRA_DIST = $(TEMPLATE_FILES) + +-gdatemplatesdir = $(prefix)/share/gda/templates ++gdatemplatesdir = $(prefix)/share/gnome/gda/templates + gdatemplates_DATA = $(TEMPLATE_FILES) + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = ../../config.h diff --git a/databases/libgda/pkg-descr b/databases/libgda/pkg-descr new file mode 100644 index 000000000..12eb57b5e --- /dev/null +++ b/databases/libgda/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/libgda/pkg-plist b/databases/libgda/pkg-plist new file mode 100644 index 000000000..195f9aa7a --- /dev/null +++ b/databases/libgda/pkg-plist @@ -0,0 +1,215 @@ +bin/gda-buildclient +bin/gda-buildserver +bin/gda-config +bin/gda-default-srv +bin/gda-run +include/libgda-%%VERSION%%/gda++/gdaBatch.h +include/libgda-%%VERSION%%/gda++/gdaCommand.h +include/libgda-%%VERSION%%/gda++/gdaConnection.h +include/libgda-%%VERSION%%/gda++/gdaError.h +include/libgda-%%VERSION%%/gda++/gdaErrorList.h +include/libgda-%%VERSION%%/gda++/gdaField.h +include/libgda-%%VERSION%%/gda++/gdaHelpers.h +include/libgda-%%VERSION%%/gda++/gdaIncludes.h +include/libgda-%%VERSION%%/gda++/gdaRecordset.h +include/libgda-%%VERSION%%/gda++/gdaValue.h +include/libgda-%%VERSION%%/gda/GDA.h +include/libgda-%%VERSION%%/gda/gda-batch.h +include/libgda-%%VERSION%%/gda/gda-client.h +include/libgda-%%VERSION%%/gda/gda-command.h +include/libgda-%%VERSION%%/gda/gda-common-defs.h +include/libgda-%%VERSION%%/gda/gda-common.h +include/libgda-%%VERSION%%/gda/gda-config.h +include/libgda-%%VERSION%%/gda/gda-connection-pool.h +include/libgda-%%VERSION%%/gda/gda-connection.h +include/libgda-%%VERSION%%/gda/gda-corba.h +include/libgda-%%VERSION%%/gda/gda-error.h +include/libgda-%%VERSION%%/gda/gda-export.h +include/libgda-%%VERSION%%/gda/gda-field.h +include/libgda-%%VERSION%%/gda/gda-listener.h +include/libgda-%%VERSION%%/gda/gda-log.h +include/libgda-%%VERSION%%/gda/gda-quark-list.h +include/libgda-%%VERSION%%/gda/gda-recordset.h +include/libgda-%%VERSION%%/gda/gda-server-command.h +include/libgda-%%VERSION%%/gda/gda-server-connection.h +include/libgda-%%VERSION%%/gda/gda-server-error.h +include/libgda-%%VERSION%%/gda/gda-server-field.h +include/libgda-%%VERSION%%/gda/gda-server-recordset.h +include/libgda-%%VERSION%%/gda/gda-server.h +include/libgda-%%VERSION%%/gda/gda-thread.h +include/libgda-%%VERSION%%/gda/gda-util.h +include/libgda-%%VERSION%%/gda/gda-value.h +include/libgda-%%VERSION%%/gda/gda-xml-atom-item.h +include/libgda-%%VERSION%%/gda/gda-xml-bin-item.h +include/libgda-%%VERSION%%/gda/gda-xml-database.h +include/libgda-%%VERSION%%/gda/gda-xml-document.h +include/libgda-%%VERSION%%/gda/gda-xml-item.h +include/libgda-%%VERSION%%/gda/gda-xml-list-item.h +include/libgda-%%VERSION%%/gda/gda-xml-util.h +lib/libgda-client.a +lib/libgda-client.la +lib/libgda-client.so +lib/libgda-client.so.0 +lib/libgda-clientcpp.a +lib/libgda-clientcpp.la +lib/libgda-clientcpp.so +lib/libgda-clientcpp.so.0 +lib/libgda-common.a +lib/libgda-common.la +lib/libgda-common.so +lib/libgda-common.so.0 +lib/libgda-server.a +lib/libgda-server.la +lib/libgda-server.so +lib/libgda-server.so.0 +%%DOCSDIR%%/libgda-client-decl.txt +%%DOCSDIR%%/libgda-client-sections.txt +%%DOCSDIR%%/libgda-client.args +%%DOCSDIR%%/libgda-client.hierarchy +%%DOCSDIR%%/libgda-client.signals +%%DOCSDIR%%/libgda-client.types +%%DOCSDIR%%/libgda-common-decl.txt +%%DOCSDIR%%/libgda-common-sections.txt +%%DOCSDIR%%/libgda-common.args +%%DOCSDIR%%/libgda-common.hierarchy +%%DOCSDIR%%/libgda-common.signals +%%DOCSDIR%%/libgda-common.types +share/gnome/gda/templates/gda-srv-command.c.tmpl +share/gnome/gda/templates/gda-srv-connection.c.tmpl +share/gnome/gda/templates/gda-srv-recordset.c.tmpl +share/gnome/gda/templates/gda-srv.h.tmpl +share/gnome/gda/templates/main-srv.c.tmpl +share/gnome/help/libgda/C/architecture.html +share/gnome/help/libgda/C/clients-building-corba.html +share/gnome/help/libgda/C/clients-building.html +share/gnome/help/libgda/C/clients.html +share/gnome/help/libgda/C/fdl-section1.html +share/gnome/help/libgda/C/fdl-section10.html +share/gnome/help/libgda/C/fdl-section2.html +share/gnome/help/libgda/C/fdl-section3.html +share/gnome/help/libgda/C/fdl-section4.html +share/gnome/help/libgda/C/fdl-section5.html +share/gnome/help/libgda/C/fdl-section6.html +share/gnome/help/libgda/C/fdl-section7.html +share/gnome/help/libgda/C/fdl-section8.html +share/gnome/help/libgda/C/fdl-section9.html +share/gnome/help/libgda/C/fdl-using.html +share/gnome/help/libgda/C/fdl.html +share/gnome/help/libgda/C/gda-client-batch.html +share/gnome/help/libgda/C/gda-client-meta.html +share/gnome/help/libgda/C/gda-client-objects.html +share/gnome/help/libgda/C/gda-client-types.html +share/gnome/help/libgda/C/gda-client.html +share/gnome/help/libgda/C/gda-common-logs.html +share/gnome/help/libgda/C/gda-common-xml-databases.html +share/gnome/help/libgda/C/gda-common-xml-queries.html +share/gnome/help/libgda/C/gda-common.html +share/gnome/help/libgda/C/index.html +share/gnome/help/libgda/C/installation-configuring.html +share/gnome/help/libgda/C/installation-installing.html +share/gnome/help/libgda/C/installation.html +share/gnome/help/libgda/C/introduction.html +share/gnome/help/libgda/C/libgda.html +share/gnome/help/libgda/C/providers-actual-implementation.html +share/gnome/help/libgda/C/providers-examples.html +share/gnome/help/libgda/C/providers-implementation.html +share/gnome/help/libgda/C/providers.html +share/gnome/help/libgda/C/reports.html +share/gnome/help/libgda/C/topic.dat +share/gnome/help/libgda/es/architecture.html +share/gnome/help/libgda/es/clients-building-corba.html +share/gnome/help/libgda/es/clients-building.html +share/gnome/help/libgda/es/clients.html +share/gnome/help/libgda/es/gda-client-batch.html +share/gnome/help/libgda/es/gda-client-meta.html +share/gnome/help/libgda/es/gda-client-objects.html +share/gnome/help/libgda/es/gda-client-types.html +share/gnome/help/libgda/es/gda-client.html +share/gnome/help/libgda/es/gda-common-logs.html +share/gnome/help/libgda/es/gda-common-xml-databases.html +share/gnome/help/libgda/es/gda-common-xml-queries.html +share/gnome/help/libgda/es/gda-common.html +share/gnome/help/libgda/es/index.html +share/gnome/help/libgda/es/installation-configuring.html +share/gnome/help/libgda/es/installation-installing.html +share/gnome/help/libgda/es/installation.html +share/gnome/help/libgda/es/introduction.html +share/gnome/help/libgda/es/libgda.html +share/gnome/help/libgda/es/providers-actual-implementation.html +share/gnome/help/libgda/es/providers-examples.html +share/gnome/help/libgda/es/providers-implementation.html +share/gnome/help/libgda/es/providers.html +share/gnome/help/libgda/es/reports.html +share/gnome/help/libgda/es/topic.dat +share/gnome/help/libgda/pt_BR/architecture.html +share/gnome/help/libgda/pt_BR/c162.html +share/gnome/help/libgda/pt_BR/c182.html +share/gnome/help/libgda/pt_BR/c323.html +share/gnome/help/libgda/pt_BR/c350.html +share/gnome/help/libgda/pt_BR/clients-building-corba.html +share/gnome/help/libgda/pt_BR/clients-building.html +share/gnome/help/libgda/pt_BR/gda-client-batch.html +share/gnome/help/libgda/pt_BR/gda-client-meta.html +share/gnome/help/libgda/pt_BR/gda-client-objects.html +share/gnome/help/libgda/pt_BR/gda-client-types.html +share/gnome/help/libgda/pt_BR/gda-common-logs.html +share/gnome/help/libgda/pt_BR/gda-common-xml-databases.html +share/gnome/help/libgda/pt_BR/gda-common-xml-queries.html +share/gnome/help/libgda/pt_BR/index.html +share/gnome/help/libgda/pt_BR/installation-configuring.html +share/gnome/help/libgda/pt_BR/installation-installing.html +share/gnome/help/libgda/pt_BR/installation.html +share/gnome/help/libgda/pt_BR/introduction.html +share/gnome/help/libgda/pt_BR/libgda.html +share/gnome/help/libgda/pt_BR/providers-actual-implementation.html +share/gnome/help/libgda/pt_BR/providers-examples.html +share/gnome/help/libgda/pt_BR/providers-implementation.html +share/gnome/help/libgda/pt_BR/topic.dat +share/gnome/idl/GDA.idl +share/gnome/idl/GDA_Command.idl +share/gnome/idl/GDA_Connection.idl +share/gnome/idl/GDA_Error.idl +share/gnome/idl/GDA_Field.idl +share/gnome/idl/GDA_Listener.idl +share/gnome/idl/GDA_Parameter.idl +share/gnome/idl/GDA_Recordset.idl +share/gnome/oaf/GNOME_GDA_Provider_Default.oaf +share/gnome/omf/libgda/libgda-C.omf +share/gnome/omf/libgda/libgda-es.omf +share/gnome/omf/libgda/libgda-pt_BR.omf +share/locale/ca/LC_MESSAGES/libgda.mo +share/locale/da/LC_MESSAGES/libgda.mo +share/locale/de/LC_MESSAGES/libgda.mo +share/locale/el/LC_MESSAGES/libgda.mo +share/locale/es/LC_MESSAGES/libgda.mo +share/locale/fi/LC_MESSAGES/libgda.mo +share/locale/fr/LC_MESSAGES/libgda.mo +share/locale/ga/LC_MESSAGES/libgda.mo +share/locale/gl/LC_MESSAGES/libgda.mo +share/locale/hu/LC_MESSAGES/libgda.mo +share/locale/it/LC_MESSAGES/libgda.mo +share/locale/ja/LC_MESSAGES/libgda.mo +share/locale/nl/LC_MESSAGES/libgda.mo +share/locale/nn/LC_MESSAGES/libgda.mo +share/locale/no/LC_MESSAGES/libgda.mo +share/locale/pl/LC_MESSAGES/libgda.mo +share/locale/pt/LC_MESSAGES/libgda.mo +share/locale/pt_BR/LC_MESSAGES/libgda.mo +share/locale/ru/LC_MESSAGES/libgda.mo +share/locale/sk/LC_MESSAGES/libgda.mo +share/locale/sl/LC_MESSAGES/libgda.mo +share/locale/sv/LC_MESSAGES/libgda.mo +share/locale/uk/LC_MESSAGES/libgda.mo +@dirrm share/gnome/omf/libgda +@dirrm share/gnome/help/libgda/pt_BR/images +@dirrm share/gnome/help/libgda/pt_BR +@dirrm share/gnome/help/libgda/es/images +@dirrm share/gnome/help/libgda/es +@dirrm share/gnome/help/libgda/C/images +@dirrm share/gnome/help/libgda/C +@dirrm share/gnome/help/libgda +@dirrm share/gnome/gda/templates +@dirrm share/gnome/gda +@dirrm include/libgda-%%VERSION%%/gda++ +@dirrm include/libgda-%%VERSION%%/gda +@dirrm include/libgda-%%VERSION%% diff --git a/devel/bonobo/Makefile b/devel/bonobo/Makefile new file mode 100644 index 000000000..42352183c --- /dev/null +++ b/devel/bonobo/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: bonobo +# Date created: 8th October 1999 +# Whom: Ade Lovett <ade@lovett.com> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= bonobo +PORTVERSION= 1.0.22 +PORTREVISION= 3 +CATEGORIES= devel gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.0 +DIST_SUBDIR= gnome + +MAINTAINER= gnome@FreeBSD.org +COMMENT= The component and compound document system for GNOME + +USE_BZIP2= yes +USE_XLIB= yes +USE_PERL5= yes +USE_GMAKE= yes +USE_GNOME= gnomehack gnomeprefix oaf gnomehier gnomeprint +USE_GETTEXT= yes +GNOME_HTML_DIR= ${PREFIX}/share/doc/bonobo +INSTALLS_SHLIB= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} + +.include <bsd.port.mk> diff --git a/devel/bonobo/distinfo b/devel/bonobo/distinfo new file mode 100644 index 000000000..ca33840b8 --- /dev/null +++ b/devel/bonobo/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome/bonobo-1.0.22.tar.bz2) = 7718c374ed82911b24d95fa3ab55dda5 +SHA256 (gnome/bonobo-1.0.22.tar.bz2) = 02f02653c5ecf9a0f39df33b21087070ba6768a3147fcca10589950dfc778584 +SIZE (gnome/bonobo-1.0.22.tar.bz2) = 1186349 diff --git a/devel/bonobo/files/patch-ab b/devel/bonobo/files/patch-ab new file mode 100644 index 000000000..7b67117dd --- /dev/null +++ b/devel/bonobo/files/patch-ab @@ -0,0 +1,15 @@ +--- Makefile.in.orig Tue Oct 8 01:30:21 2002 ++++ Makefile.in Tue Oct 8 01:32:12 2002 +@@ -174,10 +174,10 @@ + monikers \ + components samples \ + gshell \ +- tests doc po ++ doc po + + +-confexecdir = $(libdir) ++confexecdir = $(sysconfdir) + confexec_DATA = bonoboConf.sh bonoboxConf.sh bonobox_printConf.sh + + bonoboincludedir = $(includedir)/gnome-1.0 diff --git a/devel/bonobo/files/patch-ad b/devel/bonobo/files/patch-ad new file mode 100644 index 000000000..60a694ace --- /dev/null +++ b/devel/bonobo/files/patch-ad @@ -0,0 +1,12 @@ +--- libefs/libefs-config.in.orig Tue Oct 10 18:36:09 2000 ++++ libefs/libefs-config.in Mon Oct 16 11:20:38 2000 +@@ -55,3 +55,3 @@ + --cflags) +- echo -I@includedir@ ++ echo -I@includedir@ @GLIB_CFLAGS@ + ;; +@@ -59,3 +59,3 @@ + --libs) +- echo -L@libdir@ -lefs -lglib -lz @CRYPTLIB@ ++ echo -L@libdir@ -lefs @GLIB_LIBS@ -lz @CRYPTLIB@ + ;; diff --git a/devel/bonobo/files/patch-components::audio-ulaw::doc::C::Makefile.in b/devel/bonobo/files/patch-components::audio-ulaw::doc::C::Makefile.in new file mode 100644 index 000000000..9743cad67 --- /dev/null +++ b/devel/bonobo/files/patch-components::audio-ulaw::doc::C::Makefile.in @@ -0,0 +1,23 @@ + +$FreeBSD: ports/devel/bonobo/files/patch-components::audio-ulaw::doc::C::Makefile.in,v 1.2 2002/05/02 14:09:08 sobomax Exp $ + +--- components/audio-ulaw/doc/C/Makefile.in 2002/05/01 01:17:50 1.1 ++++ components/audio-ulaw/doc/C/Makefile.in 2002/05/02 14:07:25 +@@ -168,7 +168,7 @@ + cxxflags_set = @cxxflags_set@ + l = @l@ + +-audio_ulaw_helpdir = $(datadir)/bonobo/docs/audio_ulaw/C ++audio_ulaw_helpdir = $(datadir)/help/audio_ulaw/C + + # + # Module configuration information +@@ -288,7 +288,7 @@ + -cp $(module)/index.html . + + $(module)/$(module).html: $(SGML_FILES) +- -db2html $(srcdir)/$(main_module_file) ++ -db2html_foo $(srcdir)/$(main_module_file) + + dist-hook: + mkdir $(distdir)/$(module) diff --git a/devel/bonobo/files/patch-ltmain.sh b/devel/bonobo/files/patch-ltmain.sh new file mode 100644 index 000000000..ecc06ccd0 --- /dev/null +++ b/devel/bonobo/files/patch-ltmain.sh @@ -0,0 +1,41 @@ +--- ltmain.sh.orig Sat Nov 30 21:32:08 2002 ++++ ltmain.sh Tue Dec 3 22:59:51 2002 +@@ -1037,8 +1037,16 @@ + continue + ;; + ++ -pthread) ++ compile_command="$compile_command -pthread" ++ finalize_command="$finalize_command -pthread" ++ compiler_flags="$compiler_flags -pthread" ++ continue ++ ;; ++ + -module) + module=yes ++ build_old_libs=no + continue + ;; + +@@ -2405,7 +2413,7 @@ + # Rhapsody C library is in the System framework + deplibs="$deplibs -framework System" + ;; +- *-*-netbsd*) ++ *-*-netbsd* | *-*-freebsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *) +@@ -4175,10 +4183,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/devel/bonobo/files/patch-monikers::Makefile.in b/devel/bonobo/files/patch-monikers::Makefile.in new file mode 100644 index 000000000..ed1a71440 --- /dev/null +++ b/devel/bonobo/files/patch-monikers::Makefile.in @@ -0,0 +1,11 @@ +--- monikers/Makefile.in.orig Thu Apr 11 17:19:45 2002 ++++ monikers/Makefile.in Thu Apr 11 17:21:09 2002 +@@ -72,7 +72,7 @@ + BONOBO_LIBDIR = @BONOBO_LIBDIR@ + BONOBO_LIBS = @BONOBO_LIBS@ + BONOBO_REVISION = @BONOBO_REVISION@ +-BONOBO_TEST_CFLAGS = @BONOBO_TEST_CFLAGS@ ++BONOBO_TEST_CFLAGS = @BONOBO_TEST_CFLAGS@ @BONOBO_INCLUDEDIR@ + BONOBO_TEST_LIBS = @BONOBO_TEST_LIBS@ + BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ + CATALOGS = @CATALOGS@ diff --git a/devel/bonobo/files/patch-po::Makefile.in.in b/devel/bonobo/files/patch-po::Makefile.in.in new file mode 100644 index 000000000..f9c3c943c --- /dev/null +++ b/devel/bonobo/files/patch-po::Makefile.in.in @@ -0,0 +1,14 @@ + +$FreeBSD: ports/devel/bonobo/files/patch-po::Makefile.in.in,v 1.1 2001/08/21 14:09:52 sobomax Exp $ + +--- po/Makefile.in.in.orig Tue Jul 3 19:44:24 2001 ++++ po/Makefile.in.in Tue Jul 3 19:51:42 2001 +@@ -106,7 +106,7 @@ + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ +- lang=`echo $$cat | sed 's/\.gmo$$//'`; \ ++ lang=`echo $$cat | sed 's/\.mo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then \ diff --git a/devel/bonobo/files/patch-storage-modules::Makefile.in b/devel/bonobo/files/patch-storage-modules::Makefile.in new file mode 100644 index 000000000..783fba3fa --- /dev/null +++ b/devel/bonobo/files/patch-storage-modules::Makefile.in @@ -0,0 +1,12 @@ +--- storage-modules/Makefile.in.orig Tue Oct 8 02:07:53 2002 ++++ storage-modules/Makefile.in Tue Oct 8 02:09:33 2002 +@@ -196,8 +196,7 @@ + libstorage_efs_la_LDFLAGS = \ + $(common_ldflags) \ + -L$(top_builddir)/libefs/src \ +- -lefs +- ++ $(top_builddir)/libefs/src/libefs.la + + # + # File-system based storage diff --git a/devel/bonobo/pkg-descr b/devel/bonobo/pkg-descr new file mode 100644 index 000000000..3b8577a92 --- /dev/null +++ b/devel/bonobo/pkg-descr @@ -0,0 +1,9 @@ +Bonobo is a set of language and system independant CORBA +interfaces for creating reusable components and creating compound +documents. + +The Bonobo distribution includes a Gtk+ based implementation of the +Bonobo interfaces, enabling developers to create reusable components +and applications that can be used to form more complex documents. + +WWW: http://www.gnome.org/ diff --git a/devel/bonobo/pkg-plist b/devel/bonobo/pkg-plist new file mode 100644 index 000000000..4cc3ae908 --- /dev/null +++ b/devel/bonobo/pkg-plist @@ -0,0 +1,253 @@ +bin/bonobo-application-x-mines +bin/bonobo-audio-ulaw +bin/bonobo-echo +bin/bonobo-moniker-gunzip +bin/bonobo-moniker-http +bin/bonobo-sample-canvas-item +bin/bonobo-sample-controls +bin/bonobo-sample-hello +bin/bonobo-sample-paint +bin/bonobo-selector +bin/bonobo-text-plain +bin/echo-client +bin/efstool +bin/gshell +bin/libefs-config +bin/moniker-test +bin/sample-container +bin/sample-control-container +etc/bonoboConf.sh +etc/bonoboxConf.sh +etc/bonobox_printConf.sh +include/efs.h +include/efs_error.h +include/gnome-1.0/bonobo.h +include/gnome-1.0/bonobo/Bonobo.h +include/gnome-1.0/bonobo/bonobo-arg.h +include/gnome-1.0/bonobo/bonobo-async.h +include/gnome-1.0/bonobo/bonobo-canvas-component.h +include/gnome-1.0/bonobo/bonobo-canvas-item.h +include/gnome-1.0/bonobo/bonobo-client-site.h +include/gnome-1.0/bonobo/bonobo-context.h +include/gnome-1.0/bonobo/bonobo-control-frame.h +include/gnome-1.0/bonobo/bonobo-control.h +include/gnome-1.0/bonobo/bonobo-desktop-window.h +include/gnome-1.0/bonobo/bonobo-embeddable.h +include/gnome-1.0/bonobo/bonobo-event-source.h +include/gnome-1.0/bonobo/bonobo-exception.h +include/gnome-1.0/bonobo/bonobo-generic-factory.h +include/gnome-1.0/bonobo/bonobo-item-container.h +include/gnome-1.0/bonobo/bonobo-item-handler.h +include/gnome-1.0/bonobo/bonobo-listener.h +include/gnome-1.0/bonobo/bonobo-main.h +include/gnome-1.0/bonobo/bonobo-moniker-extender.h +include/gnome-1.0/bonobo/bonobo-moniker-simple.h +include/gnome-1.0/bonobo/bonobo-moniker-util.h +include/gnome-1.0/bonobo/bonobo-moniker.h +include/gnome-1.0/bonobo/bonobo-object-client.h +include/gnome-1.0/bonobo/bonobo-object-directory.h +include/gnome-1.0/bonobo/bonobo-object-io.h +include/gnome-1.0/bonobo/bonobo-object.h +include/gnome-1.0/bonobo/bonobo-persist-file.h +include/gnome-1.0/bonobo/bonobo-persist-stream.h +include/gnome-1.0/bonobo/bonobo-persist.h +include/gnome-1.0/bonobo/bonobo-plug.h +include/gnome-1.0/bonobo/bonobo-print-client.h +include/gnome-1.0/bonobo/bonobo-print.h +include/gnome-1.0/bonobo/bonobo-progressive.h +include/gnome-1.0/bonobo/bonobo-property-bag-client.h +include/gnome-1.0/bonobo/bonobo-property-bag-xml.h +include/gnome-1.0/bonobo/bonobo-property-bag.h +include/gnome-1.0/bonobo/bonobo-property-control.h +include/gnome-1.0/bonobo/bonobo-property.h +include/gnome-1.0/bonobo/bonobo-selector-widget.h +include/gnome-1.0/bonobo/bonobo-selector.h +include/gnome-1.0/bonobo/bonobo-shlib-factory.h +include/gnome-1.0/bonobo/bonobo-socket.h +include/gnome-1.0/bonobo/bonobo-storage-plugin.h +include/gnome-1.0/bonobo/bonobo-storage.h +include/gnome-1.0/bonobo/bonobo-stream-client.h +include/gnome-1.0/bonobo/bonobo-stream-memory.h +include/gnome-1.0/bonobo/bonobo-stream.h +include/gnome-1.0/bonobo/bonobo-transient.h +include/gnome-1.0/bonobo/bonobo-ui-component.h +include/gnome-1.0/bonobo/bonobo-ui-config-widget.h +include/gnome-1.0/bonobo/bonobo-ui-container.h +include/gnome-1.0/bonobo/bonobo-ui-engine.h +include/gnome-1.0/bonobo/bonobo-ui-node.h +include/gnome-1.0/bonobo/bonobo-ui-sync.h +include/gnome-1.0/bonobo/bonobo-ui-toolbar-button-item.h +include/gnome-1.0/bonobo/bonobo-ui-toolbar-icon.h +include/gnome-1.0/bonobo/bonobo-ui-toolbar-item.h +include/gnome-1.0/bonobo/bonobo-ui-toolbar-toggle-button-item.h +include/gnome-1.0/bonobo/bonobo-ui-util.h +include/gnome-1.0/bonobo/bonobo-view-frame.h +include/gnome-1.0/bonobo/bonobo-view.h +include/gnome-1.0/bonobo/bonobo-widget.h +include/gnome-1.0/bonobo/bonobo-win.h +include/gnome-1.0/bonobo/bonobo-wrapper.h +include/gnome-1.0/bonobo/bonobo-xobject.h +include/gnome-1.0/bonobo/bonobo-zoomable-frame.h +include/gnome-1.0/bonobo/bonobo-zoomable.h +lib/bonobo/monikers/libmoniker_std.so +lib/bonobo/plugin/libstorage_efs.so +lib/bonobo/plugin/libstorage_fs.so +lib/libbonobo-print.a +lib/libbonobo-print.so +lib/libbonobo-print.so.2 +lib/libbonobo.a +lib/libbonobo.so +lib/libbonobo.so.2 +lib/libbonobox.a +lib/libbonobox.so +lib/libbonobox.so.2 +lib/libefs.a +lib/libefs.so +lib/libefs.so.1 +libdata/pkgconfig/libefs.pc +%%DOCSDIR%%/bonobo-api.html +%%DOCSDIR%%/bonobo-api.sgml +%%DOCSDIR%%/bonobo-decl.txt +%%DOCSDIR%%/bonobo-sections.txt +%%DOCSDIR%%/bonobo.hierarchy +%%DOCSDIR%%/bonobo.signals +%%DOCSDIR%%/bonobo.types +%%DOCSDIR%%/bonobo/bonobo-bonobo-arg.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-async.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-canvas-component.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-canvas-item.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-client-site.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-context.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-control-frame.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-control.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-embeddable.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-event-source.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-exception.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-generic-factory.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-item-container.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-item-handler.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-listener.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-main.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-moniker-extender.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-moniker-simple.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-moniker-util.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-moniker.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-object-client.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-object.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-persist-file.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-persist-stream.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-persist.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-plug.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-print-client.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-print.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-property-bag-client.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-property-bag-xml.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-property-bag.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-property-control.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-selector.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-socket.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-storage-plugin.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-storage.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-stream-client.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-stream-memory.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-stream.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-transient.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-ui-component.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-ui-container.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-ui-engine.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-ui-node.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-ui-sync.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-ui-util.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-view-frame.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-view.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-widget.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-win.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-wrapper.html +%%DOCSDIR%%/bonobo/bonobo-bonobo-xobject.html +%%DOCSDIR%%/bonobo/bonobo-controls.html +%%DOCSDIR%%/bonobo/bonobo-core.html +%%DOCSDIR%%/bonobo/bonobo-documents.html +%%DOCSDIR%%/bonobo/bonobo-moniker-handlers.html +%%DOCSDIR%%/bonobo/bonobo-notification.html +%%DOCSDIR%%/bonobo/bonobo-object-activation.html +%%DOCSDIR%%/bonobo/bonobo-print.html +%%DOCSDIR%%/bonobo/bonobo-properties.html +%%DOCSDIR%%/bonobo/bonobo-storage.html +%%DOCSDIR%%/bonobo/bonobo-support-utilities.html +%%DOCSDIR%%/bonobo/bonobo-ui.html +%%DOCSDIR%%/bonobo/bonobo-view.html +%%DOCSDIR%%/bonobo/book1.html +share/gnome/help/audio_ulaw/C/index.html +share/gnome/idl/Bonobo.idl +share/gnome/idl/Bonobo_Advise.idl +share/gnome/idl/Bonobo_Canvas.idl +share/gnome/idl/Bonobo_ClientSite.idl +share/gnome/idl/Bonobo_Context.idl +share/gnome/idl/Bonobo_Control.idl +share/gnome/idl/Bonobo_Desktop.idl +share/gnome/idl/Bonobo_Embeddable.idl +share/gnome/idl/Bonobo_Exception.idl +share/gnome/idl/Bonobo_ItemContainer.idl +share/gnome/idl/Bonobo_Listener.idl +share/gnome/idl/Bonobo_Moniker.idl +share/gnome/idl/Bonobo_Persist.idl +share/gnome/idl/Bonobo_Print.idl +share/gnome/idl/Bonobo_Progressive.idl +share/gnome/idl/Bonobo_Property.idl +share/gnome/idl/Bonobo_Sample_Echo.idl +share/gnome/idl/Bonobo_Storage.idl +share/gnome/idl/Bonobo_UI.idl +share/gnome/idl/Bonobo_Unknown.idl +share/gnome/idl/Bonobo_Zoomable.idl +share/gnome/oaf/Bonobo_Moniker_gzip.oaf +share/gnome/oaf/Bonobo_Moniker_http.oaf +share/gnome/oaf/Bonobo_Moniker_std.oaf +share/gnome/oaf/Bonobo_Sample_Audio.oaf +share/gnome/oaf/Bonobo_Sample_CanvasItem.oaf +share/gnome/oaf/Bonobo_Sample_Controls.oaf +share/gnome/oaf/Bonobo_Sample_Echo.oaf +share/gnome/oaf/Bonobo_Sample_Hello.oafinfo +share/gnome/oaf/Bonobo_Sample_Mines.oaf +share/gnome/oaf/Bonobo_Sample_Paint.oaf +share/gnome/oaf/Bonobo_Sample_Text.oaf +share/gnome/oaf/Bonobo_Selector.oaf +share/gnome/ui/gshell-ui.xml +share/locale/az/LC_MESSAGES/bonobo.mo +share/locale/ca/LC_MESSAGES/bonobo.mo +share/locale/da/LC_MESSAGES/bonobo.mo +share/locale/de/LC_MESSAGES/bonobo.mo +share/locale/el/LC_MESSAGES/bonobo.mo +share/locale/en_GB/LC_MESSAGES/bonobo.mo +share/locale/es/LC_MESSAGES/bonobo.mo +share/locale/eu/LC_MESSAGES/bonobo.mo +share/locale/fi/LC_MESSAGES/bonobo.mo +share/locale/fr/LC_MESSAGES/bonobo.mo +share/locale/ga/LC_MESSAGES/bonobo.mo +share/locale/gl/LC_MESSAGES/bonobo.mo +share/locale/hu/LC_MESSAGES/bonobo.mo +share/locale/it/LC_MESSAGES/bonobo.mo +share/locale/ja/LC_MESSAGES/bonobo.mo +share/locale/ko/LC_MESSAGES/bonobo.mo +share/locale/lt/LC_MESSAGES/bonobo.mo +share/locale/nl/LC_MESSAGES/bonobo.mo +share/locale/no/LC_MESSAGES/bonobo.mo +share/locale/pl/LC_MESSAGES/bonobo.mo +share/locale/pt/LC_MESSAGES/bonobo.mo +share/locale/pt_BR/LC_MESSAGES/bonobo.mo +share/locale/ro/LC_MESSAGES/bonobo.mo +share/locale/ru/LC_MESSAGES/bonobo.mo +share/locale/sk/LC_MESSAGES/bonobo.mo +share/locale/sl/LC_MESSAGES/bonobo.mo +share/locale/sv/LC_MESSAGES/bonobo.mo +share/locale/tr/LC_MESSAGES/bonobo.mo +share/locale/uk/LC_MESSAGES/bonobo.mo +share/locale/wa/LC_MESSAGES/bonobo.mo +share/locale/zh_CN/LC_MESSAGES/bonobo.mo +share/locale/zh_TW/LC_MESSAGES/bonobo.mo +@dirrm share/gnome/help/audio_ulaw/C/images +@dirrm share/gnome/help/audio_ulaw/C +@dirrm share/gnome/help/audio_ulaw +@dirrm %%DOCSDIR%%/libefs +@dirrm %%DOCSDIR%%/bonobo +@dirrm %%DOCSDIR%% +@dirrm include/gnome-1.0/bonobo diff --git a/devel/gconf/Makefile b/devel/gconf/Makefile new file mode 100644 index 000000000..8f22753d5 --- /dev/null +++ b/devel/gconf/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: gconf +# Date created: 28th June 2000 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= gconf +PORTVERSION= 1.0.9 +PORTREVISION= 9 +CATEGORIES= devel gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/GConf/1.0 +DISTNAME= GConf-${PORTVERSION} +DIST_SUBDIR= gnome + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A configuration database system for GNOME + +LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile + +USE_BZIP2= yes +USE_GMAKE= yes +USE_XLIB= yes +USE_GNOME= gnomeprefix gnomehack gnometarget glib12 gtk12 oaf libxml orbit +USE_GETTEXT= yes +INSTALLS_SHLIB= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +.include <bsd.port.mk> diff --git a/devel/gconf/distinfo b/devel/gconf/distinfo new file mode 100644 index 000000000..f8346dd4f --- /dev/null +++ b/devel/gconf/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome/GConf-1.0.9.tar.bz2) = 613aea1d9b7a9c504f52217451c7bf99 +SHA256 (gnome/GConf-1.0.9.tar.bz2) = 863c3dd3e72cf7d35eff7497b833978cc28a9f9d12d7caeb9d61ea785731cb19 +SIZE (gnome/GConf-1.0.9.tar.bz2) = 784363 diff --git a/devel/gconf/files/patch-backends::bdb-backend.c b/devel/gconf/files/patch-backends::bdb-backend.c new file mode 100644 index 000000000..a26a977ff --- /dev/null +++ b/devel/gconf/files/patch-backends::bdb-backend.c @@ -0,0 +1,17 @@ + +$FreeBSD: ports/devel/gconf/files/patch-backends::bdb-backend.c,v 1.1 2001/08/03 07:17:43 sobomax Exp $ + +--- backends/bdb-backend.c 2001/08/02 17:59:13 1.1 ++++ backends/bdb-backend.c 2001/08/02 18:03:23 +@@ -25,10 +25,9 @@ + #include <gconf/gconf-internals.h> + #include <gconf/gconf.h> + ++#include "config.h" + #include "bdb.h" + #include "dir-utils.h" +- +-#include <db.h> + + #include <stdio.h> + #include <time.h> diff --git a/devel/gconf/files/patch-configure b/devel/gconf/files/patch-configure new file mode 100644 index 000000000..ef88b8857 --- /dev/null +++ b/devel/gconf/files/patch-configure @@ -0,0 +1,19 @@ +--- configure.orig Thu Mar 14 23:10:03 2002 ++++ configure Thu Jul 17 21:08:37 2003 +@@ -6804,6 +6804,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' +@@ -7945,7 +7946,7 @@ + BDB_LIBS= + BDB_CFLAGS= + +-for dblib in db-3.3 db-3.2 db-3.1 db-3; do ++for dblib in ""; do + as_ac_Lib=`echo "ac_cv_lib_$dblib''_db_env_create" | $as_tr_sh` + echo "$as_me:7950: checking for db_env_create in -l$dblib" >&5 + echo $ECHO_N "checking for db_env_create in -l$dblib... $ECHO_C" >&6 diff --git a/devel/gconf/files/patch-gconf::gconf-internals.c b/devel/gconf/files/patch-gconf::gconf-internals.c new file mode 100644 index 000000000..3acab80ce --- /dev/null +++ b/devel/gconf/files/patch-gconf::gconf-internals.c @@ -0,0 +1,69 @@ +--- gconf/gconf-internals.c.orig Mon Sep 29 22:35:14 2003 ++++ gconf/gconf-internals.c Mon Sep 29 22:35:16 2003 +@@ -28,6 +28,9 @@ + #include <string.h> + #include <sys/stat.h> + #include <sys/types.h> ++#include <sys/socket.h> ++#include <netinet/in.h> ++#include <arpa/inet.h> + #include <unistd.h> + #include <stdlib.h> + #include <stdio.h> +@@ -2948,7 +2951,21 @@ + char* + gconf_get_daemon_dir (void) + { +- return g_strconcat (g_get_home_dir (), "/.gconfd", NULL); ++ if (gconf_use_local_locks ()) ++ { ++ char *s; ++ char *subdir; ++ ++ subdir = g_strconcat ("gconfd-", g_get_user_name (), NULL); ++ ++ s = g_strconcat (g_get_tmp_dir (), G_DIR_SEPARATOR_S, subdir, NULL); ++ ++ g_free (subdir); ++ ++ return s; ++ } ++ else ++ return g_strconcat (g_get_home_dir (), "/.gconfd", NULL); + } + + char* +@@ -3040,6 +3057,8 @@ + + if (gconf_file_exists (GCONF_BINDIR"/gconfd-2")) + argv[0] = g_strconcat (GCONF_BINDIR, "/gconfd-2", NULL); ++ else if (gconf_file_exists (GCONF_PREFIX"/libexec/gconfd-2")) ++ argv[0] = g_strconcat (GCONF_PREFIX, "/libexec/gconfd-2", NULL); + else + argv[0] = g_strconcat (GCONF_BINDIR, "/" GCONFD, NULL); + +@@ -4357,4 +4376,24 @@ + return FALSE; + else + return TRUE; ++} ++ ++enum { UNKNOWN, LOCAL, NORMAL }; ++ ++gboolean ++gconf_use_local_locks (void) ++{ ++ static int local_locks = UNKNOWN; ++ ++ if (local_locks == UNKNOWN) ++ { ++ const char *l = ++ g_getenv ("GCONF_GLOBAL_LOCKS"); ++ ++ if (l && atoi (l) == 1) ++ local_locks = NORMAL; ++ else ++ local_locks = LOCAL; ++ } ++ return local_locks == LOCAL; + } diff --git a/devel/gconf/files/patch-gconf_Makefile.in b/devel/gconf/files/patch-gconf_Makefile.in new file mode 100644 index 000000000..3e7637f9f --- /dev/null +++ b/devel/gconf/files/patch-gconf_Makefile.in @@ -0,0 +1,10 @@ +--- gconf/Makefile.in.orig Fri Sep 27 00:28:12 2002 ++++ gconf/Makefile.in Fri Sep 27 00:28:46 2002 +@@ -154,6 +154,7 @@ + -DGCONF_ETCDIR=\""$(sysconfdir)/gconf"\" \ + -DGCONF_BUILDDIR=\""$(top_builddir)"\" \ + -DGCONF_BINDIR=\""$(bindir)"\" \ ++ -DGCONF_PREFIX=\""$(prefix)"\" \ + -DGCONF_BACKEND_DIR=\""$(pkglibdir)/$(MAJOR_VERSION)"\" \ + -DVERSION=\""$(VERSION)"\" \ + -DIID=\""OAFIID:gconfd:19991118"\" \ diff --git a/devel/gconf/pkg-descr b/devel/gconf/pkg-descr new file mode 100644 index 000000000..c4f8b27a2 --- /dev/null +++ b/devel/gconf/pkg-descr @@ -0,0 +1,4 @@ +GConf is a configuration database system for the GNOME desktop, +functionally similar to the Windows registry but lots better :-) + +WWW: http://www.gnome.org/projects/gconf/ diff --git a/devel/gconf/pkg-plist b/devel/gconf/pkg-plist new file mode 100644 index 000000000..7ff843231 --- /dev/null +++ b/devel/gconf/pkg-plist @@ -0,0 +1,66 @@ +bin/gconf-config +bin/gconf-config-1 +bin/gconf-sanity-check-1 +bin/gconfd-1 +bin/gconftool +bin/gconftool-1 +etc/gconf/1/path +etc/gconf/schemas/desktop.schemas +include/gconf/1/gconf/gconf-changeset.h +include/gconf/1/gconf/gconf-client.h +include/gconf/1/gconf/gconf-engine.h +include/gconf/1/gconf/gconf-error.h +include/gconf/1/gconf/gconf-glib-public.h +include/gconf/1/gconf/gconf-listeners.h +include/gconf/1/gconf/gconf-schema.h +include/gconf/1/gconf/gconf-value.h +include/gconf/1/gconf/gconf.h +lib/GConf/1/libgconfbackend-xml.a +lib/GConf/1/libgconfbackend-xml.la +lib/GConf/1/libgconfbackend-xml.so +lib/libgconf-1.a +lib/libgconf-1.la +lib/libgconf-1.so +lib/libgconf-1.so.1 +lib/libgconf-gtk-1.a +lib/libgconf-gtk-1.la +lib/libgconf-gtk-1.so +lib/libgconf-gtk-1.so.1 +libdata/pkgconfig/gconf.pc +libdata/pkgconfig/gconfgtk.pc +share/aclocal/gconf-1.m4 +share/locale/az/LC_MESSAGES/GConf.mo +share/locale/ca/LC_MESSAGES/GConf.mo +share/locale/cs/LC_MESSAGES/GConf.mo +share/locale/da/LC_MESSAGES/GConf.mo +share/locale/de/LC_MESSAGES/GConf.mo +share/locale/el/LC_MESSAGES/GConf.mo +share/locale/es/LC_MESSAGES/GConf.mo +share/locale/eu/LC_MESSAGES/GConf.mo +share/locale/fi/LC_MESSAGES/GConf.mo +share/locale/fr/LC_MESSAGES/GConf.mo +share/locale/ga/LC_MESSAGES/GConf.mo +share/locale/gl/LC_MESSAGES/GConf.mo +share/locale/hu/LC_MESSAGES/GConf.mo +share/locale/it/LC_MESSAGES/GConf.mo +share/locale/ja/LC_MESSAGES/GConf.mo +share/locale/ko/LC_MESSAGES/GConf.mo +share/locale/nl/LC_MESSAGES/GConf.mo +share/locale/nn/LC_MESSAGES/GConf.mo +share/locale/no/LC_MESSAGES/GConf.mo +share/locale/pl/LC_MESSAGES/GConf.mo +share/locale/pt/LC_MESSAGES/GConf.mo +share/locale/pt_BR/LC_MESSAGES/GConf.mo +share/locale/ru/LC_MESSAGES/GConf.mo +share/locale/sk/LC_MESSAGES/GConf.mo +share/locale/sl/LC_MESSAGES/GConf.mo +share/locale/sv/LC_MESSAGES/GConf.mo +share/locale/tr/LC_MESSAGES/GConf.mo +share/locale/uk/LC_MESSAGES/GConf.mo +share/locale/zh_CN/LC_MESSAGES/GConf.mo +@dirrm share/gnome/gconf/1 +@dirrm share/gnome/gconf +@dirrm lib/GConf/1 +@dirrm include/gconf/1/gconf +@dirrm include/gconf/1 +@dirrm etc/gconf/1 |