summaryrefslogtreecommitdiff
blob: 6886cbdbf38dc4a5015788f64aafe7d225b37fee (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4
PYTHON_DEPEND="2:2.6"

inherit python multilib

DESCRIPTION="A GUI configuration utility for the iDesk application"
HOMEPAGE="http://ideskconfig.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="dev-python/pygtk:2
	x11-misc/idesk"

S=${WORKDIR}/${P}/src

pkg_setup() {
	python_set_active_version 2
	python_pkg_setup
}

src_prepare() {
	default
	python_convert_shebangs -r 2 .
}

src_install() {
	insinto /usr/$(get_libdir)/${PN}
	doins idesk{_config,ConfigParser,IconEditor,IconParser}.py
	dosym /usr/$(get_libdir)/${PN}/idesk_config.py /usr/bin/ideskconfig
	fperms +x /usr/$(get_libdir)/${PN}/idesk_config.py
	dodoc ../{README,TODOLIST}
}

pkg_postinst() {
	python_mod_optimize "/usr/$(get_libdir)/${PN}"
}

pkg_postrm() {
	python_mod_cleanup "/usr/$(get_libdir)/${PN}"
}