blob: 9af0c3801d31664046f8b339ba686449c7053d34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
}
|