Diff libindicator-12.10.1-r201 with a libindicator-12.10.1-r301
/usr/portage/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild 2023-10-09 14:52:29.520368351 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2021 Gentoo Authors |
|
1 |
# Copyright 1999-2022 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=7 |
... | ... | |
10 | 10 |
SRC_URI="https://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz" |
11 | 11 | |
12 | 12 |
LICENSE="GPL-3" |
13 |
SLOT="0" |
|
14 |
KEYWORDS="amd64 ~arm x86" |
|
13 |
SLOT="3" |
|
14 |
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv x86" |
|
15 | 15 |
IUSE="test" |
16 | 16 |
RESTRICT="!test? ( test )" |
17 | 17 | |
18 | 18 |
RDEPEND=" |
19 | 19 |
>=dev-libs/glib-2.22[${MULTILIB_USEDEP}] |
20 |
>=x11-libs/gtk+-2.18:2[${MULTILIB_USEDEP}] |
|
20 |
>=x11-libs/gtk+-3.2:3[${MULTILIB_USEDEP}] |
|
21 | 21 |
" |
22 | 22 |
DEPEND="${RDEPEND}" |
23 | 23 |
BDEPEND=" |
24 | 24 |
dev-util/glib-utils |
25 | 25 |
virtual/pkgconfig |
26 |
test? ( dev-util/dbus-test-runner ) |
|
27 |
" |
|
26 |
test? ( dev-util/dbus-test-runner )" |
|
28 | 27 | |
29 | 28 |
PATCHES=( |
30 | 29 |
# Fixed version of https://bugs.launchpad.net/libindicator/+bug/1502925 |
... | ... | |
43 | 42 | |
44 | 43 |
local myconf=( |
45 | 44 |
--disable-static |
46 |
--with-gtk=2 |
|
45 |
--with-gtk=3 |
|
47 | 46 |
) |
48 | 47 | |
49 | 48 |
ECONF_SOURCE="${S}" econf "${myconf[@]}" |
... | ... | |
62 | 61 |
default |
63 | 62 | |
64 | 63 |
find "${ED}" -name '*.la' -delete || die |
65 | ||
66 |
rm -vf \ |
|
67 |
"${ED}"/usr/lib*/libdummy-indicator-* \ |
|
68 |
"${ED}"/usr/share/${PN}/*indicator-debugging \ |
|
69 |
|| die |
|
70 | 64 |
} |