blob: 4fadc9f9ccf253bf2c379a53353255ad2a8cf8c3 (
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
70
71
72
73
74
75
76
77
78
79
|
# 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-9999.ebuild,v 1.18 2011/09/10 11:43:40 hwoarang Exp $
EAPI=3
EGIT_REPO_URI="git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/${PN}"
inherit autotools git-2 fdo-mime
DESCRIPTION="A library for file management"
HOMEPAGE="http://pcmanfm.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
IUSE="debug doc examples udev"
KEYWORDS=""
COMMON_DEPEND=">=dev-libs/glib-2.18:2
>=x11-libs/gtk+-2.16:2
udev? ( dev-libs/dbus-glib )
>=lxde-base/menu-cache-0.3.2"
RDEPEND="${COMMON_DEPEND}
x11-misc/shared-mime-info
udev? ( sys-fs/udisks )"
DEPEND="${COMMON_DEPEND}
dev-util/gtk-doc-am
doc? (
dev-util/gtk-doc
)
>=dev-util/intltool-0.40
dev-util/pkgconfig
sys-devel/gettext"
src_prepare() {
if ! use doc; then
sed -ie '/SUBDIRS=/s#docs##' "${S}"/Makefile.am || die "sed failed"
sed -ie '/^[[:space:]]*docs/d' configure.ac || die "sed failed"
else
gtkdocize --copy || die
fi
intltoolize --force --copy --automake || die
#disable unused translations. Bug #356029
for trans in app-chooser ask-rename exec-file file-prop preferred-apps \
progress;do
echo "data/ui/"${trans}.ui >> po/POTFILES.in
done
sed -i -e "s:-O0::" "${S}"/configure.ac || die
eautoreconf
}
src_configure() {
econf \
--sysconfdir="${EPREFIX}/etc" \
--disable-dependency-tracking \
--disable-static \
$(use_enable udev udisks) \
$(use_enable examples demo) \
$(use_enable debug) \
# Documentation fails to build at the moment
# $(use_enable doc gtk-doc) \
# $(use_enable doc gtk-doc-html) \
--with-html-dir=/usr/share/doc/${PF}/html
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS TODO
find "${D}" -name '*.la' -exec rm -f '{}' +
}
pkg_postinst() {
fdo-mime_mime_database_update
}
pkg_postrm() {
fdo-mime_mime_database_update
}
|