blob: 4e527455d5df716b270d9ffe79af37b47de3bed4 (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/abook/abook-0.5.1-r1.ebuild,v 1.1 2004/02/09 16:40:35 rizzo Exp $
DESCRIPTION="Abook is a text-based addressbook program designed to use with mutt mail client."
HOMEPAGE="http://abook.sourceforge.net/"
SRC_URI="mirror://sourceforge/abook/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
DEPEND="sys-libs/ncurses
sys-libs/readline"
S=${WORKDIR}/${P}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/0.5.1-01_mutt-filter
}
src_compile() {
cd ${S}
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc ANNOUNCE AUTHORS BUGS COPYING ChangeLog FAQ INSTALL README THANKS TODO
dodoc sample.abookrc
}
|