blob: 3f6715b9eef9e55586995b791fe9c99a0d60484e (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/pcmanfm-9999.ebuild,v 1.4 2010/08/30 10:44:12 hwoarang Exp $
EAPI="2"
inherit autotools eutils fdo-mime git
DESCRIPTION="Fast lightweight tabbed filemanager"
HOMEPAGE="http://pcmanfm.sourceforge.net/"
EGIT_REPO_URI="git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/${PN}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug gnome hal udev"
RDEPEND="dev-libs/glib:2
x11-libs/gtk+:2
sys-fs/udisks
gnome? ( hal? ( gnome-base/gnome-mount ) )
gnome? ( gnome-base/gvfs[hal?,udev?] )
lxde-base/menu-cache
x11-misc/shared-mime-info
x11-libs/libfm
virtual/eject"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
dev-util/pkgconfig
sys-devel/gettext"
src_prepare() {
# add missing files to traslation file. Fixes tests
for i in about.ui autorun.ui desktop-pref.ui pref.ui; do
echo "data/ui/${i}" >> po/POTFILES.in
done
eautoreconf
einfo "Running intltoolize ..."
intltoolize --force --copy --automake || die
strip-linguas -i "${S}/po"
}
src_configure() {
econf --sysconfdir=/etc $(use_enable debug)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS || die
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
elog 'PCmanFM can optionally support the menu://applications/ location.'
elog 'You should install lxde-base/lxmenu-data for that functionality.'
}
pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}
|