diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-09 18:28:22 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-09 18:28:22 +0000 |
commit | 9eca8f90680fdcce133c7ebba2342636ac7758b2 (patch) | |
tree | 21223c91cb75e4e55d8617f2e356f6945ad01e6c /net-mail | |
parent | forgot to cvs remove this one. (diff) | |
download | gentoo-2-9eca8f90680fdcce133c7ebba2342636ac7758b2.tar.gz gentoo-2-9eca8f90680fdcce133c7ebba2342636ac7758b2.tar.bz2 gentoo-2-9eca8f90680fdcce133c7ebba2342636ac7758b2.zip |
New version.
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/sylpheed/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/sylpheed/files/digest-sylpheed-0.7.7 | 1 | ||||
-rw-r--r-- | net-mail/sylpheed/sylpheed-0.7.7.ebuild | 49 |
3 files changed, 57 insertions, 1 deletions
diff --git a/net-mail/sylpheed/ChangeLog b/net-mail/sylpheed/ChangeLog index 0c825cd19b44..43a6373be414 100644 --- a/net-mail/sylpheed/ChangeLog +++ b/net-mail/sylpheed/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/sylpheed # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed/ChangeLog,v 1.6 2002/05/12 14:54:16 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed/ChangeLog,v 1.7 2002/06/09 18:28:22 stroke Exp $ + +*sylpheed-0.7.7 (09 Jun 2002) + + 09 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> sylpheed-0.7.7.ebuild: + + Version bump *sylpheed-0.7.6 (12 May 2002) 12 May 2002; Spider <spider@gentoo.org> sylpheed-0.7.6.ebuild: diff --git a/net-mail/sylpheed/files/digest-sylpheed-0.7.7 b/net-mail/sylpheed/files/digest-sylpheed-0.7.7 new file mode 100644 index 000000000000..b5c49246035b --- /dev/null +++ b/net-mail/sylpheed/files/digest-sylpheed-0.7.7 @@ -0,0 +1 @@ +MD5 a6f5c90e791706dc4ceee6590a3e2a5a sylpheed-0.7.7.tar.bz2 1797388 diff --git a/net-mail/sylpheed/sylpheed-0.7.7.ebuild b/net-mail/sylpheed/sylpheed-0.7.7.ebuild new file mode 100644 index 000000000000..5c1569fb02ec --- /dev/null +++ b/net-mail/sylpheed/sylpheed-0.7.7.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 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.7.ebuild,v 1.1 2002/06/09 18:28:22 stroke 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* + >=media-libs/compface-1.4 + ssl? ( dev-libs/openssl ) + pda? ( app-misc/jpilot ) + crypt? ( >=app-crypt/gnupg-1.0.6 >=app-crypt/gpgme-0.2.3 ) + gnome? ( >=media-libs/gdk-pixbuf-0.11.0-r1 )" + + +RDEPEND="=x11-libs/gtk+-1.2* + nls? ( sys-devel/gettext ) + ssl? ( dev-libs/openssl ) + crypt? ( >=app-crypt/gnupg-1.0.6 >=app-crypt/gpgme-0.2.3 ) + gnome? ( >=media-libs/gdk-pixbuf-0.11.0-r1 )" + +src_compile() { + + local myconf + + use gnome || myconf="--disable-gdk-pixbuf --disable-imlib" + use nls || myconf="$myconf --disable-nls" + use ssl && myconf="$myconf --enable-ssl" + use crypt && myconf="$myconf --enable-gpgme" + use pda && myconf="$myconf --enable-jpilot" + + ./configure \ + --prefix=/usr \ + --host=${CHOST} \ + --enable-ipv6 $myconf || die + emake || die +} + +src_install () { + + make prefix=${D}/usr \ + manualdir=${D}/usr/share/doc/${PF}/html \ + install || die + dodoc AUTHORS COPYING ChangeLog* NEWS README* TODO* +} + |