blob: 4d6747696a4761cc2c222f0e737065d2cc970642 (
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
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PN="libfm"
MY_P="${MY_PN}-${PV/_/}"
inherit autotools xdg
DESCRIPTION="Library for file management"
HOMEPAGE="https://wiki.lxde.org/en/PCManFM"
SRC_URI="https://github.com/lxde/libfm/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}"/${MY_P}
LICENSE="GPL-2"
SLOT="0/5.3.1" # copy ABI_VERSION because it seems upstream change it randomly
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND=">=dev-libs/glib-2.18:2"
DEPEND="${RDEPEND}"
BDEPEND="
app-arch/xz-utils
dev-util/gtk-doc-am
>=dev-util/intltool-0.40
sys-devel/gettext
virtual/pkgconfig
"
PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" )
src_prepare() {
xdg_src_prepare
# disable unused translations. Bug #356029
cat <<-EOF >> po/POTFILES.in || die
data/ui/app-chooser.ui
data/ui/ask-rename.ui
data/ui/exec-file.ui
data/ui/file-prop.ui
data/ui/preferred-apps.ui
data/ui/progress.ui
EOF
# subslot sanity check
local sub_slot=${SLOT#*/}
local libfm_major_abi=$(sed -rne '/ABI_VERSION/s:.*=::p' src/Makefile.am | tr ':' '.')
if [[ ${sub_slot} != ${libfm_major_abi} ]]; then
eerror "Ebuild sub-slot (${sub_slot}) does not match ABI_VERSION(${libfm_major_abi})"
eerror "Please update SLOT variable as follows:"
eerror " SLOT=\"${SLOT%%/*}/${libfm_major_abi}\""
eerror
die "sub-slot sanity check failed"
fi
eautoreconf
rm -r autom4te.cache || die
}
src_configure() {
econf \
--disable-static \
--with-extra-only
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
# Sometimes a directory is created instead of a symlink. No idea why...
# It is wrong anyway. We expect a libfm-1.0 directory and then a libfm
# symlink to it.
if [[ -h ${D}/usr/include/${MY_PN} || -d ${D}/usr/include/${MY_PN} ]]; then
rm -r "${D}"/usr/include/${MY_PN} || die
fi
}
pkg_preinst() {
xdg_pkg_preinst
# Resolve the symlink mess. Bug #439570
if [[ -d "${ROOT}"/usr/include/${MY_PN} ]]; then
rm -rf "${ROOT}"/usr/include/${MY_PN} || die
fi
if [[ -d "${D}"/usr/include/${MY_PN}-1.0 ]]; then
cd "${D}"/usr/include || die
ln -s --force ${MY_PN}-1.0 ${MY_PN} || die
fi
}
|