diff options
Diffstat (limited to 'net-mail/evolution/evolution-0.15-r5.ebuild')
-rw-r--r-- | net-mail/evolution/evolution-0.15-r5.ebuild | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/net-mail/evolution/evolution-0.15-r5.ebuild b/net-mail/evolution/evolution-0.15-r5.ebuild new file mode 100644 index 000000000000..616c7e8a2820 --- /dev/null +++ b/net-mail/evolution/evolution-0.15-r5.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Mikael Hallendal <hallski@gentoo.org>, Martin Schlemmer <azarah@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-mail/evolution/evolution-0.15-r5.ebuild,v 1.1 2001/10/08 13:36:14 hallski Exp $ + +DB3=db-3.1.17 +S=${WORKDIR}/${P} +DESCRIPTION="A GNOME groupware application, a Microsoft Outlook workalike" +SRC_URI="ftp://ftp.ximian.com/pub/source/${PN}/${P}.tar.gz + ftp://ftp.gnome.org/pub/GNOME/unstable/sources/${PN}/${P}.tar.gz + http://www.sleepycat.com/update/3.1.17/${DB3}.tar.gz" +HOMEPAGE="http://www.ximian.com" + +DEPEND=">=gnome-extra/bonobo-conf-0.12 + >=gnome-base/bonobo-1.0.9-r1 + >=gnome-extra/gal-0.13-r1 + >=gnome-base/gconf-1.0.4-r1 + >=gnome-extra/gtkhtml-0.14.0-r1 + >=gnome-base/oaf-0.6.6-r1 + >=gnome-base/ORBit-0.5.10-r1 + >=gnome-base/libglade-0.17-r1 + >=media-libs/gdk-pixbuf-0.11.0-r1 + >=dev-libs/libxml-1.8.15 + >=gnome-base/gnome-vfs-1.0.2-r1 + >=gnome-base/gnome-print-0.20 + >=app-text/scrollkeeper-0.2 + >=dev-util/xml-i18n-tools-0.8.4 + ssl? ( dev-libs/openssl ) + ldap? ( net-nds/openldap ) + mozilla? ( >=net-www/mozilla-0.9.4-r2 ) + pda? ( >=gnome-extra/gnome-pilot-0.1.61-r1 )" + +src_unpack() { + unpack ${DB3}.tar.gz + unpack ${P}.tar.gz + + cd ${S} + patch -p1 < ${FILESDIR}/evolution-0.15-r5-remove-movemail-check.patch +} + +src_compile() { + cd ${WORKDIR}/${DB3}/build_unix + ../dist/configure --prefix=${WORKDIR}/db3 || die + make || die # make -j 4 doesn't work, use make + make prefix=${WORKDIR}/db3 install || die + + cd ${S} + + local myconf + + MOZILLA=$MOZILLA_FIVE_HOME + + if [ "`use ssl`" ] ; then + myconf="$myconf --enable-ssl" + else + myconf="$myconf --disable-ssl" + fi + + if [ "`use pda`" ] ; then + myconf="$myconf --with-pisock=/usr --enable-pilot-conduits=yes" + fi + + if [ "`use mozilla`" ] ; then + myconf="$myconf --with-nspr-includes=${MOZILLA}/include/nspr \ + --with-nss-includes=${MOZILLA}/include \ + --with-nspr-libs=${MOZILLA}" + fi + + CFLAGS="-I${WORKDIR}/db3/include ${CFLAGS} \ + `gnome-config --cflags bonobo`" + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --enable-file-locking=no \ + --with-db3=${WORKDIR}/db3 \ + $myconf || die + + make || die # emake didn't work. +} + +src_install () { + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + DESTDIR=${D} install || die + + dodoc AUTHORS COPYING ChangeLog HACKING MAINTAINERS + dodoc NEWS README +} + + |