blob: 259eeb9fe6d2aec51b99f699655d501a47540e1a (
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
38
39
40
41
42
43
44
45
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.2 2010/07/08 09:50:19 hwoarang Exp $
EAPI="2"
inherit autotools eutils git
DESCRIPTION="Library for file management"
HOMEPAGE="http://pcmanfm.sourceforge.net/"
EGIT_REPO_URI="git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/${PN}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug demo"
RDEPEND="dev-libs/glib:2
x11-libs/gtk+:2
>=lxde-base/menu-cache-0.3.2"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
dev-util/pkgconfig
sys-devel/gettext"
src_prepare() {
for file in app-chooser.ui ask-rename.ui file-prop.ui preferred-apps.ui \
progress.ui;do
echo "data/ui/${file}" >> po/POTFILES.in
done
echo "src/udisks/g-udisks-device.c" >> po/POTFILES.in
eautoreconf
einfo "Running intltoolize ..."
intltoolize --force --copy --automake || die
strip-linguas -i "${S}/po"
}
src_configure() {
econf --sysconfdir=/etc $(use_enable debug) $(use_enable demo)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS TODO || die
}
|