28 lines
642 B
Bash
28 lines
642 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-mail/mboxgrep/mboxgrep-0.7.9.ebuild,v 1.8 2009/09/23 19:08:03 patrick Exp $
|
|
|
|
DESCRIPTION="Grep for mbox files"
|
|
SRC_URI="mirror://sourceforge/mboxgrep/${P}.tar.gz"
|
|
HOMEPAGE="http://mboxgrep.sf.net"
|
|
|
|
DEPEND=""
|
|
|
|
SLOT="0"
|
|
LICENSE="as-is"
|
|
KEYWORDS="x86 ppc sparc"
|
|
IUSE=""
|
|
|
|
src_compile() {
|
|
econf || die "./configure failed"
|
|
emake || die
|
|
}
|
|
|
|
src_install () {
|
|
make \
|
|
prefix=${D}/usr \
|
|
mandir=${D}/usr/share/man \
|
|
infodir=${D}/usr/share/info \
|
|
install || die
|
|
dodoc ChangeLog NEWS TODO README
|
|
}
|