forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/clutter-gtk: version bump 1.8.2 → 1.8.4
Package-Manager: Portage-2.3.7, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST clutter-gtk-1.8.2.tar.xz 326964 SHA256 da27d486325490ad3f65d2abf9413aeb8b4a8f7b559e4b2f73567a5344a26b94 SHA512 f895e43c4eb2d49f5e514f4c29f406d587d6bdf15027c0632e5caa4c8a1f8048dfbef5674d7ec663379127460826c1d662b59690c8db2d3e54bedf78e357f765 WHIRLPOOL 9c7df5910315af969394c349c3a89d40c76a5a14da9b7650a044fdd16020588fa58d28ca506eafa7192d5593157082aadaf915d3ba542875a178c37859a47268 | ||
DIST clutter-gtk-1.8.4.tar.xz 331508 SHA256 521493ec038973c77edcb8bc5eac23eed41645117894aaee7300b2487cb42b06 SHA512 810f879a56cd71f1e9c4678ef704a997ee652d052cfea56b3ed9478f7a813a35dd2fdcded028ce17411ae02da52fa31e0fb8d1f4130c7b9f6d25eeb774b51ada WHIRLPOOL d02fbe0cb62aef51f06ff92d70eb9602184295cfcb1c9bb7172dbe8a9b7e560a449f2a740145c1ca09eb30a1d796725bba34bd4a2802e94e8bf9c3bbedef47db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
GNOME2_LA_PUNT="yes" | ||
|
||
inherit gnome2 | ||
|
||
DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+" | ||
HOMEPAGE="https://wiki.gnome.org/Projects/Clutter" | ||
LICENSE="LGPL-2.1+" | ||
|
||
SLOT="1.0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="X debug examples gtk +introspection wayland" | ||
|
||
RDEPEND=" | ||
>=x11-libs/gtk+-3.21.0:3[X=,introspection?,wayland=] | ||
>=media-libs/clutter-1.23.7:1.0[X=,gtk=,introspection?,wayland=] | ||
media-libs/cogl:1.0=[introspection?] | ||
introspection? ( >=dev-libs/gobject-introspection-1.32:= ) | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-util/gtk-doc-am-1.24 | ||
>=sys-devel/gettext-0.18 | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
gnome2_src_configure \ | ||
--disable-maintainer-flags \ | ||
--enable-deprecated \ | ||
$(usex debug --enable-debug=yes ' ') \ | ||
$(use_enable introspection) | ||
} | ||
|
||
src_install() { | ||
gnome2_src_install | ||
|
||
if use examples; then | ||
insinto /usr/share/doc/${PF}/examples | ||
doins examples/{*.c,redhand.png} | ||
fi | ||
} |