diff options
author | Geert Bevin <gbevin@gentoo.org> | 2002-01-07 19:11:24 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2002-01-07 19:11:24 +0000 |
commit | e407b296369a00cb0ff9ddad02cb8c74e86dc12b (patch) | |
tree | 3b2eecff58e6853c85131d2fa804c4c8b1de12da /net-mail | |
parent | New version. (diff) | |
download | historical-e407b296369a00cb0ff9ddad02cb8c74e86dc12b.tar.gz historical-e407b296369a00cb0ff9ddad02cb8c74e86dc12b.tar.bz2 historical-e407b296369a00cb0ff9ddad02cb8c74e86dc12b.zip |
Version upgrade.
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/sylpheed/files/digest-sylpheed-0.7.0 | 1 | ||||
-rw-r--r-- | net-mail/sylpheed/sylpheed-0.7.0.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/net-mail/sylpheed/files/digest-sylpheed-0.7.0 b/net-mail/sylpheed/files/digest-sylpheed-0.7.0 new file mode 100644 index 000000000000..7ec9ab005bb9 --- /dev/null +++ b/net-mail/sylpheed/files/digest-sylpheed-0.7.0 @@ -0,0 +1 @@ +MD5 a50a0247662aca7c57533198b5562554 sylpheed-0.7.0.tar.bz2 1490944 diff --git a/net-mail/sylpheed/sylpheed-0.7.0.ebuild b/net-mail/sylpheed/sylpheed-0.7.0.ebuild new file mode 100644 index 000000000000..a699a62999d4 --- /dev/null +++ b/net-mail/sylpheed/sylpheed-0.7.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed/sylpheed-0.7.0.ebuild,v 1.1 2002/01/07 19:11:24 gbevin Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A lightweight email client and newsreader" +SRC_URI="http://sylpheed.good-day.net/sylpheed/sylpheed-${PV}.tar.bz2" +HOMEPAGE="http://sylpheed.good-day.net" + +DEPEND=">=x11-libs/gtk+-1.2.10-r4 + >=media-libs/compface-1.4 + gnome? ( >=media-libs/gdk-pixbuf-0.11.0-r1 ) + nls? ( sys-devel/gettext ) + ssl? ( dev-libs/openssl ) + gpg? ( >=app-crypt/gnupg-1.0.6 >=app-crypt/gpgme-0.2.3 )" + + +RDEPEND=">=x11-libs/gtk+-1.2.10-r4 + gnome? ( >=media-libs/gdk-pixbuf-0.11.0-r1 ) + ssl? ( dev-libs/openssl ) + gpg? ( >=app-crypt/gnupg-1.0.6 >=app-crypt/gpgme-0.2.3 )" + +src_compile() { + + local myconf + if [ -z "`use gnome`" ] ; then + myconf="--disable-gdk-pixbuf --disable-imlib" + fi + if [ -z "`use nls`" ] ; then + myconf="$myconf --disable-nls" + fi + if [ "`use ssl`" ] ; then + myconf="$myconf --enable-ssl" + fi + if [ "`use gpg`" ] ; then + myconf="$myconf --enable-gpgme" + fi + + ./configure --prefix=/usr \ + --host=${CHOST} \ + --enable-ipv6 $myconf || die + make || die +} + +src_install () { + + make prefix=${D}/usr \ + manualdir=${D}/usr/share/doc/${PF}/html \ + install || die + dodoc AUTHORS COPYING ChangeLog* NEWS README* TODO* +} + |