summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Trygve Kalleberg <karltk@gentoo.org>2002-03-24 13:52:32 +0000
committerKarl Trygve Kalleberg <karltk@gentoo.org>2002-03-24 13:52:32 +0000
commit6c0da706217ce2cb1bf08d5fe0a2a6187b55bdf9 (patch)
tree95906fa874057649ca9ed6778570221d811aadde /net-mail/sylpheed-claws
parentclean (diff)
downloadhistorical-6c0da706217ce2cb1bf08d5fe0a2a6187b55bdf9.tar.gz
historical-6c0da706217ce2cb1bf08d5fe0a2a6187b55bdf9.tar.bz2
historical-6c0da706217ce2cb1bf08d5fe0a2a6187b55bdf9.zip
g2boojum forgot to update the ChangeLog. Bad boy.
Diffstat (limited to 'net-mail/sylpheed-claws')
-rw-r--r--net-mail/sylpheed-claws/ChangeLog14
-rw-r--r--net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.41
-rw-r--r--net-mail/sylpheed-claws/sylpheed-claws-0.7.4.ebuild65
3 files changed, 11 insertions, 69 deletions
diff --git a/net-mail/sylpheed-claws/ChangeLog b/net-mail/sylpheed-claws/ChangeLog
index 314d0954c619..c5f5f9210e67 100644
--- a/net-mail/sylpheed-claws/ChangeLog
+++ b/net-mail/sylpheed-claws/ChangeLog
@@ -1,10 +1,18 @@
# ChangeLog for net-mail/sylpheed-claws
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed-claws/ChangeLog,v 1.3 2002/03/12 12:48:50 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed-claws/ChangeLog,v 1.4 2002/03/24 13:52:32 karltk Exp $
*sylpheed-claws-0.7.4 ( 12 Mar 2002 )
- 12 Mar 2002; Seemant Kulleen <seemant@gentoo.org> Simple copy of 0.7.4 ebuild
- but with the additional checks for nls in USE.
+
+ 12 Mar 2002; Seemant Kulleen <seemant@gentoo.org> sylpheed-claws-0.7.4-r1.ebuild
+
+ Uses gpg USE flag instead of gpgme.
+
+*sylpheed-claws-0.7.4 ( 12 Mar 2002 )
+
+ 12 Mar 2002; Seemant Kulleen <seemant@gentoo.org> sylpheed-claws-0.7.4.ebuild
+
+ Simple copy of 0.7.4 ebuild but with the additional checks for nls in USE.
*sylpheed-claws-0.7.2 ( 22 Feb 2002 )
diff --git a/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4 b/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4
deleted file mode 100644
index dc161d80397b..000000000000
--- a/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 834607a29ab6aad64141e2d576c76e23 sylpheed-0.7.4claws.tar.gz 1840066
diff --git a/net-mail/sylpheed-claws/sylpheed-claws-0.7.4.ebuild b/net-mail/sylpheed-claws/sylpheed-claws-0.7.4.ebuild
deleted file mode 100644
index a85e19622e8f..000000000000
--- a/net-mail/sylpheed-claws/sylpheed-claws-0.7.4.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Maintainer: Desktop Team <desktop@gentoo.org>
-# Author: Karl Trygve Kalleberg <karltk@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed-claws/sylpheed-claws-0.7.4.ebuild,v 1.1 2002/03/12 12:44:39 seemant Exp $
-
-S=${WORKDIR}/sylpheed-${PV}claws
-DESCRIPTION="Bleeding edge version of Sylpheed"
-SRC_URI="http://prdownloads.sourceforge.net/sylpheed-claws/sylpheed-${PV}claws.tar.gz"
-HOMEPAGE="http://sylpheed-claws.sf.net"
-
-DEPEND=">=x11-libs/gtk+-1.2.6
- ssl? ( >=dev-libs/openssl-0.9.6b )
- ldap? ( >=net-nds/openldap-2.0.7 )
- gnome? ( >=media-libs/gdk-pixbuf-0.16 )
- spell? ( >=app-text/pspell-0.12.2 )
- xface? ( >=media-libs/compface-1.4 )
- jpilot? ( >=app-misc/jpilot-0.99 )
- imlib? ( >=media-libs/imlib-1.9.10 )
- gpgme? ( >=app-crypt/gpgme-0.2.3 )
- nls? ( sys-devel/gettext )
- "
-
-RDEPEND="$DEPEND"
-
-src_compile() {
- local myconf
-
- use ssl && myconf="${myconf} --enable-ssl"
-
- use gpgme && myconf="${myconf} --enable-gpgme"
-
- use gnome && \
- myconf="${myconf} --enable-gdk-pixbuf" || \
- myconf="${myconf} --disable-gdk-pixbuf"
-
- use imlib && \
- myconf="${myconf} --enable-imlib" || \
- myconf="${myconf} --disable-imlib"
-
- use ldap && myconf="${myconf} --enable-ldap"
-
- use spell && myconf="${myconf} --enable-pspell"
-
- use ipv6 && myconf="${myconf} --enable-ipv6"
-
- use jpilot && myconf="${myconf} --enable-jpilot"
-
- use nls || myconf="${myconf} --disable-nls"
-
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- ${myconf} || die "./configure failed"
-
- emake || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-
- use gnome || rm -rf ${D}/usr/share/gnome
-}