diff options
author | Andrej Kacian <ticho@gentoo.org> | 2007-03-11 01:19:14 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2007-03-11 01:19:14 +0000 |
commit | 956435b190ab5c84832d8f6910eebc1fcf6e763f (patch) | |
tree | 958d64abbb07cc605a6422c7b4d468f683b519a3 /net-mail/mpack/mpack-1.6.ebuild | |
parent | Alpha love. (diff) | |
download | historical-956435b190ab5c84832d8f6910eebc1fcf6e763f.tar.gz historical-956435b190ab5c84832d8f6910eebc1fcf6e763f.tar.bz2 historical-956435b190ab5c84832d8f6910eebc1fcf6e763f.zip |
Version bump. Fixes bug #161274, reported by Rossen Apostolov <rossen at protein.osaka-u.ac.jp>.
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'net-mail/mpack/mpack-1.6.ebuild')
-rw-r--r-- | net-mail/mpack/mpack-1.6.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-mail/mpack/mpack-1.6.ebuild b/net-mail/mpack/mpack-1.6.ebuild new file mode 100644 index 000000000000..7380787993a9 --- /dev/null +++ b/net-mail/mpack/mpack-1.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mpack/mpack-1.6.ebuild,v 1.1 2007/03/11 01:19:13 ticho Exp $ + +inherit eutils + +DESCRIPTION="Command-line MIME encoding and decoding utilities" +HOMEPAGE="ftp://ftp.andrew.cmu.edu/pub/mpack/" +SRC_URI="ftp://ftp.andrew.cmu.edu/pub/mpack/${P}.tar.gz" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${P}-gentoo.patch +} + +src_compile() { + econf || die + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc README.* Changes +} |