blob: c789051b1b8b860558336177e0ee29c1c3eea0d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/nmzmail/nmzmail-0.1.3.ebuild,v 1.3 2007/07/14 22:22:19 mr_bones_ Exp $
DESCRIPTION="Fast mail searchng for mutt using namazu"
HOMEPAGE="http://www.ecademix.com/JohannesHofmann/#nmzmail"
SRC_URI="http://www.ecademix.com/JohannesHofmann/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="sys-libs/readline"
RDEPEND=">=app-text/namazu-2"
src_compile() {
econf || die "could not configure"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "Install failed"
dodoc README AUTHORS NEWS
}
|