+++ /dev/null
-# ChangeLog for mail-client/spruce
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/spruce/ChangeLog,v 1.6 2005/04/24 03:00:27 hansmi Exp $
-
- 24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
- spruce-0.7.6-r2.ebuild:
- Stable on ppc.
-
- 01 Sep 2004; Karol Wojtaszek <sekretarz@gentoo.org>
- +files/spruce-gcc34.patch, spruce-0.7.6-r2.ebuild:
- Fixed gcc-3.4 compile problems. Bug #50428
-
- 04 Jun 2004; David Holm <dholm@gentoo.org> spruce-0.7.6-r2.ebuild:
- Added to ~ppc.
-
-*spruce-0.7.6-r2 (29 May 2004)
-
- 29 May 2004; Seemant Kulleen <seemant@gentoo.org> +metadata.xml,
- +spruce-0.7.6-r2.ebuild:
- Moved from net-mail/spruce to mail-client/spruce.
-
- 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
-
-*spruce-0.7.6-r2 (15 Apr 2002)
-
- 15 Apr 2002; Seemant Kulleen <seemant@gentoo.org> spruce-0.7.6-r2.ebuild :
-
- Changed the gpg USE toggle to the more general crypt USE toggle instead.
-
-*spruce-0.7.6-r2 (1 Feb 2002)
-
- 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
-
- Added initial ChangeLog which should be updated whenever the package is
- updated in any way. This changelog is targetted to users. This means that the
- comments should well explained and written in clean English. The details about
- writing correct changelogs are explained in the skel.ChangeLog file which you
- can find in the root directory of the portage repository.
+++ /dev/null
-MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161
-MD5 dac6571eb18bbaca3a7ee00191efc28d ChangeLog 1456
-MD5 6f4731a1a05241c6e981e5f221f357ec spruce-0.7.6-r2.ebuild 1472
-MD5 91e661ac32b60a1ce13198c80e6db8f3 files/spruce-gcc34.patch 229
-MD5 ce65420038bf19f976bbf0a1bda9686e files/digest-spruce-0.7.6-r2 64
+++ /dev/null
-MD5 68b1c89e594bb83d0b17b27a151c3094 spruce-0.7.6.tar.gz 888240
+++ /dev/null
---- src/filters.c.orig 2001-03-05 02:26:34.000000000 +0100
-+++ src/filters.c 2004-05-25 00:37:02.884676792 +0200
-@@ -517,6 +517,7 @@
- gtk_entry_set_text (GTK_ENTRY (forward_entry), "");
- break;
- default:
-+ break;
- }
- }
-
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>net-mail</herd>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/spruce/spruce-0.7.6-r2.ebuild,v 1.6 2005/04/24 03:00:27 hansmi Exp $
-
-inherit eutils
-
-IUSE="ssl nls gnome crypt"
-
-DESCRIPTION="Gtk email client"
-SRC_URI="ftp://spruce.sourceforge.net/pub/spruce/devel/${P}.tar.gz"
-HOMEPAGE="http://spruce.sourceforge.net/"
-
-DEPEND="=x11-libs/gtk+-1.2*
- gnome-base/libglade
- ssl? ( >=dev-libs/openssl-0.9.6 )
- crypt? ( app-crypt/gnupg )
- gnome? ( >=gnome-base/gnome-print-0.29-r1 )"
-
-RDEPEND="nls? ( sys-devel/gettext )"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 sparc ppc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # gcc-3.4 fix
- epatch ${FILESDIR}/${PN}-gcc34.patch
-
- autoconf
-}
-
-src_compile() {
- local myconf
-
- use nls \
- || myconf="--disable-nls"
-
- use ssl \
- && echo "SSL does not work"
- # myconf="${myconf} --with-ssl"
-
- use crypt \
- && myconf="${myconf} --enable-pgp" \
- || myconf="${myconf} --disable-pgp"
-
- use gnome \
- && myconf="${myconf} --enable-gnome"
-
- CFLAGS="${CFLAGS} `gnome-config --cflags print gdk_pixbuf`"
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install () {
- # Don't use DESTDIR, it doesn't follow the rules
- make prefix=${D}/usr \
- sysconfdir=${D}/etc \
- localstatedir=${D}/var/lib \
- mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info \
- install || die
-
- dodoc ChangeLog README* AUTHORS DESIGN NEWS THANKS TODO WISHLIST
-}