blob: 87a8649cc1f53f69a55fdd00dc7c527347d3e026 (
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
64
65
66
67
68
69
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110614.ebuild,v 1.4 2011/08/06 07:20:00 zmedico Exp $
EAPI=3
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/${PN}"
inherit autotools git-2
SRC_URI=""
else
inherit autotools
SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86 ~x86-linux"
fi
inherit fdo-mime
DESCRIPTION="Fast lightweight tabbed filemanager"
HOMEPAGE="http://pcmanfm.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
IUSE="debug"
COMMON_DEPEND=">=dev-libs/glib-2.18:2
>=x11-libs/gtk+-2.22.1:2
>=lxde-base/menu-cache-0.3.2
>=x11-libs/libfm-0.1.15_pre20110614"
RDEPEND="${COMMON_DEPEND}
virtual/eject"
DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.40
dev-util/pkgconfig
sys-devel/gettext"
src_prepare() {
intltoolize --force --copy --automake || die
# Fix tests. Bug #357125
for x in about autorun desktop-pref pref; do
echo data/ui/${x}.ui >> po/POTFILES.in
done
# Fix desktop icons
sed -i -e "/MimeType/s:=.*normal;:=:" data/${PN}.desktop.in \
|| die "failed to fix desktop icon"
eautoreconf
}
src_configure() {
econf \
--sysconfdir="${EPREFIX}/etc" \
$(use_enable debug)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS
}
pkg_postinst() {
fdo-mime_desktop_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
}
|