diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-08 20:58:39 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-08 20:58:39 +0000 |
commit | ac401769c687acff7647f41aa62eb9b53f0e779e (patch) | |
tree | 7173ffc2fab15fc6a4194504b4ca8bee5268b5d5 /net-mail/pine | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-ac401769c687acff7647f41aa62eb9b53f0e779e.tar.gz gentoo-2-ac401769c687acff7647f41aa62eb9b53f0e779e.tar.bz2 gentoo-2-ac401769c687acff7647f41aa62eb9b53f0e779e.zip |
*** empty log message ***
Diffstat (limited to 'net-mail/pine')
-rw-r--r-- | net-mail/pine/files/digest | 1 | ||||
-rw-r--r-- | net-mail/pine/pine-4.21-r1.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/net-mail/pine/files/digest b/net-mail/pine/files/digest new file mode 100644 index 000000000000..cdba66b6aa7f --- /dev/null +++ b/net-mail/pine/files/digest @@ -0,0 +1 @@ +MD5 9252a061387de806f8aa1ced885d41f6 pine4.21.tar.gz diff --git a/net-mail/pine/pine-4.21-r1.ebuild b/net-mail/pine/pine-4.21-r1.ebuild new file mode 100644 index 000000000000..203d30c50f77 --- /dev/null +++ b/net-mail/pine/pine-4.21-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-mail/pine/pine-4.21-r1.ebuild,v 1.1 2000/08/08 20:58:38 achim Exp $ + +P=pine-4.21 +A=pine4.21.tar.gz +S=${WORKDIR}/pine4.21 +CATEGORY="net-mail" +DESCRIPTION="Pine, Pico, Pilot, imapd" +SRC_URI="ftp://ftp.cac.washington.edu/pine/"${A} +HOMEPAGE="http://www.washington.edu/pine/" + +src_unpack() { + unpack ${A} + cd ${S}/pine + cp makefile.lnx makefile.orig + sed -e "s:-g -DDEBUG:${CFLAGS}:" makefile.orig > makefile.lnx + + cd ${S}/pico + cp makefile.lnx makefile.orig + sed -e "s:-g -DDEBUG:${CFLAGS}:" makefile.orig > makefile.lnx + +} + +src_compile() { + ./build lnp +} + +src_install() { + cd ${S} + into /usr + dobin bin/pine bin/pico bin/pilot bin/mtest + dosbin bin/imapd + + doman doc/pico.1 doc/pine.1 + + insinto /etc + doins doc/mime.types + newins doc/mailcap.unx mailcap + + dodoc CPYRIGHT README doc/brochure.txt doc/tech-notes.txt + docinto imap + dodoc imap/docs/*.txt imap/docs/CONFIG imap/docs/FAQ imap/docs/RELNOTES + docinto imap/rfc + dodoc imap/docs/rfc/*.txt + docinto html/tech-notes + dodoc doc/tech-notes/*.html +} + + + |