blob: 8c5a61dd9d519cf7d291fe4ad27ee7d9ad01b246 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-amarok/vdr-amarok-0.0.2.ebuild,v 1.6 2012/06/30 16:16:06 hd_brummy Exp $
EAPI="4"
inherit vdr-plugin
DESCRIPTION="VDR plugin: amarok frontend"
HOMEPAGE="http://irimi.ir.ohost.de/"
SRC_URI="http://irimi.ir.ohost.de/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=media-video/vdr-1.4.0"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-gcc4.3.patch"
"${FILESDIR}/${P}-gcc4.4.patch"
"${FILESDIR}/${P}_gcc-4.7.diff" )
pkg_postinst() {
vdr-plugin_pkg_postinst
elog
elog "To use this plugin you need to install"
elog "media-sound/vdramgw on this machine"
elog "or a machine reachable via network"
}
|