diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-06-16 07:10:16 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-06-16 07:10:16 +0000 |
commit | 25b6e201d0d8ebc6f282d6501a3988324912e56f (patch) | |
tree | 5f222586d968a77e77af435dab4b26626fdc1e9c /net-mail | |
parent | gnapster is moving (diff) | |
download | gentoo-2-25b6e201d0d8ebc6f282d6501a3988324912e56f.tar.gz gentoo-2-25b6e201d0d8ebc6f282d6501a3988324912e56f.tar.bz2 gentoo-2-25b6e201d0d8ebc6f282d6501a3988324912e56f.zip |
a bunch of nice stuff from lordjoe
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/spruce/files/digest-spruce-0.7.6 | 1 | ||||
-rw-r--r-- | net-mail/spruce/spruce-0.7.6.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/net-mail/spruce/files/digest-spruce-0.7.6 b/net-mail/spruce/files/digest-spruce-0.7.6 new file mode 100644 index 000000000000..80e5815ea3f5 --- /dev/null +++ b/net-mail/spruce/files/digest-spruce-0.7.6 @@ -0,0 +1 @@ +MD5 68b1c89e594bb83d0b17b27a151c3094 spruce-0.7.6.tar.gz diff --git a/net-mail/spruce/spruce-0.7.6.ebuild b/net-mail/spruce/spruce-0.7.6.ebuild new file mode 100644 index 000000000000..6f24bceff7d5 --- /dev/null +++ b/net-mail/spruce/spruce-0.7.6.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Joe Bormolini <lordjoe@bigfoot.com> + +S=${WORKDIR}/${P} +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.6" +# ssl? ( >=dev-libs/openssl-0.9.6 )" +# Doesn't work? Please test =) + +src_compile() { + + local myopts +# if [ "`use ssl`" ]; then +# myopts="--with-ssl" +# fi + try ./configure --prefix=/usr/X11R6 --host=${CHOST} ${myopts} + try make + +} + +src_install () { + try make DESTDIR=${D} install + dodoc ChangeLog README README.firewall INSTALL +} |