summaryrefslogtreecommitdiff
blob: 6eea06db4ececfbf492a7bc4a4a8b0c760079876 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/fpm/fpm-0.59.ebuild,v 1.9 2006/02/16 23:31:05 flameeyes Exp $

DESCRIPTION="A password manager for gnome"
HOMEPAGE="http://fpm.sourceforge.net/"
SRC_URI="mirror://sourceforge/fpm/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="nls"

DEPEND="gnome-base/gnome-libs
	>=dev-libs/libxml2-2.5.7-r2
	x11-libs/gtk+
	dev-libs/glib
	nls? ( virtual/libintl )"

RDEPEND="${DEPEND}
	dev-util/cvs"

DEPEND="${DEPEND}
	nls? ( sys-devel/gettext )"

src_compile() {
	./autogen.sh --prefix=/usr \
	./configure --prefix=/usr
	emake || die "Make failed"
}

src_install() {
	make prefix=${D}/usr install || die
	dodoc NEWS README ChangeLog TODO
}