blob: f94b0bd172f9584cf3018752bbee8f7570bcc406 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/gnome-sudoku/gnome-sudoku-3.12.3.ebuild,v 1.5 2015/04/08 18:11:57 mgorny Exp $
EAPI="5"
GCONF_DEBUG="no"
PYTHON_COMPAT=( python{3_3,3_4} )
inherit eutils gnome-games python-single-r1
DESCRIPTION="Test your logic skills in this number grid puzzle"
HOMEPAGE="https://wiki.gnome.org/Apps/Sudoku"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE=""
# Let people emerge this by default, bug #472932
IUSE+=" +python_single_target_python3_3"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
dev-libs/glib:2
dev-python/pycairo[${PYTHON_USEDEP}]
>=dev-python/pygobject-3.11:3[${PYTHON_USEDEP}]
x11-libs/gdk-pixbuf:2[introspection]
x11-libs/gtk+:3[introspection]
x11-libs/pango[introspection]
"
DEPEND="${RDEPEND}
app-text/yelp-tools
>=dev-util/intltool-0.50
sys-devel/gettext
virtual/pkgconfig
"
pkg_setup() {
gnome-games_pkg_setup
python-single-r1_pkg_setup
}
src_configure() {
# Workaround until we know how to fix bug #475318
gnome-games_src_configure \
--prefix="${EPREFIX}/usr" \
--bindir="${GAMES_BINDIR}"
}
src_install() {
python_fix_shebang src
gnome-games_src_install
}
|