summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Goodyear <g2boojum@gentoo.org>2002-04-13 23:55:19 +0000
committerGrant Goodyear <g2boojum@gentoo.org>2002-04-13 23:55:19 +0000
commit5118f21f919d0f14fff79c2020a4e96adf04db8b (patch)
treebbbaa01c3023b5b4bd03137882c72b6df8a0346e /net-mail
parentmasked crack-attack (diff)
downloadgentoo-2-5118f21f919d0f14fff79c2020a4e96adf04db8b.tar.gz
gentoo-2-5118f21f919d0f14fff79c2020a4e96adf04db8b.tar.bz2
gentoo-2-5118f21f919d0f14fff79c2020a4e96adf04db8b.zip
New version
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/nail/ChangeLog8
-rw-r--r--net-mail/nail/files/digest-nail-9.301
-rw-r--r--net-mail/nail/nail-9.30.ebuild53
3 files changed, 61 insertions, 1 deletions
diff --git a/net-mail/nail/ChangeLog b/net-mail/nail/ChangeLog
index 91f64850221f..d64e6d9d4ea1 100644
--- a/net-mail/nail/ChangeLog
+++ b/net-mail/nail/ChangeLog
@@ -1,7 +1,13 @@
# ChangeLog for net-mail/nail
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-mail/nail/ChangeLog,v 1.1 2002/02/01 21:53:34 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/nail/ChangeLog,v 1.2 2002/04/13 23:55:16 g2boojum Exp $
+*nail-9.30 (13 Apr 2002)
+
+ 13 Apr 2002; Grant Goodyear <g2boojum@gentoo.org> :
+
+ New version
+
*nail-9.27 (1 Feb 2002)
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
diff --git a/net-mail/nail/files/digest-nail-9.30 b/net-mail/nail/files/digest-nail-9.30
new file mode 100644
index 000000000000..f0e4bbd8e740
--- /dev/null
+++ b/net-mail/nail/files/digest-nail-9.30
@@ -0,0 +1 @@
+MD5 b5e233f61b6fa9a8abf4d30b93b2bd71 nail-9.30.tar.gz 142372
diff --git a/net-mail/nail/nail-9.30.ebuild b/net-mail/nail/nail-9.30.ebuild
new file mode 100644
index 000000000000..073115ec0f5b
--- /dev/null
+++ b/net-mail/nail/nail-9.30.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2001 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Grant Goodyear <g2boojum@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/net-mail/nail/nail-9.30.ebuild,v 1.1 2002/04/13 23:55:16 g2boojum Exp $
+
+S=${WORKDIR}/${P}
+
+DESCRIPTION="Nail is a mail user agent derived from Berkeley Mail 8.1 and contains builtin support for MIME messages."
+SRC_URI="http://omnibus.ruf.uni-freiburg.de/~gritter/archive/nail/${P}.tar.gz"
+HOMEPAGE="http://omnibus.ruf.uni-freiburg.de/~gritter/"
+DEPEND="virtual/glibc"
+
+src_compile() {
+ ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} --with-mailspool=~/.maildir || die "configure failed"
+ emake || die "emake failed"
+}
+
+src_install () {
+ #add smtp flag to nail.rc so that it uses smtp by default (making it
+ #essentially mailer independent
+ echo -e "\n#use smtp on the local system by default. Change" >> nail.rc
+ echo -e "#\"localhost\" to your smtp server if you use a remote" >> nail.rc
+ echo -e "#smtp server. (Delete this line to use sendmail instead)" >> nail.rc
+ echo -e "set smtp=localhost" >> nail.rc
+
+ make DESTDIR=${D} install || die "install failed"
+ dodoc AUTHORS COPYING I18N INSTALL README
+ dodir /bin
+ dosym /usr/bin/nail /bin/mail
+ dosym /usr/bin/nail /usr/bin/mail
+ dosym /usr/bin/nail /usr/bin/Mail
+}
+
+pkg_postinst () {
+
+ echo -e "\nNOTE: The nail mailer does _not_ support maildir format.\n" \
+ " It is best to use nail only for outgoing mail, and\n" \
+ " really only use it for scripts that require it.\n\n" \
+ "NOTE: This build has ~/.maildir compiled in as the\n" \
+ " mail spool directory (for incoming mail).\n" \
+ " Nail will work for sending outgoing mail even if\n" \
+ " the mail spool directory does not exist.\n\n" \
+ "NOTE: When used to send mail via a remote smtp server\n" \
+ " nail does not require a local mail transfer agent.\n" \
+ " ISP smtp servers tend to have names like\n" \
+ " mail.ispname.com\n" \
+ " or\n" \
+ " smtp.ispname.com.\n" \
+ " If you do not wish to use a remote smtp server,\n" \
+ " then you WILL have to install a mta such as sendmail,\n" \
+ " postfix, exim, etcetera.\n"
+
+}