mds/www-apps/zarafa/zarafa-6.40.2.ebuild
geos_one ac96a94f28 correct rpm5 eclass
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/mds@2517 6952d904-891a-0410-993b-d76249ca496b
2010-10-12 13:11:24 +00:00

132 lines
3.9 KiB
Bash

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
PHP_EXT_NAME="mapi"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
inherit eutils php-ext-base-r1 autotools rpm5
DESCRIPTION="Open Source Groupware Solution"
HOMEPAGE="http://zarafa.com/"
SRC_URI="http://download.zarafa.com/zarafa/drupal/ondemand.php?version=${PV}&src=zarafa-${PV} -> ${P}.tar.gz
licensed? (
amd64? ( http://download.zarafa.com/zarafa/drupal/ondemand.php?version=${PV}&distro=sles&distroversion=11&arch=x86_64&type=1 -> zarafa-${PV}-sles11-x86_64.tar.gz )
x86? ( http://download.zarafa.com/zarafa/drupal/ondemand.php?version=${PV}&distro=sles&distroversion=11&arch=i586&type=1 -> zarafa-${PV}-sles11-i586.tar.gz ) )"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT=""
IUSE="debug ldap logrotate licensed static tcmalloc kerberos"
RDEPEND=">=dev-libs/libical-0.44
dev-cpp/libvmime:0.7
>=dev-lang/php-5.2.0
app-text/catdoc
app-text/poppler
dev-cpp/clucene
dev-db/mysql
dev-libs/libxml2
dev-libs/openssl
net-misc/curl
sys-libs/e2fsprogs-libs
sys-libs/zlib
virtual/httpd-php
kerberos? ( || ( app-crypt/mit-krb5 app-crypt/heimdal ) )
ldap? ( net-nds/openldap )
logrotate? ( app-admin/logrotate )
tcmalloc? ( dev-util/google-perftools )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
src_unpack() {
unpack ${A}
if use licensed; then
cd "${WORKDIR}"
mkdir licensed
cd licensed
if use x86; then
rpm5_unpack $(find ./../zarafa-${PV}-sles11-i586 -name "zarafa-licensed*")
fi
if use amd64; then
rpm5_unpack $(find ./../zarafa-${PV}-sles11-x86_64 -name "zarafa-licensed*")
fi
cd "${S}"
fi
}
src_prepare() {
EPATCH_SOURCE="${FILESDIR}/patches" EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" epatch
edos2unix php-webclient-ajax/config.php.dist
eautoreconf
}
src_configure() {
econf \
--enable-oss \
--disable-perl \
--disable-testtools \
--enable-release \
--with-userscript-prefix=/etc/zarafa/userscripts \
--with-quotatemplate-prefix=/etc/zarafa/quotamails \
--with-indexerscripts-prefix=/etc/zarafa/indexerscripts \
$(use_enable static) \
$(use_enable tcmalloc) \
$(use_enable debug)
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
make DESTDIR="${D}" install-ajax-webaccess || die "make install-ajax-webaccess failed"
make DESTDIR="${D}" install-mobile-webaccess || die "make install-mobile-webaccess failed"
insinto /etc/apache2/modules.d
newins "${FILESDIR}/50_mailman.conf-r1" 50_mailman.conf
newins "${FILESDIR}/50_zarafa-webaccess-mobile.conf" 50_zarafa-webaccess-mobile.conf
newins "${FILESDIR}/50_zarafa-webaccess.conf" 50_zarafa-webaccess.conf
rm "${D}"/usr/share/zarafa-webaccess/*.conf
rm "${D}"/usr/share/zarafa-webaccess-mobile/*.conf
php-ext-base-r1_src_install
if use logrotate; then
insinto /etc/logrotate.d
newins "${FILESDIR}"/zarafa.logrotate zarafa || die "Failed to install logrotate"
fi
insinto /etc/zarafa
doins "${S}"/installer/linux/*.cfg || die "Failed to install config files"
dodir /var/log/zarafa
keepdir /var/log/zarafa
if use licensed; then
dobin ${WORKDIR}/licensed/usr/bin/*
exeinto /usr/$(get_libdir)/zarafa/
doexe ${WORKDIR}/licensed/usr/lib/zarafa/*.so
doman ${WORKDIR}/licensed/usr/share/man/*/*.gz
exeinto /usr/share/zarafa/zarafa-backup-helpers/
doexe ${WORKDIR}/licensed/usr/share/zarafa/zarafa-backup-helpers/*
dodoc ${WORKDIR}/licensed/usr/share/doc/zarafa-licensed/*
insinto /etc/zarafa
doins -r ${WORKDIR}/licensed/etc/zarafa/*
insinto /etc/cron.d
doins ${WORKDIR}/licensed/etc/cron.d/*
newinitd ${FILESDIR}/zarafa-licensed.rc6 zarafa-licensed
fi
newinitd ${FILESDIR}/zarafa-gateway.rc6 zarafa-gateway
newinitd ${FILESDIR}/zarafa-ical.rc6 zarafa-ical
newinitd ${FILESDIR}/zarafa-indexer.rc6 zarafa-indexer
newinitd ${FILESDIR}/zarafa-monitor.rc6 zarafa-monitor
newinitd ${FILESDIR}/zarafa-server.rc6 zarafa-server
newinitd ${FILESDIR}/zarafa-spooler.rc6 zarafa-spooler
}