summaryrefslogtreecommitdiff
blob: 45f0b0c24b467a95da1f6d3722949eee82c0ba47 (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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=3
PYTHON_DEPEND="2:2.5"
inherit eutils multilib python

DESCRIPTION="a lean, flexible frontend to mplayer written in python"
HOMEPAGE="http://jdolan.dyndns.org/trac/wiki/Pymp"
SRC_URI="http://jdolan.dyndns.org/jaydolan/files/${P}.tar.bz2"

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

RDEPEND="media-video/mplayer
	dev-python/pygtk"
DEPEND="sys-apps/sed"

pkg_setup() {
	python_set_active_version 2
	python_pkg_setup
}

src_prepare() {
	sed -i -e "s/python/python2/" -e "s:PREFIX/lib:/usr/$(get_libdir):" pymp || die "sed failed"
}

src_compile() { :; }

src_install() {
	dobin pymp || die "dobin failed"
	insinto /usr/$(get_libdir)/pymp
	doins *.py || die "doins failed"
	dodoc CHANGELOG README
	doicon pymp.png
	make_desktop_entry pymp Pymp pymp
}

pkg_postinst() {
	python_mod_optimize /usr/$(get_libdir)/pymp
}

pkg_postrm() {
	python_mod_cleanup /usr/$(get_libdir)/pymp
}