blob: cd8745a7e394682424531a4a7647d88b8fa179b2 (
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
|
# Copyright 2003-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-osdpip/vdr-osdpip-0.0.8-r1.ebuild,v 1.3 2007/07/10 23:08:59 mr_bones_ Exp $
inherit vdr-plugin
DESCRIPTION="VDR plugin: Show another channel in the OSD"
HOMEPAGE="http://www.magoa.net/linux"
SRC_URI="http://www.magoa.net/linux/files/${P}.tgz"
KEYWORDS="x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=media-video/vdr-1.3.7
>=media-libs/libmpeg2-0.4.0
>=media-video/ffmpeg-0.4.8
"
PATCHES="${FILESDIR}/${P}-includes.diff ${FILESDIR}/${P}-gcc4.diff"
src_unpack() {
vdr-plugin_src_unpack
/bin/sed -i Makefile \
-e 's+^FFMDIR.*$+FFMDIR = /usr/include/ffmpeg+' \
-e 's+-I\$(FFMDIR)/libavcodec+-I$(FFMDIR)+' \
-e 's+-L\$(FFMDIR)/libavcodec++'
}
|