/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* evolution-shell-component.c * * Copyright (C) 2000, 2001 Ximian, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * Author: Ettore Perazzoli */ #ifdef HAVE_CONFIG_H #include #endif #include "evolution-shell-component.h" #include #include #include #include #include #include "Evolution.h" #define PARENT_TYPE BONOBO_X_OBJECT_TYPE static GtkObjectClass *parent_class = NULL; struct _EvolutionShellComponentPrivate { GList *folder_types; /* EvolutionShellComponentFolderType */ EvolutionShellComponentCreateViewFn create_view_fn; EvolutionShellComponentCreateFolderFn create_folder_fn; EvolutionShellComponentRemoveFolderFn remove_folder_fn; EvolutionShellComponentXferFolderFn xfer_folder_fn; EvolutionShellComponentPopulateFolderContextMenuFn populate_folder_context_menu_fn; EvolutionShellComponentGetDndSelectionFn get_dnd_selection_fn; EvolutionShellClient *owner_client; void *closure; }; enum { OWNER_SET, OWNER_UNSET, DEBUG, LAST_SIGNAL }; static guint signals[LAST_SIGNAL] = { 0 }; /* Helper functions. */ /* Notice that, if passed a NULL pointer, this string will construct a zero-element NULL-terminated string array instead of returning NULL itself (i.e. it will return a pointer to a single g_malloc()ed NULL pointer). */ static char ** duplicate_null_terminated_string_array (char *array[]) { char **new; int count; int i; if (array == NULL) { count = 0; } else { for (count = 0; array[count] != NULL; count++) ; } new = g_new (char *, count + 1); for (i = 0; i < count; i++) new[i] = g_strdup (array[i]); new[count] = NULL; return new; } /* The following will create a CORBA sequence of strings from the specified * NULL-terminated array, without duplicating the strings. */ static void fill_corba_sequence_from_null_terminated_string_array (CORBA_sequence_CORBA_string *corba_sequence, char **array) { int count; int i; g_assert (corba_sequence != NULL); g_assert (array != NULL); /* We won't be reallocating the strings, so we don't want them to be freed when the sequence is freed. */ CORBA_sequence_set_release (corba_sequence, FALSE); count = 0; while (array[count] != NULL) count++; corba_sequence->_maximum = count; corba_sequence->_length = count; corba_sequence->_buffer = CORBA_sequence_CORBA_string_allocbuf (count); for (i = 0; i < count; i++) corba_sequence->_buffer[i] = (CORBA_char *) array[i]; } /* CORBA interface implementation. */ static GNOME_Evolution_FolderTypeList * impl_ShellComponent__get_supported_types (PortableServer_Servant servant, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; GNOME_Evolution_FolderTypeList *folder_type_list; unsigned int i; GList *p; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; folder_type_list = GNOME_Evolution_FolderTypeList__alloc (); CORBA_sequence_set_release (folder_type_list, TRUE); folder_type_list->_length = g_list_length (priv->folder_types); folder_type_list->_maximum = folder_type_list->_length; folder_type_list->_buffer = CORBA_sequence_GNOME_Evolution_FolderType_allocbuf (folder_type_list->_maximum); for (p = priv->folder_types, i = 0; p != NULL; p = p->next, i++) { GNOME_Evolution_FolderType *corba_folder_type; EvolutionShellComponentFolderType *folder_type; folder_type = (EvolutionShellComponentFolderType *) p->data; corba_folder_type = folder_type_list->_buffer + i; corba_folder_type->name = CORBA_string_dup (folder_type->name); corba_folder_type->icon_name = CORBA_string_dup (folder_type->icon_name); fill_corba_sequence_from_null_terminated_string_array (& corba_folder_type->accepted_dnd_types, folder_type->accepted_dnd_types); fill_corba_sequence_from_null_terminated_string_array (& corba_folder_type->exported_dnd_types, folder_type->exported_dnd_types); } return folder_type_list; } static void impl_ShellComponent_set_owner (PortableServer_Servant servant, const GNOME_Evolution_Shell shell, const CORBA_char *evolution_homedir, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; GNOME_Evolution_Shell shell_duplicate; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; if (priv->owner_client != NULL) { CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_ShellComponent_AlreadyOwned, NULL); return; } shell_duplicate = CORBA_Object_duplicate (shell, ev); if (ev->_major == CORBA_NO_EXCEPTION) { priv->owner_client = evolution_shell_client_new (shell_duplicate); gtk_signal_emit (GTK_OBJECT (shell_component), signals[OWNER_SET], priv->owner_client, evolution_homedir); } } static void impl_ShellComponent_unset_owner (PortableServer_Servant servant, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; if (priv->owner_client == NULL) { CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_ShellComponent_NotOwned, NULL); return; } bonobo_object_unref (BONOBO_OBJECT (priv->owner_client)); priv->owner_client = NULL; gtk_signal_emit (GTK_OBJECT (shell_component), signals[OWNER_UNSET]); } static void impl_ShellComponent_debug (PortableServer_Servant servant, const CORBA_char *log_path, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; int fd; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); fd = open (log_path, O_WRONLY | O_APPEND); if (!fd) return; dup2 (fd, STDOUT_FILENO); dup2 (fd, STDERR_FILENO); close (fd); gtk_signal_emit (GTK_OBJECT (shell_component), signals[DEBUG]); } static Bonobo_Control impl_ShellComponent_create_view (PortableServer_Servant servant, const CORBA_char *physical_uri, const CORBA_char *type, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; EvolutionShellComponentResult result; BonoboControl *control; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; result = (* priv->create_view_fn) (shell_component, physical_uri, type, &control, priv->closure); if (result != EVOLUTION_SHELL_COMPONENT_OK) { switch (result) { case EVOLUTION_SHELL_COMPONENT_UNSUPPORTEDTYPE: CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_ShellComponent_UnsupportedType, NULL); break; case EVOLUTION_SHELL_COMPONENT_INTERNALERROR: CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_ShellComponent_InternalError, NULL); break; default: CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_ShellComponent_NotFound, NULL); } return CORBA_OBJECT_NIL; } return CORBA_Object_duplicate (bonobo_object_corba_objref (BONOBO_OBJECT (control)), ev); } static void impl_ShellComponent_async_create_folder (PortableServer_Servant servant, const GNOME_Evolution_ShellComponentListener listener, const CORBA_char *physical_uri, const CORBA_char *type, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; if (priv->create_folder_fn == NULL) { GNOME_Evolution_ShellComponentListener_notifyResult (listener, GNOME_Evolution_ShellComponentListener_UNSUPPORTED_OPERATION, ev); return; } (* priv->create_folder_fn) (shell_component, physical_uri, type, listener, priv->closure); } static void impl_ShellComponent_async_remove_folder (PortableServer_Servant servant, const GNOME_Evolution_ShellComponentListener listener, const CORBA_char *physical_uri, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; if (priv->remove_folder_fn == NULL) { GNOME_Evolution_ShellComponentListener_notifyResult (listener, GNOME_Evolution_ShellComponentListener_UNSUPPORTED_OPERATION, ev); return; } (* priv->remove_folder_fn) (shell_component, physical_uri, listener, priv->closure); } static void impl_ShellComponent_async_xfer_folder (PortableServer_Servant servant, const GNOME_Evolution_ShellComponentListener listener, const CORBA_char *source_physical_uri, const CORBA_char *destination_physical_uri, const CORBA_boolean remove_source, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; if (priv->xfer_folder_fn == NULL) { GNOME_Evolution_ShellComponentListener_notifyResult (listener, GNOME_Evolution_ShellComponentListener_UNSUPPORTED_OPERATION, ev); return; } (* priv->xfer_folder_fn) (shell_component, source_physical_uri, destination_physical_uri, remove_source, listener, priv->closure); } static void impl_ShellComponent_populate_folder_context_menu (PortableServer_Servant servant, const Bonobo_UIContainer corba_uih, const CORBA_char *physical_uri, const CORBA_char *type, CORBA_Environment *ev) { BonoboObject *bonobo_object; EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; BonoboUIComponent *uic; bonobo_object = bonobo_object_from_servant (servant); shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; if (priv->populate_folder_context_menu_fn == NULL) return; uic = bonobo_ui_component_new_default (); bonobo_ui_component_set_container (uic, corba_uih); bonobo_object_release_unref (corba_uih, NULL); (* priv->populate_folder_context_menu_fn) (shell_component, uic, physical_uri, type, priv->closure); bonobo_object_unref (BONOBO_OBJECT (uic)); } /* GtkObject methods. */ static void destroy (GtkObject *object) { EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; CORBA_Environment ev; GList *p; shell_component = EVOLUTION_SHELL_COMPONENT (object); priv = shell_component->priv; CORBA_exception_init (&ev); if (priv->owner_client != NULL) bonobo_object_unref (BONOBO_OBJECT (priv->owner_client)); CORBA_exception_free (&ev); for (p = priv->folder_types; p != NULL; p = p->next) { EvolutionShellComponentFolderType *folder_type; folder_type = (EvolutionShellComponentFolderType *) p->data; g_free (folder_type->name); g_free (folder_type->icon_name); g_strfreev (folder_type->exported_dnd_types); g_strfreev (folder_type->accepted_dnd_types); g_free (folder_type); } g_list_free (priv->folder_types); g_free (priv); parent_class->destroy (object); } /* Initialization. */ static void class_init (EvolutionShellComponentClass *klass) { GtkObjectClass *object_class; POA_GNOME_Evolution_ShellComponent__epv *epv = &klass->epv; object_class = GTK_OBJECT_CLASS (klass); object_class->destroy = destroy; signals[OWNER_SET] = gtk_signal_new ("owner_set", GTK_RUN_FIRST, object_class->type, GTK_SIGNAL_OFFSET (EvolutionShellComponentClass, owner_set), gtk_marshal_NONE__POINTER_POINTER, GTK_TYPE_NONE, 2, GTK_TYPE_POINTER, GTK_TYPE_POINTER); signals[OWNER_UNSET] = gtk_signal_new ("owner_unset", GTK_RUN_FIRST, object_class->type, GTK_SIGNAL_OFFSET (EvolutionShellComponentClass, owner_unset), gtk_marshal_NONE__NONE, GTK_TYPE_NONE, 0); signals[DEBUG] = gtk_signal_new ("debug", GTK_RUN_FIRST, object_class->type, GTK_SIGNAL_OFFSET (EvolutionShellComponentClass, debug), gtk_marshal_NONE__NONE, GTK_TYPE_NONE, 0); gtk_object_class_add_signals (object_class, signals, LAST_SIGNAL); parent_class = gtk_type_class (PARENT_TYPE); epv->_get_supported_types = impl_ShellComponent__get_supported_types; epv->setOwner = impl_ShellComponent_set_owner; epv->unsetOwner = impl_ShellComponent_unset_owner; epv->debug = impl_ShellComponent_debug; epv->createView = impl_ShellComponent_create_view; epv->createFolderAsync = impl_ShellComponent_async_create_folder; epv->removeFolderAsync = impl_ShellComponent_async_remove_folder; epv->xferFolderAsync = impl_ShellComponent_async_xfer_folder; epv->populateFolderContextMenu = impl_ShellComponent_populate_folder_context_menu; } static void init (EvolutionShellComponent *shell_component) { EvolutionShellComponentPrivate *priv; priv = g_new (EvolutionShellComponentPrivate, 1); priv->folder_types = NULL; priv->create_view_fn = NULL; priv->create_folder_fn = NULL; priv->remove_folder_fn = NULL; priv->xfer_folder_fn = NULL; priv->populate_folder_context_menu_fn = NULL; priv->owner_client = NULL; priv->closure = NULL; shell_component->priv = priv; } void evolution_shell_component_construct (EvolutionShellComponent *shell_component, const EvolutionShellComponentFolderType folder_types[], EvolutionShellComponentCreateViewFn create_view_fn, EvolutionShellComponentCreateFolderFn create_folder_fn, EvolutionShellComponentRemoveFolderFn remove_folder_fn, EvolutionShellComponentXferFolderFn xfer_folder_fn, EvolutionShellComponentPopulateFolderContextMenuFn populate_folder_context_menu_fn, EvolutionShellComponentGetDndSelectionFn get_dnd_selection_fn, void *closure) { EvolutionShellComponentPrivate *priv; int i; g_return_if_fail (shell_component != NULL); priv = shell_component->priv; priv->create_view_fn = create_view_fn; priv->create_folder_fn = create_folder_fn; priv->remove_folder_fn = remove_folder_fn; priv->xfer_folder_fn = xfer_folder_fn; priv->populate_folder_context_menu_fn = populate_folder_context_menu_fn; priv->get_dnd_selection_fn = get_dnd_selection_fn; priv->closure = closure; for (i = 0; folder_types[i].name != NULL; i++) { EvolutionShellComponentFolderType *new; if (folder_types[i].icon_name == NULL || folder_types[i].name[0] == '\0' || folder_types[i].icon_name[0] == '\0') continue; new = g_new (EvolutionShellComponentFolderType, 1); new->name = g_strdup (folder_types[i].name); new->icon_name = g_strdup (folder_types[i].icon_name); new->accepted_dnd_types = duplicate_null_terminated_string_array (folder_types[i].accepted_dnd_types); new->exported_dnd_types = duplicate_null_terminated_string_array (folder_types[i].exported_dnd_types); priv->folder_types = g_list_prepend (priv->folder_types, new); } if (priv->folder_types == NULL) g_warning ("No valid folder types constructing EShellComponent %p", shell_component); } EvolutionShellComponent * evolution_shell_component_new (const EvolutionShellComponentFolderType folder_types[], EvolutionShellComponentCreateViewFn create_view_fn, EvolutionShellComponentCreateFolderFn create_folder_fn, EvolutionShellComponentRemoveFolderFn remove_folder_fn, EvolutionShellComponentXferFolderFn xfer_folder_fn, EvolutionShellComponentPopulateFolderContextMenuFn populate_folder_context_menu_fn, EvolutionShellComponentGetDndSelectionFn get_dnd_selection_fn, void *closure) { EvolutionShellComponent *new; new = gtk_type_new (evolution_shell_component_get_type ()); evolution_shell_component_construct (new, folder_types, create_view_fn, create_folder_fn, remove_folder_fn, xfer_folder_fn, populate_folder_context_menu_fn, get_dnd_selection_fn, closure); return new; } EvolutionShellClient * evolution_shell_component_get_owner (EvolutionShellComponent *shell_component) { g_return_val_if_fail (shell_component != NULL, NULL); g_return_val_if_fail (EVOLUTION_IS_SHELL_COMPONENT (shell_component), NULL); return shell_component->priv->owner_client; } E_MAKE_X_TYPE (evolution_shell_component, "EvolutionShellComponent", EvolutionShellComponent, class_init, init, PARENT_TYPE, POA_GNOME_Evolution_ShellComponent__init, GTK_STRUCT_OFFSET (EvolutionShellComponentClass, epv)); cessful server installationdelphij2007-03-201-1/+2 * Add a couple of @cwd's in order to make @dirrmtry reallydelphij2007-02-261-0/+2 * Update to OpenLDAP 2.4.4a.delphij2007-02-215-24/+50 * - Use newly added RC_SUBR_SUFFIXrafan2007-02-011-6/+1 * OpenLDAP 2.4 is still in alpha stage and is not suitable for production,delphij2007-01-161-1/+2 * o Respect PTHREAD_LIBS=ANY (like -lthr). [1]delphij2006-11-301-2/+4 * Update to 2.4.3alpha.delphij2006-09-272-5/+5 * Switch to root's credential during pre-install stage. This fixesdelphij2006-07-171-1/+1 * PlanetMirror appears to add a page which fetch(1) do not like, so remove itdelphij2006-06-021-1/+0 * Merged from openldap23-server:delphij2006-05-262-7/+17 * Update to 2.4.2alpha after repocopy.delphij2006-05-2611-144/+161 * Remove USE_REINPLACE from all categories starting with Nedwin2006-05-121-1/+0 * - OPTIONS revision: resort, add newsem2006-04-181-13/+58 * Correct a bug that makes inversed logic for SHELL backend.delphij2006-04-161-3/+3 * - A new maintainersem2006-04-161-1/+1 * - Update to 2.3.21 (a bugfix release)sem2006-04-163-26/+4 * Reset vsevolod as maintainer due to unreponsiveness. We hope to see himlinimon2006-04-151-1/+1 * - One more --with-ldbm -> --enable-ldbm forgotten on the last commitsem2006-04-101-1/+1 * - Update to 2.3.20 (including a client library mutex leak fix,sem2006-04-054-6/+28 * Conversion to a single libtool environment.ade2006-02-233-17/+31 * - Update to 2.3.19vsevolod2006-02-224-21/+21 * Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.dougb2006-02-212-2/+2 * SHA256ifyedwin2006-01-231-0/+1 * Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-221-2/+2 * Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-221-1/+1 * Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentade2005-11-151-2/+2 * - Update to 2.3.11vsevolod2005-10-192-3/+3 * - Update to 2.3.10vsevolod2005-10-192-3/+3 * Update to 2.3.9vsevolod2005-10-123-5/+6 * Remove two dead mirrors of openldap.vsevolod2005-09-291-2/+0 * Update to 2.3.7 [1]vsevolod2005-09-1510-116/+107 * Update my email address.vsevolod2005-07-221-1/+1 * - Add knob for Syncprov overlaypav2005-06-301-4/+9 * - Add knobs for Unique and Password Policy overlayspav2005-06-301-0/+10 * Remove warning about alpha quality in package message.novel2005-06-291-9/+0 * - Update to 2.3.4sem2005-06-155-10/+9 * Fix the client's packing list.jylefort2005-05-202-1/+3 * - Update to 2.3.3beta [1]jylefort2005-05-165-12/+30 * Fix leftover files noticed by the pointyhat run.edwin2005-05-064-1/+6 * New ports: net/openldap23[-server, -client, -sasl-server, -sasl-server]edwin2005-05-0518-0/+1122 * Remove repo-copies requested and performed 5 weeks ago but neverkris2005-03-2720-1117/+0 * Update to OpenLDAP 2.2.23:eik2005-02-035-21/+62 * update to OpenLDAP 2.2.19:eik2004-11-304-12/+18 * - update to version 2.2.18eik2004-10-254-9/+4 * - update to version 2.2.17eik2004-10-123-6/+21 * update to 2.2.15eik2004-08-169-171/+217 * update to 2.2.14eik2004-06-192-3/+3 * update to 2.2.13eik2004-06-112-3/+3 * update to 2.2.12eik2004-06-062-3/+3 * Sync with new bsd.autotools.mkade2004-06-051-1/+1 * Update net/openldap22-* to 2.2.11 and follow the OpenLDAP soname change:eik2004-05-276-47/+21 * Fix iODBC detection on 4.xeik2004-05-081-0/+20 * Fix upgrading via portupgrade, reported by Chuck Swiger <cswiger@mac.com>eik2004-05-022-6/+18 * Update to OpenLDAP 2.2.10eik2004-04-203-9/+9 * bdb backend requires Berkeley DB >= 4.2 since 2.2.3betaeik2004-04-121-1/+1 * - update to OpenLDAP 2.2.8:eik2004-04-018-44/+107 * Try to fix the lingering thread problem on -CURRENT, for the better oreik2004-03-251-4/+6 * Fix libtool patch that somehow got garbledeik2004-03-251-3/+4 * use included libtooleik2004-03-252-6/+37 * Convert all but one port that uses libtool14 to use libtool15, in readinessade2004-03-251-1/+1 * Correct MAN8eik2004-03-243-10/+5 * workaround for changed soname versioning (OpenLDAP ITS#3016)eik2004-03-243-9/+27 * Update to OpenLDAP 2.2.7 release:eik2004-03-242-3/+3 * Only dns/bind8 and dns/bind84 screw up the include files.eik2004-03-191-1/+1 * Temporarily disable building when a bind port with PORT_REPLACES_BASE_BIND in...eik2004-03-191-0/+4 * Introduce WITHOUT_BDB to work around a bug in BerkeleyDB on AMD64:eik2004-03-011-1/+8 * Update to OpenLDAP 2.2.6 Release:eik2004-02-282-4/+4 * enable crypt(3) passwordseik2004-01-311-1/+2 * Update to version 2.2.5eik2004-01-262-2/+3 * - update to 2.2.4-releaseeik2004-01-2118-1872/+33 * - fix make configure WITH_PERL=yes (OpenLDAP ITS#2764)eik2003-11-151-0/+19 * ** NOTICE: **eik2003-11-1419-398/+1922 * switch my ports to my FreeBSD addresseik2003-11-141-1/+1 * [MAINTAINER] typo in ports net/openldap2[012]-serveredwin2003-08-302-2/+2 * [MAINTAINER] ports net/openldap2[012]-server: didn't start upon boot on 5.x, ...edwin2003-08-304-33/+61 * - Fix typo in start/stop scriptkrion2003-08-291-1/+1 * [MAINTAINER] ports net/openldap2[012]-server: use RC_SUBR, miscellaneous impr...edwin2003-08-287-133/+201 * Split openldap[012] into client and server.kuriyama2003-08-1410-173/+263 * - now *really* use libtool from ports instead of the included oneoliver2003-07-076-41/+351 * fix net/openldap22:daichi2003-07-072-1/+13 * Add openldap22 port after repocopy from openldap21.kuriyama2003-07-0212-618/+582 * Make PKGNAMESUFFIX processing happy on 4.8 and lower.edwin2003-05-231-4/+4 * [PATCH] openldap21 port won't compile with any *_ONLY optionsedwin2003-05-231-6/+6 * [PATCH] update of port net/openldap21 to 2.1.20edwin2003-05-237-18/+98 * o Updates openldap to the most current released version of openldapnork2003-04-113-15/+15 * net/openldap20 can't start with sample command line syntax in the startup scr...edwin2003-04-071-4/+4 * From Christian Kratzer <ck@cksoft.de>edwin2003-03-311-14/+0 * net/openldap21 to 2.1.16edwin2003-03-303-9/+15 * Re-add files/slapd.shedwin2003-02-251-0/+47 * New port: openldap-2.1edwin2003-02-2410-482/+542 * De-pkg-comment.knu2003-02-212-1/+1 * o Rollback PORTCOMMENT modifications while this feature's implementationlioux2002-11-112-2/+1