blob: 502b7ca7649b6452c3debf8ccf1415c4443cb2f7 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/mythvideo-0.22_p22821.ebuild,v 1.1 2009/11/15 00:10:10 cardoe Exp $
EAPI=2
inherit qt4 mythtv-plugins
DESCRIPTION="Video player module for MythTV."
IUSE=""
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND="dev-perl/libwww-perl
dev-perl/HTML-Parser
dev-perl/URI
dev-perl/XML-Simple
sys-apps/eject"
DEPEND=""
src_install() {
mythtv-plugins_src_install
newinitd "${FILESDIR}"/mtd.init.d mtd
# correct permissions so MythVideo is actually usable
fperms 755 /usr/share/mythtv/mythvideo/scripts/*.pl
fperms 755 /usr/share/mythtv/mythvideo/scripts/*.py
}
pkg_postinst() {
elog "MythVideo can use any media player to playback files if you"
elog "are *NOT* using Storage Groups. If you are using Storage"
elog "Groups, you *MUST* use the Internal player."
elog
elog "Otherwise, you can install mplayer, xine or any other video"
elog "player and use that instead by configuring the player to use."
elog "The default is 'Internal'."
}
|