dev-libs/libayatana-indicator: new package, add 0.9.1

Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
This commit is contained in:
Pascal Jäger
2022-04-30 12:58:02 +02:00
parent 7cee4b864f
commit 65cec81a5a
2 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST libayatana-indicator-0.9.1.tar.gz 148993 BLAKE2B 7e5e72a6075bc6dafa83ed4e9cc07f06011127477e8b12a023fd92c431f5e784663e9bcb27de29a89d23ccda7c905363b3560714a8abcded809faa9ea2225447 SHA512 47870f7cdef1d1c67a3f72a9fa68a39d0c49d899f831a9c1ca83588cdb6e0523a77eab41110a3f839cd8694bb1b22c2c67206608226353ffebb399062b54d1b0

View File

@@ -0,0 +1,48 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
VALA_USE_DEPEND="vapigen"
CMAKE_MAKEFILE_GENERATOR="emake"
inherit cmake vala
DESCRIPTION="Ayatana Application Indicators (Shared Library)"
HOMEPAGE="https://github.com/AyatanaIndicators/libayatana-indicator"
SRC_URI="https://github.com/AyatanaIndicators/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
sys-libs/glibc \
>=dev-libs/glib-2.58 \
>=x11-libs/gtk+-3.24 \
"
BDEPEND="
${RDEPEND} \
$(vala_depend) \
>=dev-util/cmake-3.13 \
dev-libs/gobject-introspection \
>=dev-libs/ayatana-ido-0.8.2 \
"
src_prepare() {
cmake_src_prepare
vala_setup
}
src_configure() {
local mycmakeargs+=(
"-DVALA_COMPILER=${VALAC}"
"-DVAPI_GEN=${VAPIGEN}"
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
}