summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-03-27 08:56:53 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-03-27 08:56:53 +0000
commit96d3fc961f7e8b9c1f41dd3637ca3ee66ae5bb78 (patch)
treea531b6810fe7aa0d5b2bf1eb8a6b5493e034c224 /net-mail
parentadded date to ChangeLog entry... whoops (diff)
downloadgentoo-2-96d3fc961f7e8b9c1f41dd3637ca3ee66ae5bb78.tar.gz
gentoo-2-96d3fc961f7e8b9c1f41dd3637ca3ee66ae5bb78.tar.bz2
gentoo-2-96d3fc961f7e8b9c1f41dd3637ca3ee66ae5bb78.zip
removed older ebuild
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.11
-rw-r--r--net-mail/sylpheed-claws/sylpheed-claws-0.7.1.ebuild81
2 files changed, 0 insertions, 82 deletions
diff --git a/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.1 b/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.1
deleted file mode 100644
index 6bcb40cf0b8d..000000000000
--- a/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7d1c4c53f4ac12dbbc1116dd4407f1a8 sylpheed-0.7.1claws.tar.gz 1739785
diff --git a/net-mail/sylpheed-claws/sylpheed-claws-0.7.1.ebuild b/net-mail/sylpheed-claws/sylpheed-claws-0.7.1.ebuild
deleted file mode 100644
index 6d6c3047a10f..000000000000
--- a/net-mail/sylpheed-claws/sylpheed-claws-0.7.1.ebuild
+++ /dev/null
@@ -1,81 +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.1.ebuild,v 1.3 2002/03/06 18:55:22 gbevin 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 )
- pixbuf? ( >=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 )
- "
-
-RDEPEND="$DEPEND"
-
-src_compile() {
- local myconf
-
- use ssl && \
- myconf="$myconf --enable-ssl" || \
- myconf="$myconf --disable-ssl"
-
- use gpgme && \
- myconf="$myconf --enable-gpgme" || \
- myconf="$myconf --disable-gpgme"
-
- use pixbuf && \
- myconf="$myconf --enable-gtk-pixbuf" || \
- myconf="$myconf --disable-gtk-pixbuf"
-
- use xface && \
- myconf="$myconf --enable-compface" || \
- myconf="$myconf --disable-compface"
-
- use ldap && \
- myconf="$myconf --enable-ldap" || \
- myconf="$myconf --disable-ldap"
-
- use spell && \
- myconf="$myconf --enable-pspell" || \
- myconf="$myconf --disable-pspell"
-
- use ipv6 &&
- myconf="$myconf --enable-ipv6" || \
- myconf="$myconf --disable-ipv6"
-
- use jpilot && \
- myconf="$myconf --enable-jpilot" || \
- myconf="$myconf --disable-jpilot"
-
- use imlib && \
- myconf="$myconf --enable-imlib" || \
- myconf="$myconf --disable-imlib"
-
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- ${myconf} || die "./configure failed"
-
- emake || die
- #make || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-
- if [ -z "`use gnome`" ] ; then
- rm -rf ${D}/usr/share/gnome
- fi
-}