# HG changeset patch # User Paul Boddie # Date 1393027764 -3600 # Node ID 90c7c543e40ed43a9ce112ce4081f8b62020f86f # Parent 9edd6a891e3b0970825fc89774aa00cadfc11417 Updated packaging by Paul. diff -r 9edd6a891e3b -r 90c7c543e40e debian/control --- a/debian/control Sat Feb 22 01:05:35 2014 +0100 +++ b/debian/control Sat Feb 22 01:09:24 2014 +0100 @@ -13,7 +13,6 @@ Package: kolab Architecture: all Depends: kolab-cli, - kolab-conf, kolab-imap, kolab-ldap, kolab-mta, @@ -40,7 +39,8 @@ Architecture: all Pre-Depends:cyrus-imapd (>= 2.4) | imap-server, kolab-saslauthd -Depends: ${misc:Depends}, +Depends: kolab-conf, + ${misc:Depends}, ${ucs:Depends} Description: IMAP server for Kolab Groupware server This is a metapackage for the IMAP server dependencies of @@ -66,6 +66,7 @@ postfix-ldap, spamassassin, wallace, + kolab-conf, ${misc:Depends}, ${ucs:Depends} Provides: ${ucs:Provides} @@ -79,6 +80,7 @@ Architecture: all Depends: chwala, iRony, + kolab-conf, kolab-freebusy, kolab-syncroton, mysql-client, diff -r 9edd6a891e3b -r 90c7c543e40e debian/kolab-imap.postinst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/kolab-imap.postinst Sat Feb 22 01:09:24 2014 +0100 @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +#EXTRA# +#DEBHELPER# + +case "$1" in + configure) + setup-kolab imap --use-system-config + ;; +esac + +exit 0 diff -r 9edd6a891e3b -r 90c7c543e40e debian/kolab-mta.postinst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/kolab-mta.postinst Sat Feb 22 01:09:24 2014 +0100 @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +#EXTRA# +#DEBHELPER# + +case "$1" in + configure) + setup-kolab mta --use-system-config + ;; +esac + +exit 0 diff -r 9edd6a891e3b -r 90c7c543e40e debian/kolab-webclient.postinst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/kolab-webclient.postinst Sat Feb 22 01:09:24 2014 +0100 @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +#EXTRA# +#DEBHELPER# + +case "$1" in + configure) + setup-kolab roundcube --use-system-config + ;; +esac + +exit 0