blob: a5ea248e3ffb9ab54dbfcf7efd17e5bddb3bc90e (
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
51
|
# 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="http://tv-maxe.googlecode.com/files/${PN}-${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+sqlite"
DEPEND="dev-lang/python[sqlite]"
RDEPEND="dev-python/pillow
media-video/mplayer2
media-video/vlc
virtual/ffmpeg
dev-python/python-virtkey
dev-python/pygtk
dev-lang/python[sqlite]
media-tv/sp-auth
media-video/rtmpdump
dev-python/gst-python
media-libs/gst-plugins-good
media-plugins/gst-plugins-meta"
DEPEND=""
S="${WORKDIR}"
src_prepare() {
sed -i "s|python|python2|g" ${S}/${PN}-${PV}/${PN} || die "Cannot sed file"
epatch -p0 "${FILESDIR}/tv-maxe-0.09-pillow-support.patch"
}
src_install() {
cd "${S}"
dodir /usr/share/${PN} || die
insinto /usr/share/${PN} || die
doins -r "${S}"/${PN}-${PV}/* || 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" \
Video
}
|