blob: 39c9f31e803e305101fcd13ade05aaca7f3171cb (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-0.1.12.ebuild,v 1.9 2011/03/07 20:33:15 klausman Exp $
EAPI="2"
inherit eutils
DESCRIPTION="Library for file management"
HOMEPAGE="http://pcmanfm.sourceforge.net/"
SRC_URI="mirror://sourceforge/pcmanfm/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ppc x86"
IUSE="debug demo udev"
COMMON_DEPEND=">=dev-libs/glib-2.18:2
>=x11-libs/gtk+-2.16:2
>=lxde-base/menu-cache-0.3.2"
RDEPEND="${COMMON_DEPEND}
udev? ( >=gnome-base/gvfs-1.6.4-r2[gdu,udev] )"
DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.40
dev-util/pkgconfig
sys-devel/gettext"
src_configure() {
strip-linguas -i "${S}/po"
econf --sysconfdir=/etc $(use_enable debug) $(use_enable demo)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS TODO || die
}
|