diff options
author | 2021-03-27 16:23:41 -0400 | |
---|---|---|
committer | 2021-03-27 16:40:20 -0400 | |
commit | e95b7a7d7d1aebc0631fb3617d2391b0ce2db63d (patch) | |
tree | 14ce5d80a2d667ace148f01eda814c4b0b7c5773 /games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild | |
parent | games-puzzle/gnome-taquin: Version bump to 3.38.1 (diff) | |
download | gentoo-e95b7a7d7d1aebc0631fb3617d2391b0ce2db63d.tar.gz gentoo-e95b7a7d7d1aebc0631fb3617d2391b0ce2db63d.tar.bz2 gentoo-e95b7a7d7d1aebc0631fb3617d2391b0ce2db63d.zip |
games-puzzle/gnome-tetravex: Version bump to 3.38.2
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild')
-rw-r--r-- | games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild b/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild new file mode 100644 index 000000000000..12f07175c247 --- /dev/null +++ b/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +VALA_MIN_API_VERSION="0.40" + +inherit gnome.org gnome2-utils meson vala xdg + +DESCRIPTION="Complete the puzzle by matching numbered tiles" +HOMEPAGE="https://wiki.gnome.org/Apps/Tetravex" + +LICENSE="GPL-2+ CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="cli +gui" +REQUIRED_USE="|| ( cli gui )" + +RDEPEND=" + >=dev-libs/glib-2.42.0:2 + gui? ( >=x11-libs/gtk+-3.22.23:3 ) +" +DEPEND="${RDEPEND} + $(vala_depend) + gui? ( dev-util/itstool ) + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_prepare() { + xdg_src_prepare + vala_src_prepare +} + +src_configure() { + local emesonargs=( + $(meson_use cli build_cli) + $(meson_use gui build_gui) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |