blob: 4373fdb2249ebb8cd5bc431d699c01b7c864fa84 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/mythvideo-0.21_p17595.ebuild,v 1.2 2008/12/12 20:05:26 beandog Exp $
inherit 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
}
pkg_postinst() {
elog "MythVideo can use any media player to playback files, since"
elog "it's a setting in the setup menu."
elog
elog "MythTV also has an 'Internal' player you can use, which will"
elog "be the default for new installs. If you want to use it,"
elog "set the player to 'Internal' (note spelling & caps)."
elog
elog "Otherwise, you can install mplayer, xine or any other video"
elog "player and use that instead by configuring the player to use."
}
|