blob: cb7f5e335701502f2de5b623fe8d1008cf611708 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/mairix/mairix-0.10.ebuild,v 1.4 2004/04/16 20:29:04 randy Exp $
DESCRIPTION="Indexes and searches Maildir/MH folders"
HOMEPAGE="http://www.rrbcurnow.freeuk.com/mairix/"
SRC_URI="http://www.rrbcurnow.freeuk.com/mairix/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 s390"
IUSE=""
DEPEND="virtual/glibc
>=sys-apps/texinfo-4.2"
S=${WORKDIR}/${P}
src_compile() {
emake prefix=/usr CFLAGS="${CFLAGS}" all mairix.info || die
}
src_install() {
dobin mairix
dodoc mairix.txt NEWS README
doinfo mairix.info
}
|