update to 10.3

from MAINTAINER

lots of bugfixes
new pop3 and pop3s support

naddy@ OK
This commit is contained in:
sturm 2002-12-04 08:35:12 +00:00
parent f5afb360a6
commit d0b3670aed
5 changed files with 34 additions and 17 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.1.1.1 2002/07/23 19:13:09 naddy Exp $
# $OpenBSD: Makefile,v 1.2 2002/12/04 08:35:12 sturm Exp $
COMMENT= "enhanced, MIME capable Berkeley Mail"
DISTNAME= nail-9.31
DISTNAME= nail-10.3
CATEGORIES= mail
HOMEPAGE= http://omnibus.ruf.uni-freiburg.de/~gritter/
@ -15,13 +15,13 @@ PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://omnibus.ruf.uni-freiburg.de/~gritter/archive/nail/ \
http://jneitzel.freeshell.org/nail/
http://home.bluemarble.net/~jneitzel/nail/
MODULES= iconv
SEPARATE_BUILD= concurrent
CONFIGURE_STYLE= autoconf
CONFIGURE_ARGS= --with-rcfile="${SYSCONFDIR}/nail.rc"
CONFIGURE_ARGS= --with-rcfile="${SYSCONFDIR}/nail.rc" --with-openssl
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
LIBS="-liconv"

View File

@ -1,3 +1,3 @@
MD5 (nail-9.31.tar.gz) = d274d7bcd408d10fb0e31345e071bc6d
RMD160 (nail-9.31.tar.gz) = 2dbf4d6bc435d5930fb25bb4ed2128c1eee7cd58
SHA1 (nail-9.31.tar.gz) = eb14a4b4848b8b0745890a82012d46e6c5aaed8d
MD5 (nail-10.3.tar.gz) = 7e3319fbf553524b1c0e639a484a4f8e
RMD160 (nail-10.3.tar.gz) = 6383e1b72c7855724fa424ec3d0fca22022eaf95
SHA1 (nail-10.3.tar.gz) = 5eaa3dfe2c9519d4dea0d3c414581430fc1b9fd8

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-configure_in,v 1.1.1.1 2002/07/23 19:13:09 naddy Exp $
--- configure.in.orig Tue Jul 23 02:08:06 2002
+++ configure.in Tue Jul 23 02:15:59 2002
@@ -190,7 +190,8 @@ AC_CHECK_FUNC(gethostent, AC_DEFINE(HAVE
$OpenBSD: patch-configure_in,v 1.2 2002/12/04 08:35:12 sturm Exp $
--- configure.in.orig Wed Nov 27 20:02:33 2002
+++ configure.in Sun Dec 1 20:45:49 2002
@@ -218,7 +218,8 @@ AC_CHECK_FUNC(gethostbyname, AC_DEFINE(H
)
if test "x$enable_all_chars" != xyes
then AC_CHECK_HEADERS(iconv.h, AC_CHECK_FUNCS(iconv, ,
- echo "*** Character set conversion not available ***" >&2),
+ [AC_CHECK_FUNCS(libiconv, , AC_DEFINE(HAVE_ICONV),
+ [AC_CHECK_FUNCS(libiconv, AC_DEFINE(HAVE_ICONV),
+ echo "*** Character set conversion not available ***" >&2)]),
echo "*** Character set conversion not available ***" >&2)
AC_CHECK_HEADERS(locale.h, AC_CHECK_FUNCS(setlocale, ,

View File

@ -0,0 +1,19 @@
$OpenBSD: patch-nail_rc,v 1.1 2002/12/04 08:35:12 sturm Exp $
--- nail.rc.orig Sat Oct 26 19:12:25 2002
+++ nail.rc Sun Dec 1 22:43:30 2002
@@ -1,4 +1,4 @@
-# This is the configuration file for nail, a mail user agent.
+# This is the system-wide configuration file for nail, a mail user agent.
# The values below are reasonable defaults.
# See nail(1) for further options.
@@ -10,6 +10,9 @@ set append
# Ask for a message subject.
set ask
+
+# Use the traditional BSD Mail interface style.
+set bsdcompat
# We assume a CRT-like Terminal and thus want to use a pager.
set crt

View File

@ -1,7 +1,5 @@
Nail is a mail user agent derived from Berkeley Mail 8.1 and contains
builtin support for MIME messages. This means it can handle international
character sets as well as attachments. In recent system environments, nail
is Unicode/UTF-8 capable. It further contains some minor enhancements like
the ability to set a From: Address.
Nail is a mail user agent derived from Berkeley Mail 8.1 and is intended
to provide the functionality of the POSIX.2 mailx command with additional
support for MIME messages, POP3 and SMTP.
WWW: ${HOMEPAGE}