summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnustep-apps/sogo/ChangeLog11
-rw-r--r--gnustep-apps/sogo/Manifest6
-rw-r--r--gnustep-apps/sogo/files/sogo.initd23
-rw-r--r--gnustep-apps/sogo/files/sogod.initd74
-rw-r--r--gnustep-apps/sogo/metadata.xml13
-rw-r--r--gnustep-apps/sogo/sogo-1.1.0-r1.ebuild110
-rw-r--r--gnustep-apps/sogo/sogo-1.1.0.ebuild97
-rw-r--r--gnustep-libs/sope/Manifest4
-rw-r--r--gnustep-libs/sope/sope-4.9_pre200908051100.ebuild1
-rw-r--r--metadata/cache/gnustep-apps/sogo-1.1.022
-rw-r--r--metadata/cache/gnustep-apps/sogo-1.1.0-r122
-rw-r--r--metadata/cache/gnustep-libs/sope-4.7_pre2009061622
-rw-r--r--metadata/cache/gnustep-libs/sope-4.9_pre20090805110022
13 files changed, 259 insertions, 168 deletions
diff --git a/gnustep-apps/sogo/ChangeLog b/gnustep-apps/sogo/ChangeLog
new file mode 100644
index 0000000..4aa66f1
--- /dev/null
+++ b/gnustep-apps/sogo/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for gnustep-apps/sogo
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*sogo-1.1.0-r1 (12 Jan 2010)
+
+ 12 Jan 2010; <bernard@gentoo.org> -sogo-1.1.0.ebuild,
+ +sogo-1.1.0-r1.ebuild, -files/sogo.initd, +files/sogod.initd,
+ +metadata.xml:
+ Create ChangeLog to keep tracks of things, new ebuild from bug #295636
+
diff --git a/gnustep-apps/sogo/Manifest b/gnustep-apps/sogo/Manifest
index 45407e4..5aaae07 100644
--- a/gnustep-apps/sogo/Manifest
+++ b/gnustep-apps/sogo/Manifest
@@ -1,3 +1,5 @@
-AUX sogo.initd 468 RMD160 64eae15e9f17a267ec024391f5fb59c16c78a4fe SHA1 4b285e65e92bf6eea5b22c30265e67e959841573 SHA256 96f96f331e33904022e825404ac88fe0cdde9c3f05c9573b8140bee7325113b3
+AUX sogod.initd 1763 RMD160 9b68d4650cf5aacab5e9896193e1d8a18613458e SHA1 c852e81ded69911c359ac5a551414afc119b26b2 SHA256 3f1a6764a7c2ae47080e916fadfcb2139e0a237d3ee8cd1257a5e024a090ee59
DIST SOGo-1.1.0.tar.gz 3613661 RMD160 b6fd66c0825f34e3fbc12d23c9b8c144a5b9cd65 SHA1 0e19f79fd764e9deba14a6346636b7ee86832014 SHA256 950e1a954d8905e187e09336893c50b3c7a16de42ada5c50932766974d5e7a13
-EBUILD sogo-1.1.0.ebuild 2585 RMD160 b266e6ca93693ba7ef460554a2f9a33967c10cf3 SHA1 40ddc8e291e6283de0425a649c141570f91520b1 SHA256 62779d6b36bfd1272394d1107ff6f287809a83a428294be95c8d5db7ede30880
+EBUILD sogo-1.1.0-r1.ebuild 4688 RMD160 5445917f64c96349c6a8b07384b45dc8160ebdef SHA1 2e3beafc69634633202481055deb082b8353f117 SHA256 71157c00fafce2d16907f897286dd5a9182e411544de560a9dfdee793a4ed07d
+MISC ChangeLog 359 RMD160 fd68b09bedc7b556db57c0d68b97cef27723e1c2 SHA1 c5a285e2a64f3da03ebc9b6bf412277ad12e555c SHA256 b27418cd71193c7cffa5e73f19231cb2c9f372703c58d2ab880ef68d06139ec8
+MISC metadata.xml 793 RMD160 e5e134c336e1294210a98e7ecdf2182b3548eedb SHA1 e168a20cbcf7834b5f9bdd68b5e85b6202f72c35 SHA256 a48efb3457db158cb5420394060ae92c2d3b232a4f01e804e903b1154f80560b
diff --git a/gnustep-apps/sogo/files/sogo.initd b/gnustep-apps/sogo/files/sogo.initd
deleted file mode 100644
index 766b37f..0000000
--- a/gnustep-apps/sogo/files/sogo.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-depend() {
- need net
- after postgresql
-}
-
-start() {
- ebegin "Starting SOGo service"
- start-stop-daemon --start --exec /usr/GNUstep/System/Tools/Admin/sogod \
- --chuid sogo -m -b --pidfile /var/run/sope.pid
- eend $?
-}
-
-stop() {
- ebegin "Stopping SOGo service"
- start-stop-daemon --stop \
- --pidfile /var/run/sope.pid
- eend $?
-}
diff --git a/gnustep-apps/sogo/files/sogod.initd b/gnustep-apps/sogo/files/sogod.initd
new file mode 100644
index 0000000..c370ba4
--- /dev/null
+++ b/gnustep-apps/sogo/files/sogod.initd
@@ -0,0 +1,74 @@
+#!/sbin/runscript
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+sogod_bin=""
+sogod_port=""
+
+depend() {
+ need net
+ after pg_autovacuum postgresql mysql
+ after slapd
+ after mta
+ after memcached
+}
+
+checkconfig() {
+ if [ -f "/etc/GNUstep/GNUstep.conf" ]; then
+ source /etc/GNUstep/GNUstep.conf
+ else
+ eerror "Can't find /etc/GNUstep/GNUstep.conf"
+ return 1
+ fi
+ if [ -x "${HOME}/${GNUSTEP_USER_DIR_ADMIN_TOOLS}/sogod" ]; then
+ sogod_bin="${HOME}/${GNUSTEP_USER_DIR_ADMIN_TOOLS}/sogod"
+ elif [ -x "${GNUSTEP_LOCAL_ADMIN_TOOLS}/sogod" ]; then
+ sogod_bin="${GNUSTEP_LOCAL_ADMIN_TOOLS}/sogod"
+ elif [ -x "${GNUSTEP_SYSTEM_ADMIN_TOOLS}/sogod" ]; then
+ sogod_bin="${GNUSTEP_SYSTEM_ADMIN_TOOLS}/sogod"
+ elif [ -x "${GNUSTEP_NETWORK_ADMIN_TOOLS}/sogod" ]; then
+ sogod_bin="${GNUSTEP_SYSTEM_ADMIN_TOOLS}/sogod"
+ else
+ eerror "Can't find sogod"
+ return 1
+ fi
+ if [ -f "${GNUSTEP_MAKEFILES}/GNUstep.sh" ]; then
+ source "${GNUSTEP_MAKEFILES}/GNUstep.sh"
+ else
+ eerror "Can't find ${GNUSTEP_MAKEFILES}/GNUstep.sh"
+ return 1
+ fi
+ sogod_port="$(defaults -u sogo read sogod WOPort 2>/dev/null)"
+ if [ "${?}" -eq 0 ]; then
+ sogod_port="${sogod_port##* }"
+ if [ "$((${sogod_port}+1-1))" != "${sogod_port}" ]; then
+ sogod_port="20000"
+ fi
+ else
+ sogod_port="20000"
+ fi
+ touch /var/log/sogod.log
+ chown sogo /var/log/sogod.log
+}
+
+start() {
+ checkconfig || return 1
+ ebegin "Starting SOGo service"
+ start-stop-daemon \
+ --start \
+ --exec ${sogod_bin} \
+ --chuid sogo \
+ --make-pidfile \
+ --background \
+ --pidfile /var/run/sogod.pid \
+ -- -WOPort ${sogod_port}
+ eend ${?}
+}
+
+stop() {
+ ebegin "Stopping SOGo service"
+ start-stop-daemon --stop \
+ --pidfile /var/run/sogod.pid
+ eend ${?}
+}
diff --git a/gnustep-apps/sogo/metadata.xml b/gnustep-apps/sogo/metadata.xml
new file mode 100644
index 0000000..d71e2ce
--- /dev/null
+++ b/gnustep-apps/sogo/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>gnustep</herd>
+ <longdescription>SOGo is groupware server with a focus on scalability and open standards.
+
+SOGo provides a rich AJAX-based Web interface and supports multiple native clients through the use of standard protocols such as CalDAV, CardDAV and GroupDAV.
+
+SOGo is the missing component of your infrastructure; it sits in the middle of your servers to offer your users an uniform and complete interface to access their information. It has been deployed in production environments where thousands of users are involved.</longdescription>
+ <use>
+ <flag name="logrotate">Use <pkg>app-admin/logrotate</pkg> for rotating logs</flag>
+ </use>
+</pkgmetadata>
diff --git a/gnustep-apps/sogo/sogo-1.1.0-r1.ebuild b/gnustep-apps/sogo/sogo-1.1.0-r1.ebuild
new file mode 100644
index 0000000..7297610
--- /dev/null
+++ b/gnustep-apps/sogo/sogo-1.1.0-r1.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=2
+
+inherit gnustep-base
+
+MY_PN="SOGo"
+MY_PV="${PV/_/}"
+
+DESCRIPTION="Groupware server built around OpenGroupware.org and the SOPE application server"
+HOMEPAGE="http://sogo.opengroupware.org/"
+SRC_URI="http://www.scalableogo.org/files/downloads/${MY_PN}/Sources/${MY_PN}-${MY_PV}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="postgres mysql logrotate"
+DEPEND="gnustep-libs/sope[ldap?,mysql?,postgres?]
+ !mysql? ( !postgres? ( virtual/postgresql-base ) )
+ dev-libs/libmemcached
+ ldap? ( net-nds/openldap )"
+RDEPEND="${DEPEND}
+ logrotate? ( app-admin/logrotate )"
+
+S=${WORKDIR}/${MY_PN}-${MY_PV}
+
+pkg_setup() {
+ gnustep-base_pkg_setup
+ local myLDFLAGS="$(gnustep-config --variable=LDFLAGS 2>/dev/null)"
+ if [ -n "${myLDFLAGS}" ] && (echo "${myLDFLAGS}" | grep -q "\-\-a\(dd\|s\)\-needed" 2>/dev/null); then
+ ewarn
+ ewarn "You seem to have compiled GNUstep with custom LDFLAGS:"
+ for foo in $(gnustep-config --variable=LDFLAGS); do
+ ewarn " "${foo}
+ done
+ ewarn
+ ewarn "SOGo is very sensitive regarding custom LDFLAGS. Especially with:"
+ ewarn " --add-needed"
+ ewarn " --as-needed"
+ ewarn
+ ewarn "If your SOGo install does not work as expected then please re-emerge SOGo,"
+ ewarn "SOPE and your GNUstep (base and make) without any LDFLAGS before filing bugs."
+ ewarn
+ fi
+}
+
+src_configure() {
+ egnustep_env
+ ./configure \
+ $(use_enable debug) \
+ $(use_enable debug strip) \
+ $(use_enable ldap ldap-config) \
+ || die "configure failed"
+}
+
+src_test() {
+ # SOGo tends to break horribly if gnustep-make is build with LDFLAGS such as
+ # -Wl,--add-needed or -Wl,--as-needed. So we check here some vital binaries.
+ # Check if Appointments.SOGo, Contacts.SOGo, Mailer.SOGo is correctly build/linked
+ local myAppointmentsLDD=$(ldd -d "${S}"/SoObjects/Appointments/Appointments.SOGo/Appointments 2>&1 | grep "lib\(OGoContentStore\|NG\(Cards\|ObjWeb\|Mime\|Streams\|Extensions\)\|SOGo\|GDL\(Access\|ContentStore\)\|EOControl\|DOM\|SaxObjC\|XmlRpc\)\.so\." | wc -l)
+ local myContactsLDD=$(ldd -d "${S}"/SoObjects/Contacts/Contacts.SOGo/Contacts 2>&1 | grep "lib\(OGoContentStore\|NG\(Cards\|ObjWeb\|Mime\|Streams\|Extensions\)\|SOGo\|GDL\(Access\|ContentStore\)\|EOControl\|DOM\|SaxObjC\|XmlRpc\)\.so\." | wc -l)
+ local myMailerLDD=$(ldd -d "${S}"/SoObjects/Mailer/Mailer.SOGo/Mailer 2>&1 | grep "lib\(OGoContentStore\|NG\(Cards\|ObjWeb\|Mime\|Streams\|Extensions\)\|SOGo\|GDL\(Access\|ContentStore\)\|EOControl\|DOM\|SaxObjC\|XmlRpc\)\.so\." | wc -l)
+ if [ -z "${myAppointmentsLDD}" -o -z "${myContactsLDD}" -o -z "${myMailerLDD}" -o "${myAppointmentsLDD}" != "13" -o "${myContactsLDD}" != "13" -o "${myMailerLDD}" != "13" ]; then
+ ewarn
+ ewarn "This SOGo installtion is not correctly build. Probably you are using"
+ ewarn "LDFLAGS to build SOGo that are not correctly handled in SOGo or you"
+ ewarn "have emerged gnustep-base/gnustep-make with LDFLAGS which are"
+ ewarn "preventing SOGo to link the needed libraries into it's own binaries."
+ ewarn "Please remerge gnustep-base/gnustep-make and/or SOGo with empty LDFLAGS."
+ ewarn
+ die "SOGo build is not complete (Appointments.SOGo, Contacts.SOGo, Mailer.SOGo)"
+ fi
+ # We could do the same for AdministrationUI.SOGo, CommonUI.SOGo, ContactsUI.SOGo,
+ # MailPartViewers.SOGo, MailerUI.SOGo, MainUI.SOGo, SOGoElements.wox and SchedulerUI.SOGo
+ # but if Appointments.SOGo, Contacts.SOGo and Mailer.SOGo are build correctly then the
+ # chance that the others are build/linked correctly is pretty high. So we don't test again.
+}
+
+src_install() {
+ gnustep-base_src_install
+ newinitd "${FILESDIR}"/sogod.initd sogod \
+ || die "Init script installation failed"
+ if use logrotate; then
+ insopts -m644 -o root -g root
+ insinto /etc/logrotate.d
+ newins Scripts/logrotate SOGo || die "Failed to install logrotate.d file"
+ fi
+ newdoc Apache/SOGo.conf SOGo-Apache.conf
+}
+
+pkg_preinst() {
+ enewuser sogo -1 /bin/bash /var/lib/sogo
+}
+
+pkg_postinst() {
+ gnustep-base_pkg_postinst
+ elog
+ elog "Now follow the steps from the SOGo documentation:"
+ elog "http://www.inverse.ca/contributions/sogo/documentation.html#c803"
+ elog "The sogo user home directory is /var/lib/sogo"
+ elog
+ elog "Then you can start/stop sogo with /etc/init.d/sogod"
+ elog
+ elog "If you plan to use SOGo with Apache then please have a look at the"
+ elog "'SOGo-Apache.conf' included in the documentation directory of this"
+ elog "SOGo installation and don't forget to add '-D PROXY' to your"
+ elog "APACHE2_OPTS."
+ elog
+}
diff --git a/gnustep-apps/sogo/sogo-1.1.0.ebuild b/gnustep-apps/sogo/sogo-1.1.0.ebuild
deleted file mode 100644
index 8827b2a..0000000
--- a/gnustep-apps/sogo/sogo-1.1.0.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-inherit depend.apache gnustep-base
-
-MY_PN="SOGo"
-MY_PV="${PV/_/}"
-
-DESCRIPTION="groupware server built around OpenGroupware.org and the SOPE application server"
-HOMEPAGE="http://sogo.opengroupware.org/"
-SRC_URI="http://www.inverse.ca/downloads/${MY_PN}/Sources/${MY_PN}-${MY_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND="gnustep-libs/sope[postgres]"
-RDEPEND="${DEPEND}
- dev-db/postgresql"
-need_apache2
-
-S=${WORKDIR}/${MY_PN}-${MY_PV}
-
-src_configure() {
- # Do not use standard src_compile, as ./configure is not standard
- egnustep_env
- ./configure
-}
-
-src_install() {
- gnustep-base_src_install
-
- # Apache configuration file
- dodir "${APACHE_MODULES_CONFDIR}"
- cat <<EOF >"${D}/${APACHE_MODULES_CONFDIR}"/47_sogo.conf
-<IfDefine SOPE>
-LoadModule ngobjweb_module modules/mod_ngobjweb.so
-
-Alias /sogo.woa/WebServerResources/ \
- ${GNUSTEP_SYSTEM_LIBRARY}/SOGo/WebServerResources/
-Alias /SOGo.woa/WebServerResources/ \
- ${GNUSTEP_SYSTEM_LIBRARY}/SOGo/WebServerResources/
-Alias /SOGO.woa/WebServerResources/ \
- ${GNUSTEP_SYSTEM_LIBRARY}/SOGo/WebServerResources/
-
-AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) \
- ${GNUSTEP_SYSTEM_LIBRARY}/SOGo/\$1.SOGo/Resources/\$2
-
-<LocationMatch "^/SOGo*">
- AddDefaultCharset UTF-8
- SetHandler ngobjweb-adaptor
- SetAppPort 20000
- Allow from 127.0.0.1
-</LocationMatch>
-
-<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*png">
- SetHandler default-handler
-</LocationMatch>
-
-<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*gif">
- SetHandler default-handler
-</LocationMatch>
-
-<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*css">
- SetHandler default-handler
-</LocationMatch>
-
-<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*js">
- SetHandler default-handler
-</LocationMatch>
-
-</IfDefine>
-EOF
-
- # Init script
- newinitd "${FILESDIR}"/sogo.initd sogo \
- || die "Init script installation failed"
-}
-
-pkg_preinst() {
- enewuser sogo -1 /bin/bash /var/lib/sogo
-}
-
-pkg_postinst() {
- gnustep-base_pkg_postinst
-
- elog "Do not forget to enable the sope module in /etc/apache2/httpd.conf"
- elog "Now follow the steps from the SOGo documentation, Configuration section:"
- elog "http://www.inverse.ca/contributions/sogo/documentation.html#c803"
- elog "The default port configured for sogo is 20000 (from 47_sogo.conf)"
- elog "The sogo user home directory is /var/lib/sogo"
- elog ""
- elog "Then you can start/stop sogo with /etc/init.d/sogo"
-}
diff --git a/gnustep-libs/sope/Manifest b/gnustep-libs/sope/Manifest
index 64fa0df..14e168b 100644
--- a/gnustep-libs/sope/Manifest
+++ b/gnustep-libs/sope/Manifest
@@ -10,4 +10,6 @@ AUX sope-use_system_root.patch 548 RMD160 add8b03f06b20ae96676b4efe17af08e024eae
AUX sope.envd 78 RMD160 6eea98d1769582cfe59f8bceee2b693fdb644f25 SHA1 a62803c8fded1cec5c6588fb5eb6e7b7302ae47b SHA256 856ba9e8d7892c0287fef0e57f3e5537cce4578c4be3c9910db4f145f860a608
DIST SOGo-1.1.0.tar.gz 3613661 RMD160 b6fd66c0825f34e3fbc12d23c9b8c144a5b9cd65 SHA1 0e19f79fd764e9deba14a6346636b7ee86832014 SHA256 950e1a954d8905e187e09336893c50b3c7a16de42ada5c50932766974d5e7a13
DIST sope-trunk-r1660-200908051100.tar.gz 4261964 RMD160 588e35075319983f226b15fd6b07c8765054cf22 SHA1 9633265ce04b4df496457ad6ffbd6ade1e6d7cfa SHA256 45ff87319267882b21516091d6e812de8e548356774dafaa8b59c0fb6f6adb9b
-EBUILD sope-4.9_pre200908051100.ebuild 6955 RMD160 b87a784842ec07392328ff377e85a819182b3221 SHA1 a5c32029e3198c3f1800db06ac90ee8d0ef1c681 SHA256 dfff0352e4f486abbd827c2870137ea6e06b9409df43d1556762f8e3e194e1e3
+EBUILD sope-4.9_pre200908051100.ebuild 6830 RMD160 e0532c7e4c482debea7727b86402c4c0e056fe35 SHA1 5c62ac5053df69c81ef987d22ec003bd09b04ee9 SHA256 600706ab2257341b8997c479131b03e8f48f8167cd11f855e1fae23a668beec7
+MISC ChangeLog 760 RMD160 06eb69969af5697ab0888ec21390a436e1a0a390 SHA1 72778b7266b26060983b4427e28e41b77984b9be SHA256 c890637b165ed92964aab52e8bf30d68ff0780b82700743acacff449a8ea9d68
+MISC metadata.xml 706 RMD160 18fd70a1bccb6068c67a4b3f7ac20edaa8d8242e SHA1 53ea5d3b07c4078e9ee22b6621574043196b1fe8 SHA256 51ecf43fc7e0c56c3c1cdd1150a6b649678284d21c6519d0d960bebd66505e39
diff --git a/gnustep-libs/sope/sope-4.9_pre200908051100.ebuild b/gnustep-libs/sope/sope-4.9_pre200908051100.ebuild
index 55d3796..f1a7eab 100644
--- a/gnustep-libs/sope/sope-4.9_pre200908051100.ebuild
+++ b/gnustep-libs/sope/sope-4.9_pre200908051100.ebuild
@@ -35,7 +35,6 @@ want_apache
pkg_setup() {
gnustep-base_pkg_setup
- egnustep_env
local myLDFLAGS="$(gnustep-config --variable=LDFLAGS 2>/dev/null)"
if [ -n "${myLDFLAGS}" ] && (echo "${myLDFLAGS}" | grep -q "\-\-a\(dd\|s\)\-needed" 2>/dev/null); then
ewarn
diff --git a/metadata/cache/gnustep-apps/sogo-1.1.0 b/metadata/cache/gnustep-apps/sogo-1.1.0
deleted file mode 100644
index 8fadcc7..0000000
--- a/metadata/cache/gnustep-apps/sogo-1.1.0
+++ /dev/null
@@ -1,22 +0,0 @@
-gnustep-libs/sope[postgres] =www-servers/apache-2*
-gnustep-libs/sope[postgres] dev-db/postgresql =www-servers/apache-2*
-0
-http://www.inverse.ca/downloads/SOGo/Sources/SOGo-1.1.0.tar.gz
-
-http://sogo.opengroupware.org/
-GPL-2
-groupware server built around OpenGroupware.org and the SOPE application server
-~x86
-depend.apache eutils flag-o-matic gnustep-base multilib portability toolchain-funcs
-debug doc
-
-
-
-2
-
-compile configure install postinst preinst prepare setup
-
-
-
-
-
diff --git a/metadata/cache/gnustep-apps/sogo-1.1.0-r1 b/metadata/cache/gnustep-apps/sogo-1.1.0-r1
new file mode 100644
index 0000000..38b3c22
--- /dev/null
+++ b/metadata/cache/gnustep-apps/sogo-1.1.0-r1
@@ -0,0 +1,22 @@
+gnustep-libs/sope[ldap?,mysql?,postgres?]
+gnustep-libs/sope[ldap?,mysql?,postgres?] !mysql? ( !postgres? ( virtual/postgresql-base ) ) logrotate? ( app-admin/logrotate ) net-nds/openldap dev-libs/libmemcached
+0
+http://www.scalableogo.org/files/downloads/SOGo/Sources/SOGo-1.1.0.tar.gz
+
+http://sogo.opengroupware.org/
+GPL-2
+Groupware server built around OpenGroupware.org and the SOPE application server
+~amd64 ~x86
+eutils flag-o-matic gnustep-base multilib portability toolchain-funcs
+postgres mysql logrotate debug doc
+
+
+
+2
+
+compile configure install postinst preinst prepare setup test
+
+
+
+
+
diff --git a/metadata/cache/gnustep-libs/sope-4.7_pre20090616 b/metadata/cache/gnustep-libs/sope-4.7_pre20090616
deleted file mode 100644
index 5bde537..0000000
--- a/metadata/cache/gnustep-libs/sope-4.7_pre20090616
+++ /dev/null
@@ -1,22 +0,0 @@
-gnustep-base/gnustep-base dev-libs/libxml2 net-nds/openldap mysql? ( virtual/mysql ) postgres? ( virtual/postgresql-base ) sqlite? ( >=dev-db/sqlite-3 ) !gnustep-libs/gdl2 =www-servers/apache-2*
-gnustep-base/gnustep-base dev-libs/libxml2 net-nds/openldap mysql? ( virtual/mysql ) postgres? ( virtual/postgresql-base ) sqlite? ( >=dev-db/sqlite-3 ) !gnustep-libs/gdl2 =www-servers/apache-2*
-0
-http://download.opengroupware.org/nightly/sources/trunk/sope-trunk-r1660-200906161500.tar.gz
-
-http://sope.opengroupware.org/en/index.html
-LGPL-2
-an extensive set of frameworks which form a complete Web application server environment
-~amd64 ~x86
-apache-module depend.apache eutils flag-o-matic gnustep-base multilib portability toolchain-funcs
-mysql +postgres sqlite debug doc
-
-
-
-2
-
-compile configure install postinst prepare setup
-
-
-
-
-
diff --git a/metadata/cache/gnustep-libs/sope-4.9_pre200908051100 b/metadata/cache/gnustep-libs/sope-4.9_pre200908051100
new file mode 100644
index 0000000..fe6fe93
--- /dev/null
+++ b/metadata/cache/gnustep-libs/sope-4.9_pre200908051100
@@ -0,0 +1,22 @@
+gnustep-base/gnustep-base dev-libs/libxml2 dev-libs/openssl ldap? ( net-nds/openldap ) mysql? ( virtual/mysql ) postgres? ( virtual/postgresql-base ) sqlite? ( >=dev-db/sqlite-3.0 ) apache2? ( =www-servers/apache-2* )
+gnustep-base/gnustep-base dev-libs/libxml2 dev-libs/openssl ldap? ( net-nds/openldap ) mysql? ( virtual/mysql ) postgres? ( virtual/postgresql-base ) sqlite? ( >=dev-db/sqlite-3.0 ) apache2? ( =www-servers/apache-2* )
+0
+http://download.opengroupware.org/nightly/sources/trunk/sope-trunk-r1660-200908051100.tar.gz http://www.scalableogo.org/files/downloads/SOGo/Sources/SOGo-1.1.0.tar.gz
+
+http://sope.opengroupware.org/en/index.html
+LGPL-2
+An extensive set of frameworks which form a complete Web application server environment
+~amd64 ~x86
+apache-module depend.apache eutils flag-o-matic gnustep-base multilib portability toolchain-funcs
+apache2 ldap libFoundation mysql postgres sqlite apache2 debug doc
+
+
+
+2
+
+compile configure install postinst prepare setup test
+
+
+
+
+