summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-05-25 21:44:26 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-05-25 21:44:26 +0000
commit84a53c264b5a61baf5b525135476aaffdf5cd7a5 (patch)
treee392f571a47fce2127a7681f34879f2e09b3c551 /net-mail/balsa/balsa-1.3.5.ebuild
parentfixed avifile's code to support gcc3.1. masked until 2.95.3 users report it t... (diff)
downloadgentoo-2-84a53c264b5a61baf5b525135476aaffdf5cd7a5.tar.gz
gentoo-2-84a53c264b5a61baf5b525135476aaffdf5cd7a5.tar.bz2
gentoo-2-84a53c264b5a61baf5b525135476aaffdf5cd7a5.zip
fix0red
Diffstat (limited to 'net-mail/balsa/balsa-1.3.5.ebuild')
-rw-r--r--net-mail/balsa/balsa-1.3.5.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/net-mail/balsa/balsa-1.3.5.ebuild b/net-mail/balsa/balsa-1.3.5.ebuild
deleted file mode 100644
index 181175e4d656..000000000000
--- a/net-mail/balsa/balsa-1.3.5.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Bruce A. Locke (blocke@shivan.org)
-# Modified by Riccardo Persichetti (ricpersi@libero.it)
-# $Header: /var/cvsroot/gentoo-x86/net-mail/balsa/balsa-1.3.5.ebuild,v 1.3 2002/05/23 06:50:16 seemant Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Balsa: email client for GNOME"
-SRC_URI="http://www.theochem.kth.se/~pawsa/${PN}/${P}.tar.bz2"
-HOMEPAGE="http://www.balsa.net"
-
-DEPEND="=dev-libs/glib-1.2*
- =x11-libs/gtk+-1.2*
- >=media-libs/imlib-1.9.10-r1
- >=gnome-base/gnome-libs-1.4.1.4
- >=gnome-base/ORBit-0.5.10-r1
- >=media-libs/gdk-pixbuf-0.13.0
- >=net-libs/libesmtp-0.8.11
- nls? ( sys-devel/gettext )
- ssl? ( dev-libs/openssl )
- cups? ( >=gnome-base/gnome-print-0.30 )
- perl? ( >=dev-libs/libpcre-3.4 )
- spell? ( >=app-text/pspell-0.11.2 )
- gtkhtml? ( >=gnome-extra/gtkhtml-0.16.1 )"
-
-src_unpack() {
- unpack ${P}.tar.bz2
- # this patch is from Riccardo Persichetti
- # (ricpersi@libero.it) to make balsa compile
- patch -p0 < ${FILESDIR}/${P}.diff
-}
-
-src_compile() {
- local myconf
- use nls || myconf="${myconf} --disable-nls"
- use ssl && myconf="${myconf} --with-ssl"
- use gtkhtml && myconf="${myconf} --with-gtkhtml"
- use perl && myconf="${myconf} --enable-pcre"
- use spell && myconf="${myconf} --enable-all"
-
- libmutt/configure --prefix=/usr \
- --host=${CHOST} \
- --with-mailpath=/var/mail || die "configure libmutt failed"
-
- myconf="${myconf} --enable-threads"
-
- econf ${myconf} || die "configure balsa failed"
- emake || die "emake failed"
-}
-
-
-
-src_install () {
- make \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man \
- gnomedatadir=${D}/usr/share install || die "make install failed"
- dodoc AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README TODO
- docinto docs
- dodoc docs/*
-}