diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-06-16 07:10:15 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-06-16 07:10:15 +0000 |
commit | f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a (patch) | |
tree | 9d40a6c17d4788fbc837ff2f7f5188969e850bef /net-mail/spruce | |
parent | gnapster is moving (diff) | |
download | historical-f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a.tar.gz historical-f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a.tar.bz2 historical-f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a.zip |
a bunch of nice stuff from lordjoe
Diffstat (limited to 'net-mail/spruce')
-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 +} |