summaryrefslogtreecommitdiff
path: root/mail/mutt-unstable
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2001-02-12 18:34:38 +0000
committertron <tron@pkgsrc.org>2001-02-12 18:34:38 +0000
commit82c75b1854625b0c1faa8e4886f0dc0c24d913f2 (patch)
treef1ffe0907e1f1502bf8957167cf617050a268b75 /mail/mutt-unstable
parent86f011a2e6ed53559edd2268c80cc8e75fb9f589 (diff)
downloadpkgsrc-82c75b1854625b0c1faa8e4886f0dc0c24d913f2.tar.gz
Import today's snapshot of "mutt" as "mutt-unstable" package:
text-based MIME mail client with PGP support This version has IPv6 support and a new IMAPv4 client which works with the server from 2000 series of the "imap-uw" package.
Diffstat (limited to 'mail/mutt-unstable')
-rw-r--r--mail/mutt-unstable/Makefile54
-rw-r--r--mail/mutt-unstable/files/md53
-rw-r--r--mail/mutt-unstable/files/patch-sum3
-rw-r--r--mail/mutt-unstable/patches/patch-aa13
-rw-r--r--mail/mutt-unstable/pkg/COMMENT1
-rw-r--r--mail/mutt-unstable/pkg/DESCR9
-rw-r--r--mail/mutt-unstable/pkg/PLIST64
7 files changed, 147 insertions, 0 deletions
diff --git a/mail/mutt-unstable/Makefile b/mail/mutt-unstable/Makefile
new file mode 100644
index 00000000000..640bbe55a91
--- /dev/null
+++ b/mail/mutt-unstable/Makefile
@@ -0,0 +1,54 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/02/12 18:34:38 tron Exp $
+
+DISTNAME= mutt-unstable-20010212
+PKGNAME= mutt-1.3.14.20010212i
+CATEGORIES= mail
+MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/snapshots/
+
+MAINTAINER= tron@netbsd.org
+HOMEPAGE= http://www.mutt.org/
+
+BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf
+BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake
+BUILD_DEPENDS+= msgfmt:../../devel/gettext
+DEPENDS+= libiconv>=1.5:../../converters/libiconv
+
+USE_LIBINTL= YES
+MAKE_ENV+= CPPFLAGS=-I${LOCALBASE}/include LIBS=-lintl
+CONFIGURE_ENV+= LIBS=-lintl
+GNU_CONFIGURE= YES
+USE_GMAKE= YES
+CONFIGURE_SCRIPT= ./prepare
+CONFIGURE_ARGS+= --with-exec-shell=/bin/ksh \
+ --with-docdir=${PREFIX}/share/doc/mutt \
+ --enable-pop --enable-imap \
+ --without-included-gettext
+USE_CURSES= YES
+REPLACE_NCURSES= configure.in
+
+LDFLAGS+= ${STRIPFLAG}
+M4= ${LOCALBASE}/bin/gm4
+WRKSRC= ${WRKDIR}/${DISTNAME:C/-.*//}
+
+.include "../../mk/bsd.prefs.mk"
+
+.if defined(NEED_NCURSES) && ${NEED_NCURSES} == "YES"
+CONFIGURE_ARGS+= --with-curses=${LOCALBASE}
+.endif
+
+MUTT_USE_SSL?= YES
+
+.if defined(MUTT_USE_SSL) && ${MUTT_USE_SSL} == "YES"
+USE_SSL= yes
+CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
+.else
+CONFIGURE_ARGS+= --without-ssl
+.endif
+
+BUILD_DEFS+= MUTT_USE_SSL
+PLIST_SUBST+= LOCALEBASE=${LOCALEBASE}
+
+pre-configure:
+ cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/mail/mutt-unstable/files/md5 b/mail/mutt-unstable/files/md5
new file mode 100644
index 00000000000..3f25f6c1a78
--- /dev/null
+++ b/mail/mutt-unstable/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 2001/02/12 18:34:38 tron Exp $
+
+MD5 (mutt-unstable-20010212.tar.gz) = 4703f4bffbb243b49514e890be637a8d
diff --git a/mail/mutt-unstable/files/patch-sum b/mail/mutt-unstable/files/patch-sum
new file mode 100644
index 00000000000..97b68710dc2
--- /dev/null
+++ b/mail/mutt-unstable/files/patch-sum
@@ -0,0 +1,3 @@
+$NetBSD: patch-sum,v 1.1.1.1 2001/02/12 18:34:38 tron Exp $
+
+MD5 (patch-aa) = f6f2759768a4493db3901a8d3ce22fca
diff --git a/mail/mutt-unstable/patches/patch-aa b/mail/mutt-unstable/patches/patch-aa
new file mode 100644
index 00000000000..56e8fa4bdf1
--- /dev/null
+++ b/mail/mutt-unstable/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/02/12 18:34:38 tron Exp $
+
+--- mutt_socket.c.orig Mon Oct 16 11:48:29 2000
++++ mutt_socket.c Mon Feb 12 17:07:32 2001
+@@ -340,7 +340,7 @@
+ fd = socket (cur->ai_family, cur->ai_socktype, cur->ai_protocol);
+ if (fd >= 0)
+ {
+- if ((rc = socket_connect (fd, res->ai_addr)) == 0)
++ if ((rc = socket_connect (fd, cur->ai_addr)) == 0)
+ {
+ conn->fd = fd;
+ break;
diff --git a/mail/mutt-unstable/pkg/COMMENT b/mail/mutt-unstable/pkg/COMMENT
new file mode 100644
index 00000000000..d26e554d40a
--- /dev/null
+++ b/mail/mutt-unstable/pkg/COMMENT
@@ -0,0 +1 @@
+text-based MIME mail client with PGP support
diff --git a/mail/mutt-unstable/pkg/DESCR b/mail/mutt-unstable/pkg/DESCR
new file mode 100644
index 00000000000..60af96672d3
--- /dev/null
+++ b/mail/mutt-unstable/pkg/DESCR
@@ -0,0 +1,9 @@
+The Mutt E-Mail Client by Michael Elkins <me@cs.hmc.edu>
+
+``All mail clients suck. This one just sucks less.'' -me, circa 1995
+
+Mutt is a small but very powerful text-based MIME mail client.Mutt
+is highly configurable, and is well suited to the mail power user with
+advanced features like key bindings, keyboard macros, mail threading,
+regular expression searches and a powerful pattern matching language
+for selecting groups of messages.
diff --git a/mail/mutt-unstable/pkg/PLIST b/mail/mutt-unstable/pkg/PLIST
new file mode 100644
index 00000000000..9a995f3fe66
--- /dev/null
+++ b/mail/mutt-unstable/pkg/PLIST
@@ -0,0 +1,64 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2001/02/12 18:34:38 tron Exp $
+bin/flea
+bin/mutt
+bin/muttbug
+bin/pgpewrap
+bin/pgpring
+etc/Muttrc
+etc/mime.types
+man/man1/flea.1
+man/man1/mutt.1
+man/man1/mutt_dotlock.1
+man/man1/muttbug.1
+man/man5/mbox.5
+man/man5/muttrc.5
+share/doc/mutt/COPYRIGHT
+share/doc/mutt/ChangeLog
+share/doc/mutt/GPL
+share/doc/mutt/INSTALL
+share/doc/mutt/NEWS
+share/doc/mutt/PGP-Notes.txt
+share/doc/mutt/README
+share/doc/mutt/README.SECURITY
+share/doc/mutt/README.SSL
+share/doc/mutt/README.UPGRADE
+share/doc/mutt/TODO
+share/doc/mutt/applying-patches.txt
+share/doc/mutt/devel-notes.txt
+share/doc/mutt/samples/Mush.rc
+share/doc/mutt/samples/Pine.rc
+share/doc/mutt/samples/Tin.rc
+share/doc/mutt/samples/gpg.rc
+share/doc/mutt/samples/pgp2.rc
+share/doc/mutt/samples/pgp5.rc
+share/doc/mutt/samples/pgp6.rc
+share/doc/mutt/samples/sample.mailcap
+share/doc/mutt/samples/sample.muttrc
+share/doc/mutt/samples/sample.muttrc-tlr
+share/locale/cs/LC_MESSAGES/mutt.mo
+share/locale/da/LC_MESSAGES/mutt.mo
+share/locale/de/LC_MESSAGES/mutt.mo
+share/locale/el/LC_MESSAGES/mutt.mo
+share/locale/eo/LC_MESSAGES/mutt.mo
+share/locale/es/LC_MESSAGES/mutt.mo
+share/locale/fr/LC_MESSAGES/mutt.mo
+share/locale/gl/LC_MESSAGES/mutt.mo
+share/locale/id/LC_MESSAGES/mutt.mo
+share/locale/it/LC_MESSAGES/mutt.mo
+share/locale/ko/LC_MESSAGES/mutt.mo
+share/locale/lt/LC_MESSAGES/mutt.mo
+share/locale/nl/LC_MESSAGES/mutt.mo
+share/locale/pl/LC_MESSAGES/mutt.mo
+share/locale/pt_BR/LC_MESSAGES/mutt.mo
+share/locale/ru/LC_MESSAGES/mutt.mo
+share/locale/sk/LC_MESSAGES/mutt.mo
+share/locale/sv/LC_MESSAGES/mutt.mo
+share/locale/tr/LC_MESSAGES/mutt.mo
+share/locale/uk/LC_MESSAGES/mutt.mo
+share/locale/zh_CN.GB2312/LC_MESSAGES/mutt.mo
+share/locale/zh_TW.Big5/LC_MESSAGES/mutt.mo
+@exec mkdir -p %D/share/mutt
+@dirrm share/mutt
+@dirrm share/doc/mutt/samples
+@dirrm share/doc/mutt/html
+@dirrm share/doc/mutt