blob: 0c60bcb97cb7dd9c17c62096bd178db0c7b63bb5 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-games/vdr-games-0.6.3-r1.ebuild,v 1.1 2011/01/29 01:03:17 hd_brummy Exp $
EAPI="3"
inherit vdr-plugin
DESCRIPTION="Video Disk Recorder games plugin"
HOMEPAGE="http://1541.org/"
SRC_URI="http://1541.org/public/${P}.tar.gz
mirror://vdrfiles/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=media-video/vdr-1.2.6"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-gentoo.diff" )
src_prepare() {
vdr-plugin_src_prepare
sed -i Makefile -e "s:make -s:\$(MAKE) -s:g"
}
|