summaryrefslogtreecommitdiff
path: root/media-tv/tv-maxe/tv-maxe-0.11-r3.ebuild
blob: f7466c5f800eb18b84f20488c918b264053ed03f (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=3

inherit eutils

DESCRIPTION="Program to view free channels"
HOMEPAGE="http://code.google.com/p/tv-maxe"
SRC_URI="https://launchpad.net/~venerix/+archive/ubuntu/pkg/+files/${PN}_${PV}-0ubuntu2~trusty.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+sqlite +vlc mplayer"

DEPEND="dev-lang/python:2.7[sqlite]"
RDEPEND="dev-python/pillow
	mplayer? ( || (
		media-video/mplayer2
		media-video/mplayer
	) )
	vlc? ( media-video/vlc )
	virtual/ffmpeg
	dev-python/python-virtkey
	dev-python/pygtk
	dev-lang/python:2.7[sqlite]
	media-tv/sopcast
	media-video/rtmpdump"

S="${WORKDIR}/${PN}-${PV}"

src_prepare() {
	sed -i "s|python|python2|g" ${S}/${PN}/${PN} || die "Cannot sed file"
	epatch ${FILESDIR}/${PN}_disable_locale.patch
}

src_install() {
	cd "${S}"
	dodir /usr/share/${PN} || die
	insinto /usr/share/${PN} || die
	doins -r "${S}"/${PN}/* || die
	fperms 755 /usr/share/${PN}/${PN} || die "Errors on permission giving"
	fperms 755 /usr/share/${PN} || die "Errors on permission folder giving"
	dosym /usr/share/${PN}/${PN} /usr/bin/${PN} || die "Not too many symbolic links"
	make_desktop_entry tv-maxe TV-maxe \
		"/usr/share/tv-maxe/tvmaxe_mini.png" \
		AudioVideo
}