diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2003-03-29 14:31:22 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2003-03-29 14:31:22 +0000 |
commit | 42f8a58c3a501e8bd5f190e228b7f106b44a9af7 (patch) | |
tree | d3157315dd98e9ca8aaf6ca0261d56e97de4f61c /net-mail/mutt | |
parent | fixed bug #18317 (diff) | |
download | gentoo-2-42f8a58c3a501e8bd5f190e228b7f106b44a9af7.tar.gz gentoo-2-42f8a58c3a501e8bd5f190e228b7f106b44a9af7.tar.bz2 gentoo-2-42f8a58c3a501e8bd5f190e228b7f106b44a9af7.zip |
fixed bug. #18317
Diffstat (limited to 'net-mail/mutt')
-rw-r--r-- | net-mail/mutt/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/mutt/mutt-1.5.4.ebuild | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/net-mail/mutt/ChangeLog b/net-mail/mutt/ChangeLog index 87a74b91418d..c7a8e6d9ac5a 100644 --- a/net-mail/mutt/ChangeLog +++ b/net-mail/mutt/ChangeLog @@ -1,12 +1,15 @@ # ChangeLog for net-mail/mutt # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/ChangeLog,v 1.25 2003/03/29 14:13:22 nakano Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/ChangeLog,v 1.26 2003/03/29 14:31:22 nakano Exp $ 26 Mar 2003; Peter Johanson <latexer@gentoo.org> : Changed 'use_enable ssl' to 'use_with ssl'. bug #18253 *mutt-1.5.4 (25 Mar 2003) + 29 Mar 2003; Masatomo Nakano <nakano@gentoo.org> mutt-1.5.4.ebuild: + fixed bug. #18317 + 25 Mar 2003; Peter Johanson <latexer@gentoo.org> mutt-1.5.4.ebuild: Version bump. thanks to knghtbrd for the ebuild diff --git a/net-mail/mutt/mutt-1.5.4.ebuild b/net-mail/mutt/mutt-1.5.4.ebuild index ef1283216065..b75fa3ca0a14 100644 --- a/net-mail/mutt/mutt-1.5.4.ebuild +++ b/net-mail/mutt/mutt-1.5.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.5.4.ebuild,v 1.4 2003/03/26 23:30:41 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.5.4.ebuild,v 1.5 2003/03/29 14:31:22 nakano Exp $ IUSE="ssl nls slang cjk crypt imap" @@ -12,7 +12,7 @@ S=$WORKDIR/${P} DESCRIPTION="a small but very powerful text-based mail client" SRC_URI="ftp://ftp.mutt.org/mutt/devel/mutt-${PV}i.tar.gz http://www.spinnaker.de/mutt/compressed/patch-${PV}.rr.compressed.1.gz - cjk? ( http://www.emaillab.org/mutt/1.5/mutt-${PV}i-ja.1.tar.gz ) + cjk? ( http://www.emaillab.org/mutt/1.5/${P}i-ja.1.tar.gz ) http://cedricduval.free.fr/download/mutt/${edit_threads}" HOMEPAGE="http://www.mutt.org" @@ -30,15 +30,17 @@ inherit flag-o-matic src_unpack() { unpack ${P}i.tar.gz - if [ "`use cjk`" ]; then - unpack mutt-${P}i-ja.1.tar.gz - cd ${S} - epatch ../mutt-${PV}i-ja.1/patch-${PV}.tt.ja.1 - fi cd ${S} epatch ${DISTDIR}/patch-${PV}.rr.compressed.1.gz epatch ${DISTDIR}/${edit_threads} + + if [ "`use cjk`" ]; then + cd ${WORKDIR} + unpack ${P}i-ja.1.tar.gz + cd ${S} + epatch ../${P}i-ja.1/patch-${PV}.tt.ja.1 + fi } src_compile() { |