blob: eb3a72ccb888c4bf72e07199b306b2ef515231d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/nmzmail/nmzmail-1.1.ebuild,v 1.2 2010/08/10 12:43:33 fauli Exp $
EAPI=2
DESCRIPTION="Fast mail searchng for mutt using namazu"
HOMEPAGE="http://www.ecademix.com/JohannesHofmann/nmzmail.html"
SRC_URI="http://www.ecademix.com/JohannesHofmann/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="sys-libs/readline"
RDEPEND="${DEPEND}
>=app-text/namazu-2"
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc README AUTHORS ChangeLog || die
}
|