blob: aac378c6862ca3d6cec37d0d990240b11b0bb74b (
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-2005 Gentoo Foundation
# 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.8 2005/02/04 13:19:42 tove 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/libc
>=sys-apps/texinfo-4.2"
src_compile() {
emake prefix=/usr CFLAGS="${CFLAGS}" all mairix.info || die
}
src_install() {
dobin mairix
dodoc mairix.txt NEWS README
doinfo mairix.info
}
|