summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-07-17 05:07:51 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-07-17 05:07:51 +0000
commitf9b37dbeb7d197eb948e1b68775071b7b116f5f1 (patch)
tree6daf9c92f3bace91123cbdb5cc0d79660d72eea5 /net-mail/mutt
parentAdded sparc and sparc64 KEYWORDS. (diff)
downloadgentoo-2-f9b37dbeb7d197eb948e1b68775071b7b116f5f1.tar.gz
gentoo-2-f9b37dbeb7d197eb948e1b68775071b7b116f5f1.tar.bz2
gentoo-2-f9b37dbeb7d197eb948e1b68775071b7b116f5f1.zip
repoman'd
Diffstat (limited to 'net-mail/mutt')
-rw-r--r--net-mail/mutt/files/digest-mutt-1.3.221
-rw-r--r--net-mail/mutt/files/digest-mutt-1.3.22-r11
-rw-r--r--net-mail/mutt/files/digest-mutt-1.3.22.11
-rw-r--r--net-mail/mutt/files/digest-mutt-1.3.251
-rw-r--r--net-mail/mutt/files/digest-mutt-1.3.28-r11
-rw-r--r--net-mail/mutt/mutt-1.3.22-r1.ebuild46
-rw-r--r--net-mail/mutt/mutt-1.3.22.1.ebuild46
-rw-r--r--net-mail/mutt/mutt-1.3.22.ebuild42
-rw-r--r--net-mail/mutt/mutt-1.3.25.ebuild43
-rw-r--r--net-mail/mutt/mutt-1.3.28-r1.ebuild44
-rw-r--r--net-mail/mutt/mutt-1.3.28.ebuild21
-rw-r--r--net-mail/mutt/mutt-1.4.ebuild20
12 files changed, 27 insertions, 240 deletions
diff --git a/net-mail/mutt/files/digest-mutt-1.3.22 b/net-mail/mutt/files/digest-mutt-1.3.22
deleted file mode 100644
index af7c2586c2aa..000000000000
--- a/net-mail/mutt/files/digest-mutt-1.3.22
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c69053fc5fe4cc92d56c6e03cc99aef9 mutt-1.3.22i.tar.gz 2471783
diff --git a/net-mail/mutt/files/digest-mutt-1.3.22-r1 b/net-mail/mutt/files/digest-mutt-1.3.22-r1
deleted file mode 100644
index af7c2586c2aa..000000000000
--- a/net-mail/mutt/files/digest-mutt-1.3.22-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c69053fc5fe4cc92d56c6e03cc99aef9 mutt-1.3.22i.tar.gz 2471783
diff --git a/net-mail/mutt/files/digest-mutt-1.3.22.1 b/net-mail/mutt/files/digest-mutt-1.3.22.1
deleted file mode 100644
index 6d44103cb466..000000000000
--- a/net-mail/mutt/files/digest-mutt-1.3.22.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 cef70b45444ddff0a1128d89f9fc7086 mutt-1.3.22.1i.tar.gz 2471986
diff --git a/net-mail/mutt/files/digest-mutt-1.3.25 b/net-mail/mutt/files/digest-mutt-1.3.25
deleted file mode 100644
index 201019d8d931..000000000000
--- a/net-mail/mutt/files/digest-mutt-1.3.25
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4ca669d6697faba8acb5f5b01d574f29 mutt-1.3.25i.tar.gz 2527168
diff --git a/net-mail/mutt/files/digest-mutt-1.3.28-r1 b/net-mail/mutt/files/digest-mutt-1.3.28-r1
deleted file mode 100644
index f6aa8f4cd3d3..000000000000
--- a/net-mail/mutt/files/digest-mutt-1.3.28-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 eba9bd09853ff7e441712e2d10d8632b mutt-1.3.28i.tar.gz 2546513
diff --git a/net-mail/mutt/mutt-1.3.22-r1.ebuild b/net-mail/mutt/mutt-1.3.22-r1.ebuild
deleted file mode 100644
index 6139b6252e80..000000000000
--- a/net-mail/mutt/mutt-1.3.22-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2001 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Daniel Robbins <drobbins@gentoo.org>,
-# Anonymous,
-# Aron Griffis <agriffis@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.22-r1.ebuild,v 1.2 2002/07/11 06:30:47 drobbins Exp $
-
-S=$WORKDIR/$P
-DESCRIPTION="a small but very powerful text-based mail client"
-SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-${PV}i.tar.gz"
-HOMEPAGE="http://www.mutt.org"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )
- >=sys-libs/ncurses-5.2
- slang? ( >=sys-libs/slang-1.4.2 )
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-src_compile() {
- local myconf
- use nls && myconf="--enable-nls" \
- || myconf="--disable-nls"
- use ssl && myconf="$myconf --with-ssl" \
- || myconf="$myconf --without-ssl"
- # --without-slang doesn't work;
- # specify --with-curses if you don't want slang
- # (26 Sep 2001 agriffis)
- use slang && myconf="$myconf --with-slang" \
- || myconf="$myconf --with-curses"
- ./configure --host=$CHOST \
- --prefix=/usr --sysconfdir=/etc/mutt \
- --mandir=/usr/share/man --with-docdir=/usr/share/doc/mutt-$PVR \
- --with-regex --enable-pop --enable-imap --enable-nfs-fix \
- --with-homespool=Maildir $myconf
- assert "./configure failed (myconf=$myconf)"
- cp doc/Makefile doc/Makefile.orig
- sed 's/README.UPGRADE//' doc/Makefile.orig > doc/Makefile
- make || die "make failed (myconf=$myconf)"
-}
-
-src_install () {
- make DESTDIR=$D install || die
- find $D/usr/share/doc -type f | xargs gzip
- insinto /etc/mutt
- doins $FILESDIR/Muttrc
-}
diff --git a/net-mail/mutt/mutt-1.3.22.1.ebuild b/net-mail/mutt/mutt-1.3.22.1.ebuild
deleted file mode 100644
index 6056af27f798..000000000000
--- a/net-mail/mutt/mutt-1.3.22.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2001 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Daniel Robbins <drobbins@gentoo.org>,
-# Anonymous,
-# Aron Griffis <agriffis@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.22.1.ebuild,v 1.2 2002/07/11 06:30:47 drobbins Exp $
-
-S=$WORKDIR/$P
-DESCRIPTION="a small but very powerful text-based mail client"
-SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-${PV}i.tar.gz"
-HOMEPAGE="http://www.mutt.org"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )
- >=sys-libs/ncurses-5.2
- slang? ( >=sys-libs/slang-1.4.2 )
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-src_compile() {
- local myconf
- use nls && myconf="--enable-nls" \
- || myconf="--disable-nls"
- use ssl && myconf="$myconf --with-ssl" \
- || myconf="$myconf --without-ssl"
- # --without-slang doesn't work;
- # specify --with-curses if you don't want slang
- # (26 Sep 2001 agriffis)
- use slang && myconf="$myconf --with-slang" \
- || myconf="$myconf --with-curses"
- ./configure --host=$CHOST \
- --prefix=/usr --sysconfdir=/etc/mutt \
- --mandir=/usr/share/man --with-docdir=/usr/share/doc/mutt-$PVR \
- --with-regex --enable-pop --enable-imap --enable-nfs-fix \
- --with-homespool=Maildir $myconf
- assert "./configure failed (myconf=$myconf)"
- cp doc/Makefile doc/Makefile.orig
- sed 's/README.UPGRADE//' doc/Makefile.orig > doc/Makefile
- make || die "make failed (myconf=$myconf)"
-}
-
-src_install () {
- make DESTDIR=$D install || die
- find $D/usr/share/doc -type f | xargs gzip
- insinto /etc/mutt
- doins $FILESDIR/Muttrc
-}
diff --git a/net-mail/mutt/mutt-1.3.22.ebuild b/net-mail/mutt/mutt-1.3.22.ebuild
deleted file mode 100644
index 28cf729acf7b..000000000000
--- a/net-mail/mutt/mutt-1.3.22.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2001 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.22.ebuild,v 1.2 2002/07/11 06:30:47 drobbins Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="a small but very powerful text-based mail client"
-SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-1.3.22i.tar.gz"
-HOMEPAGE="http://www.mutt.org"
-
-DEPEND="virtual/glibc nls? ( sys-devel/gettext ) >=sys-libs/ncurses-5.2 slang? ( >=sys-libs/slang-1.4.2 ) ssl? ( >=dev-libs/openssl-0.9.6 )"
-RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2 slang? ( >=sys-libs/slang-1.4.2 ) ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-src_compile() {
- local myconf
- if [ -z "`use nls`" ] ; then
- myconf="--disable-nls"
- fi
- if [ "`use ssl`" ] ; then
- myconf="$myconf --with-ssl"
- fi
- if [ "`use slang`" ] ; then
- myconf="$myconf --with-slang"
- fi
- ./configure --prefix=/usr --sysconfdir=/etc/mutt --host=${CHOST} --with-regex --enable-pop --enable-imap --enable-nfs-fix --with-homespool=Maildir $myconf || die
- cp doc/Makefile doc/Makefile.orig
- sed 's/README.UPGRADE//' doc/Makefile.orig > doc/Makefile
- make || die
-}
-
-src_install () {
- cd ${S}
- make DESTDIR=${D} install || die
- dodir /usr/share/doc/${PVF}
- mv ${D}/usr/doc/mutt/* ${D}/usr/share/doc/${PVF}
- mv ${D}/usr/man ${D}/usr/share
- rm -rf ${D}/usr/doc/mutt
- gzip ${D}/usr/share/doc/${PVF}/html/*
- gzip ${D}/usr/share/doc/${PVF}/samples/*
- gzip ${D}/usr/share/doc/${PVF}/*
- insinto /etc/mutt
- doins ${FILESDIR}/Muttrc*
-}
diff --git a/net-mail/mutt/mutt-1.3.25.ebuild b/net-mail/mutt/mutt-1.3.25.ebuild
deleted file mode 100644
index cab5a3145918..000000000000
--- a/net-mail/mutt/mutt-1.3.25.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.25.ebuild,v 1.5 2002/07/11 06:30:47 drobbins Exp $
-
-S=$WORKDIR/$P
-DESCRIPTION="a small but very powerful text-based mail client"
-SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-${PV}i.tar.gz"
-HOMEPAGE="http://www.mutt.org"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )
- >=sys-libs/ncurses-5.2
- slang? ( >=sys-libs/slang-1.4.2 )
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-src_compile() {
- local myconf
- use nls && myconf="--enable-nls" \
- || myconf="--disable-nls"
- use ssl && myconf="$myconf --with-ssl" \
- || myconf="$myconf --without-ssl"
- # --without-slang doesn't work;
- # specify --with-curses if you don't want slang
- # (26 Sep 2001 agriffis)
- use slang && myconf="$myconf --with-slang" \
- || myconf="$myconf --with-curses"
- ./configure --host=$CHOST \
- --prefix=/usr --sysconfdir=/etc/mutt \
- --mandir=/usr/share/man --with-docdir=/usr/share/doc/mutt-$PVR \
- --with-regex --enable-pop --enable-imap --enable-nfs-fix \
- --with-homespool=Maildir $myconf
- assert "./configure failed (myconf=$myconf)"
- cp doc/Makefile doc/Makefile.orig
- sed 's/README.UPGRADE//' doc/Makefile.orig > doc/Makefile
- make || die "make failed (myconf=$myconf)"
-}
-
-src_install () {
- make DESTDIR=$D install || die
- find $D/usr/share/doc -type f | xargs gzip
- insinto /etc/mutt
- doins $FILESDIR/Muttrc
-}
diff --git a/net-mail/mutt/mutt-1.3.28-r1.ebuild b/net-mail/mutt/mutt-1.3.28-r1.ebuild
deleted file mode 100644
index 7d1ee30c359d..000000000000
--- a/net-mail/mutt/mutt-1.3.28-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.28-r1.ebuild,v 1.2 2002/07/11 06:30:47 drobbins Exp $
-
-S=$WORKDIR/$P
-DESCRIPTION="a small but very powerful text-based mail client"
-SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-${PV}i.tar.gz"
-HOMEPAGE="http://www.mutt.org"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )
- >=sys-libs/ncurses-5.2
- slang? ( >=sys-libs/slang-1.4.2 )
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-src_compile() {
- local myconf
- use nls && myconf="--enable-nls" \
- || myconf="--disable-nls"
- use ssl && myconf="$myconf --with-ssl" \
- || myconf="$myconf --without-ssl"
- # --without-slang doesn't work;
- # specify --with-curses if you don't want slang
- # (26 Sep 2001 agriffis)
- use slang && myconf="$myconf --with-slang" \
- || myconf="$myconf --with-curses"
- ./configure --host=$CHOST \
- --prefix=/usr --sysconfdir=/etc/mutt \
- --mandir=/usr/share/man --with-docdir=/usr/share/doc/mutt-$PVR \
- --with-regex --enable-pop --enable-imap --enable-nfs-fix \
- --disable-fcntl --enable-flock --enable-external-dotlock \
- --with-homespool=Maildir $myconf
- assert "./configure failed (myconf=$myconf)"
- cp doc/Makefile doc/Makefile.orig
- sed 's/README.UPGRADE//' doc/Makefile.orig > doc/Makefile
- make || die "make failed (myconf=$myconf)"
-}
-
-src_install () {
- make DESTDIR=$D install || die
- find $D/usr/share/doc -type f |grep -v html | xargs gzip
- insinto /etc/mutt
- doins $FILESDIR/Muttrc
-}
diff --git a/net-mail/mutt/mutt-1.3.28.ebuild b/net-mail/mutt/mutt-1.3.28.ebuild
index f2846567c52f..7bda4e5acded 100644
--- a/net-mail/mutt/mutt-1.3.28.ebuild
+++ b/net-mail/mutt/mutt-1.3.28.ebuild
@@ -1,17 +1,21 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.28.ebuild,v 1.3 2002/07/11 06:30:47 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.28.ebuild,v 1.4 2002/07/17 05:07:50 seemant Exp $
-S=$WORKDIR/$P
+S=$WORKDIR/${P}
DESCRIPTION="a small but very powerful text-based mail client"
SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-${PV}i.tar.gz"
HOMEPAGE="http://www.mutt.org"
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )
- >=sys-libs/ncurses-5.2
- slang? ( >=sys-libs/slang-1.4.2 )
- ssl? ( >=dev-libs/openssl-0.9.6 )"
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
+
+DEPEND=">=sys-libs/ncurses-5.2
+ ssl? ( >=dev-libs/openssl-0.9.6 )
+ slang? ( >=sys-libs/slang-1.4.2 )"
+
+RDEPEND="nls? ( sys-devel/gettext )"
src_compile() {
local myconf
@@ -40,4 +44,7 @@ src_install () {
find $D/usr/share/doc -type f |grep -v html | xargs gzip
insinto /etc/mutt
doins $FILESDIR/Muttrc
+
+ dodoc BEWARE COPYRIGHT ChangeLog GPL INSTALL NEWS OPS* PATCHES README* \
+ TODO VERSION
}
diff --git a/net-mail/mutt/mutt-1.4.ebuild b/net-mail/mutt/mutt-1.4.ebuild
index 6c54652f35a9..48fdec1cb819 100644
--- a/net-mail/mutt/mutt-1.4.ebuild
+++ b/net-mail/mutt/mutt-1.4.ebuild
@@ -1,17 +1,21 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.4.ebuild,v 1.2 2002/07/11 06:30:47 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.4.ebuild,v 1.3 2002/07/17 05:07:50 seemant Exp $
-S=$WORKDIR/$P
+S=$WORKDIR/${P}
DESCRIPTION="a small but very powerful text-based mail client"
SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-${PV}i.tar.gz"
HOMEPAGE="http://www.mutt.org"
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )
- >=sys-libs/ncurses-5.2
- slang? ( >=sys-libs/slang-1.4.2 )
- ssl? ( >=dev-libs/openssl-0.9.6 )"
+DEPEND=">=sys-libs/ncurses-5.2
+ ssl? ( >=dev-libs/openssl-0.9.6 )
+ slang? ( >=sys-libs/slang-1.4.2 )"
+
+RDEPEND="nls? ( sys-devel/gettext )"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
src_compile() {
local myconf
@@ -41,4 +45,6 @@ src_install () {
find $D/usr/share/doc -type f |grep -v html | xargs gzip
insinto /etc/mutt
doins $FILESDIR/Muttrc
+
+ dodoc BEWARE COPYRIGHT ChangeLog NEWS OPS* PATCHES README* TODO VERSION
}