mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 09:32:37 +01:00
64 lines
1.1 KiB
Bash
64 lines
1.1 KiB
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
VALA_MIN_API_VERSION=0.20
|
|
VALA_USE_DEPEND=vapigen
|
|
|
|
inherit vala autotools
|
|
|
|
DESCRIPTION="BAMF Application Matching Framework"
|
|
HOMEPAGE="https://launchpad.net/bamf"
|
|
SRC_URI="http://launchpad.net/${PN}/$(ver_cut 1-2)/${PV}/+download/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="+introspection doc static-libs"
|
|
|
|
RDEPEND="
|
|
dev-libs/dbus-glib
|
|
dev-util/gdbus-codegen
|
|
>=dev-libs/glib-2.38.0:2
|
|
gnome-base/libgtop:2
|
|
x11-libs/gtk+:3
|
|
x11-libs/libX11
|
|
>=x11-libs/libwnck-3.4.7:3
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
$(vala_depend)
|
|
dev-libs/libxml2
|
|
dev-libs/libxslt
|
|
introspection? ( dev-libs/gobject-introspection )"
|
|
BDEPEND="
|
|
${DEPEND}
|
|
virtual/pkgconfig
|
|
dev-util/gtk-doc
|
|
"
|
|
|
|
DOCS=(AUTHORS COPYING COPYING.LGPL ChangeLog NEWS README TODO)
|
|
|
|
src_prepare() {
|
|
if use introspection; then
|
|
vala_src_prepare
|
|
export VALA_API_GEN="${VAPIGEN}"
|
|
fi
|
|
|
|
sed -i '/GNOME_COMMON_INIT/d' configure.ac || die
|
|
eautoreconf
|
|
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
econf $(use_enable introspection )
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
find "${ED}" -name '*.la' -type f -delete || die
|
|
}
|