forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pychess-0.12.4.ebuild
71 lines (57 loc) · 1.28 KB
/
pychess-0.12.4.ebuild
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="sqlite"
inherit fdo-mime gnome2-utils distutils-r1
DESCRIPTION="A chess client for Gnome"
HOMEPAGE="http://pychess.org/"
SRC_URI="http://pychess.org/download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="gstreamer"
DEPEND="
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
gnome-base/librsvg:2
x11-libs/gtksourceview:3.0
x11-libs/pango
x11-themes/adwaita-icon-theme
gstreamer? (
dev-python/gst-python:1.0
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0 )
"
RDEPEND=${DEPEND}
python_install() {
distutils-r1_python_install
# bug 487706
sed -i \
-e "s/@PYTHON@/${EPYTHON}/" \
"${ED%/}/$(python_get_sitedir)"/${PN}/Players/engineNest.py || die
}
python_install_all() {
DOCS="AUTHORS README.md" \
distutils-r1_python_install_all
}
src_prepare() {
distutils-r1_src_prepare
}
src_compile() {
distutils-r1_src_compile
}
src_install() {
distutils-r1_src_install
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
fdo-mime_desktop_database_update
}
pkg_postrm() {
gnome2_icon_cache_update
fdo-mime_desktop_database_update
}