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

EAPI=2
PYTHON_DEPEND="2"
inherit python

DESCRIPTION="A Curses front-end for various audio players"
SRC_URI="http://mask.tf.hut.fi/~flu/cplay/${P}.tar.gz"
HOMEPAGE="http://mask.tf.hut.fi/~flu/hacks/cplay/"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc ppc64 sparc x86"
IUSE="mp3 vorbis"

RDEPEND="vorbis? ( media-sound/vorbis-tools )
	mp3? ( || ( media-sound/mpg123
		media-sound/mpg321
		media-sound/madplay
		media-sound/splay ) )"
DEPEND="sys-devel/gettext"

src_prepare() {
	sed -i -e 's:make:$(MAKE):' Makefile || die
	sed -i -e 's:/usr/local:/usr:' cplay || die
	python_convert_shebangs 2 cplay
}

src_install() {
	emake PREFIX="${D}/usr" recursive-install || die
	dobin cplay || die
	doman cplay.1
	dodoc ChangeLog README TODO
}