blob: ccb0a0c494638591560e75adf4a85274a893380f (
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
54
55
56
|
# Copyright 1999-2013 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.8.1.ebuild,v 1.5 2013/08/31 08:20:33 pinkbyte Exp $
EAPI="5"
GCONF_DEBUG="no"
PYTHON_COMPAT=( python{2_6,2_7} )
inherit eutils gnome-games python-single-r1
DESCRIPTION="Test your logic skills in this number grid puzzle"
HOMEPAGE="https://wiki.gnome.org/GnomeSudoku"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
dev-libs/glib:2
dev-python/pycairo[${PYTHON_USEDEP}]
>=dev-python/pygobject-2.28.3: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.35.0
sys-devel/gettext
virtual/pkgconfig
"
pkg_setup() {
gnome-games_pkg_setup
python-single-r1_pkg_setup
}
src_prepare() {
# Fix NumberBox events configuration with latest pygobject (from 'master')
epatch "${FILESDIR}/${PN}-3.8.1-fix-numberbox.patch"
gnome-games_src_prepare
}
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
}
|