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.
games-puzzle/five-or-more: Version bump to 3.32.3
Signed-off-by: Matt Turner <[email protected]>
- Loading branch information
Showing
2 changed files
with
47 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 five-or-more-3.32.2.tar.xz 1238468 BLAKE2B 8d223df7933cc84751c173617540a3b725342e84669be22a865a6751be19671fbe269ddc00e4c3a32d78ce3313c71d3c7e1930beae7d1561f6b90a6f9cdc73b8 SHA512 bbca7ebca45eb0975a57accbd6d3648f3fa5ab6abfaaede04e038b7ea793b44a2e125dbfe65d3f53863e62fed36eb28bbd9180e8975c4988e0fc919a8708e4c3 | ||
DIST five-or-more-3.32.3.tar.xz 1245012 BLAKE2B 8891c32fd00840ed8b27e013d38f1e2da12f3735b9e4ec3eecbb7931d4b5c54d28aa86ce0217830d71797e6ef2a8ab3198e2887dd3a69f7f8d6cf9bdac58b4ce SHA512 7fee18955e25fc2f679689ad4df208e5d4fb7250db4fd3c9d0c8f3b62ef8edf4ed402f45871a45a312637e02eb856854ecc9af33454ed9ffcba54bf742f94fb5 |
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,46 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
inherit gnome.org gnome2-utils meson vala xdg | ||
|
||
DESCRIPTION="Remove colored balls from the board by forming lines" | ||
HOMEPAGE="https://wiki.gnome.org/Apps/Five%20or%20more" | ||
|
||
LICENSE="GPL-2+ CC-BY-SA-3.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" | ||
|
||
RDEPEND=" | ||
dev-libs/libgee:0.8= | ||
>=dev-libs/glib-2.32:2 | ||
>=x11-libs/gtk+-3.20:3 | ||
dev-libs/libgnome-games-support:1= | ||
>=gnome-base/librsvg-2.32:2 | ||
" | ||
DEPEND="${RDEPEND}" | ||
BDEPEND=" | ||
$(vala_depend) | ||
gnome-base/librsvg:2[vala] | ||
dev-libs/appstream-glib | ||
dev-libs/libxml2:2 | ||
dev-util/itstool | ||
>=sys-devel/gettext-0.19.8 | ||
virtual/pkgconfig | ||
" | ||
|
||
src_prepare() { | ||
default | ||
vala_setup | ||
xdg_environment_reset | ||
} | ||
|
||
pkg_postinst() { | ||
xdg_pkg_postinst | ||
gnome2_schemas_update | ||
} | ||
|
||
pkg_postrm() { | ||
xdg_pkg_postrm | ||
gnome2_schemas_update | ||
} |