1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 11:42:40 +01:00

- Add x11-misc/plank & 11-libs/bamf (dependency)

This commit is contained in:
2016-03-29 22:21:32 +02:00
parent 57568ac001
commit 8bcfef40e8
4 changed files with 101 additions and 0 deletions

2
x11-libs/bamf/Manifest Normal file
View File

@@ -0,0 +1,2 @@
DIST bamf-0.5.1.tar.gz 575386 SHA256 fb65e6d0d7330f06626e43b0f3828bdeb5678d69133396e770a8781b9988fd16 SHA512 0fc3a72f01f408c7cba861404e79e41e3112f8261b7a0ad6b15c43690b3f8063fa654c60c8d10aa4b9ed24b0e6d3047e98bee6a3765ee4f6c0975040ce7dcd26 WHIRLPOOL 0e6d02319c9ac5495d41fb78a3facb6edd9f038ff83cf83cf705cb60e33751e5e7555d300bf641346e1c1f969c66d47302840534b4111e60506d27589d061a12
EBUILD bamf-0.5.1.ebuild 1228 SHA256 8ac0bf7c7b06a8d3be0a1edce7ef85877208e95d7af10117699063847bfcb6cd SHA512 098af73c0fe4ecb4420cb0d12b9263d69ecd0c87dd9bbaa65a23e36f5944911fb70e983402a3be0747ef36a0ed643d8589e12753401a562f9a96881c1a3ae184 WHIRLPOOL 4aa2bb78336ec6b47620e6f7236eefa772c06df4bfad3f7f7eab94652c63ac325b3af739c9ed877dde8779be459292b38bf79d51cc1c5c664d4db41019a6ed26

View File

@@ -0,0 +1,58 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
VALA_MIN_API_VERSION=0.20
VALA_USE_DEPEND=vapigen
inherit vala autotools-utils python-r1
DESCRIPTION="BAMF Application Matching Framework"
HOMEPAGE="https://launchpad.net/bamf"
SRC_URI="http://launchpad.net/${PN}/0.5/${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
gnome-base/libgtop:2
x11-libs/gtk+:3
x11-libs/libX11
>=x11-libs/libwnck-3.4.7:3"
DEPEND="${RDEPEND}
$(vala_depend)
${PYTHON_DEPS}
dev-libs/libxml2[python]
dev-libs/libxslt[python]
doc? ( dev-util/gtk-doc )
introspection? ( dev-libs/gobject-introspection )
virtual/pkgconfig"
DOCS=(AUTHORS COPYING COPYING.LGPL ChangeLog NEWS README TODO)
src_prepare() {
sed -i 's/-Werror//' configure
autotools-utils_src_prepare
vala_src_prepare
}
src_configure() {
local myeconfargs=(
--disable-gtktest
--disable-webapps
$(use_enable doc gtk-doc)
$(use_enable introspection)
VALA_API_GEN="${VAPIGEN}"
)
python_setup
autotools-utils_src_configure
}