blob: e1a5c95dfc7679a933095461bcc47f608989c227 (
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-2011 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.10.ebuild,v 1.5 2011/04/06 17:16:53 idl0r Exp $
inherit vdr-plugin flag-o-matic
DESCRIPTION="VDR plugin: Show another channel in the OSD"
HOMEPAGE="http://www.magoa.net/linux"
SRC_URI="http://home.arcor.de/andreas.regel/files/osdpip/${P}.tgz"
KEYWORDS="~amd64 x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=media-video/vdr-1.4.0
>=media-libs/libmpeg2-0.4.0
>=virtual/ffmpeg-0.4.9"
RDEPEND="${DEPEND}"
#PATCHES=("${FILESDIR}/${P}-vdr-1.5.0.diff")
PATCHES=( "${FILESDIR}/${P}-avutil50.patch" )
src_unpack() {
vdr-plugin_src_unpack
sed -i Makefile \
-e 's+^FFMDIR.*$+FFMDIR = /usr/include/ffmpeg+' \
-e 's+-I\$(FFMDIR)/libavcodec+-I$(FFMDIR)+' \
-e 's+-L\$(FFMDIR)/libavcodec++'
if has_version ">=virtual/ffmpeg-0.4.9_p20080326" ; then
#epatch "${FILESDIR}/${P}-ffmpeg-0.4.9_p20080326-new_header.diff"
sed -i Makefile -e 's/#WITH_NEW_FFMPEG_HEADERS/WITH_NEW_FFMPEG_HEADERS/'
fi
# UINT64_C is needed by ffmpeg headers
append-flags -D__STDC_CONSTANT_MACROS
}
|