summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-04-16 01:08:25 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-04-16 01:08:25 +0000
commit6a584246c91b51ff0c323cd48a14d1d80ea1bcc3 (patch)
tree0bff073607a2812f67df180844c07b10b1780564 /net-mail/sylpheed
parentremoved older ebuilds (diff)
downloadgentoo-2-6a584246c91b51ff0c323cd48a14d1d80ea1bcc3.tar.gz
gentoo-2-6a584246c91b51ff0c323cd48a14d1d80ea1bcc3.tar.bz2
gentoo-2-6a584246c91b51ff0c323cd48a14d1d80ea1bcc3.zip
Changed gpg flag to crypt flag instead
Diffstat (limited to 'net-mail/sylpheed')
-rw-r--r--net-mail/sylpheed/ChangeLog8
-rw-r--r--net-mail/sylpheed/sylpheed-0.7.4-r1.ebuild23
2 files changed, 19 insertions, 12 deletions
diff --git a/net-mail/sylpheed/ChangeLog b/net-mail/sylpheed/ChangeLog
index d74361ed4c8c..146ebb948772 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.3 2002/04/05 22:26:48 spider Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed/ChangeLog,v 1.4 2002/04/16 01:05:15 seemant Exp $
+
+*sylpheed-0.7.4-r1 (15 Apr 2002)
+
+ 15 Apr 2002; Seemant Kulleen <seemant@gentoo.org> sylpheed-0.7.4-r1.ebuild :
+
+ Changed the gpg USE flag to crypt USE flag instead, which is more general
*sylpheed-0.7.4-r1 (05 Apr 2002)
05 Apr 2002; Spider <spider@gentoo.org>
diff --git a/net-mail/sylpheed/sylpheed-0.7.4-r1.ebuild b/net-mail/sylpheed/sylpheed-0.7.4-r1.ebuild
index 436241c55da6..30a769cc9e8e 100644
--- a/net-mail/sylpheed/sylpheed-0.7.4-r1.ebuild
+++ b/net-mail/sylpheed/sylpheed-0.7.4-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2001 Gentoo Technologies, Inc.
+# 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.4-r1.ebuild,v 1.1 2002/04/05 22:26:49 spider Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed/sylpheed-0.7.4-r1.ebuild,v 1.2 2002/04/16 01:05:15 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A lightweight email client and newsreader"
@@ -10,17 +10,17 @@ 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 )
pda? ( app-misc/jpilot )
- gpg? ( >=app-crypt/gnupg-1.0.6 >=app-crypt/gpgme-0.2.3 )"
+ 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.10-r4
- 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 )"
+ crypt? ( >=app-crypt/gnupg-1.0.6 >=app-crypt/gpgme-0.2.3 )
+ gnome? ( >=media-libs/gdk-pixbuf-0.11.0-r1 )"
src_compile() {
@@ -29,12 +29,13 @@ src_compile() {
use gnome || myconf="--disable-gdk-pixbuf --disable-imlib"
use nls || myconf="$myconf --disable-nls"
use ssl && myconf="$myconf --enable-ssl"
- use gpg && myconf="$myconf --enable-gpgme"
+ use crypt && myconf="$myconf --enable-gpgme"
use pda && myconf="$myconf --enable-jpilot"
- ./configure --prefix=/usr \
- --host=${CHOST} \
- --enable-ipv6 $myconf || die
+ ./configure \
+ --prefix=/usr \
+ --host=${CHOST} \
+ --enable-ipv6 $myconf || die
emake || die
}