diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-07-10 08:43:26 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-07-10 11:49:57 -0400 |
commit | 07932273b51fef80bb3320c2f04fd943ffc4d544 (patch) | |
tree | a57ae4eb7e29755e01daef04d74686ec5398bace /games-kids | |
parent | games-fps/turtlearena: EAPI 6->8, tidy, tc-export CC (diff) | |
download | gentoo-07932273b51fef80bb3320c2f04fd943ffc4d544.tar.gz gentoo-07932273b51fef80bb3320c2f04fd943ffc4d544.tar.bz2 gentoo-07932273b51fef80bb3320c2f04fd943ffc4d544.zip |
games-kids/gmult: add 9.0
Migrated to meson, and now requires vala due to no
longer shipping with pre-generated sources.
Closes: https://bugs.gentoo.org/680740
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-kids')
-rw-r--r-- | games-kids/gmult/Manifest | 1 | ||||
-rw-r--r-- | games-kids/gmult/gmult-9.0.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/games-kids/gmult/Manifest b/games-kids/gmult/Manifest index 024d0ce58f01..91c97b2a8f7f 100644 --- a/games-kids/gmult/Manifest +++ b/games-kids/gmult/Manifest @@ -1 +1,2 @@ DIST gmult-8.0.tar.bz2 222981 BLAKE2B 0b70c05844f0b0db7fec77e334406dab557898240b05d2990b10e2ef398a26a2d4ad65086c635798abb66a8daefe591e908d7374840ff0886a16908e98f21564 SHA512 40c29a998d50491de8c14f7e71ad298fb69e0dc6f1f04b1f9bf35f9f72010eb085a9bc7a9efa1f3c339ea44fdeb9eec4d4f82017442c57ebc28f992bc703252f +DIST gmult-9.0.tar.xz 47936 BLAKE2B ae0ebbebbdd949f7e990c6209c2ff695d34cf8e06a1e43fca137d9417b387fa58b1021f3bea5adace1832a39f60c5f2f77864ace888e4f1e70bed722951fd00e SHA512 b087406b1ea3743bc2ab292b9590a1d58451ca593d719b3539f22956304cd1004feed0fbf68c6a1bd0439f476c83f72287720d8937646ab214e6e50a4b04a27a diff --git a/games-kids/gmult/gmult-9.0.ebuild b/games-kids/gmult/gmult-9.0.ebuild new file mode 100644 index 000000000000..9af0c3801d31 --- /dev/null +++ b/games-kids/gmult/gmult-9.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson vala xdg + +DESCRIPTION="Multiplication Puzzle emulates the multiplication game found in Emacs" +HOMEPAGE="https://launchpad.net/gmult" +SRC_URI="https://launchpad.net/gmult/trunk/${PV}/+download/${P}.tar.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/glib:2 + virtual/libintl + x11-libs/cairo + x11-libs/gtk+:3" +DEPEND="${RDEPEND}" +BDEPEND=" + $(vala_depend) + dev-libs/appstream-glib + dev-util/desktop-file-utils + sys-devel/gettext" + +src_prepare() { + default + vala_src_prepare +} |