mirror of
https://github.com/gentoo-mirror/steam-overlay.git
synced 2025-04-10 12:08:44 -04:00
78 lines
1.7 KiB
Bash
78 lines
1.7 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools multilib-minimal
|
|
|
|
DESCRIPTION="A library to allow applications to export a menu into the Unity Menu bar"
|
|
HOMEPAGE="https://launchpad.net/libappindicator"
|
|
|
|
MY_PV="${PV%_p*}"
|
|
PATCH_VERSION="${PV#*_p}"
|
|
SRC_URI="mirror://ubuntu/pool/main/liba/${PN}/${PN}_${MY_PV}+20.10.${PATCH_VERSION}.1.orig.tar.gz"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="LGPL-2.1 LGPL-3"
|
|
SLOT="2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/dbus-glib-0.98[${MULTILIB_USEDEP}]
|
|
>=dev-libs/glib-2.35.4:2[${MULTILIB_USEDEP}]
|
|
>=dev-libs/libdbusmenu-0.6.2[gtk,${MULTILIB_USEDEP}]
|
|
x11-libs/gtk+:2[${MULTILIB_USEDEP}]
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
test? ( dev-util/dbus-test-runner )
|
|
"
|
|
|
|
# FIXME: tests keep trying to access dirs they don't have access, feel free
|
|
# to report a bug about how to avoid that
|
|
RESTRICT="test"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-no-docs.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
|
|
# Disable MONO for now because of https://bugs.gentoo.org/382491
|
|
sed -i -e '/^MONO_REQUIRED_VERSION/s:=.*:=9999:' configure || die
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
ECONF_SOURCE="${S}" \
|
|
econf \
|
|
--with-gtk=2 \
|
|
--disable-introspection
|
|
}
|
|
|
|
multilib_src_compile() {
|
|
# Was initially reported in 638782, then fixed, and then fix disappeared.
|
|
# But I facing it every time I (mva) trying to rebuild it on my machine even now (Sep'21)
|
|
emake -j1
|
|
}
|
|
|
|
multilib_src_test() {
|
|
# Prevent tests from trying to write on /dev/fuse
|
|
GVFS_DISABLE_FUSE=1 dbus-run-session emake check
|
|
}
|
|
|
|
multilib_src_install() {
|
|
# Fails in parallel, bug #795444
|
|
emake -j1 DESTDIR="${D}" install
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
einstalldocs
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|