blob: 25483397c9941e2c039f07979bd2f24359e8a56d (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/gnofin/gnofin-0.8.4.ebuild,v 1.14 2004/06/24 22:39:49 agriffis Exp $
inherit gnuconfig
DESCRIPTION="a personal finance application for GNOME"
HOMEPAGE="http://gnofin.sourceforge.net"
SRC_URI="ftp://gnofin.sourceforge.net/pub/gnofin/stable/source/${P}.tar.gz
http://download.sourceforge.net/gnofin/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1
>=dev-libs/libxml-1.8.10"
src_compile() {
gnuconfig_update
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib || die
emake || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib install || die
dodoc AUTHORS COPYING* ChangeLog NEWS README*
}
|