summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2008-05-04 04:21:00 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2008-05-04 04:21:00 +0000
commit7598114b2ba162a14e5fd9a4690236f2afd0afb1 (patch)
tree5d49205b1c5c71ac12662fe6201ae04f52250a40 /media-plugins
parentunmasking games-server/greenhouse now that bug #217901 is fixed. (diff)
downloadgentoo-2-7598114b2ba162a14e5fd9a4690236f2afd0afb1.tar.gz
gentoo-2-7598114b2ba162a14e5fd9a4690236f2afd0afb1.tar.bz2
gentoo-2-7598114b2ba162a14e5fd9a4690236f2afd0afb1.zip
Version bumped. This version has own support for newer ffmpeg.
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'media-plugins')
-rw-r--r--media-plugins/vdr-osdpip/ChangeLog8
-rw-r--r--media-plugins/vdr-osdpip/vdr-osdpip-0.0.10.ebuild35
2 files changed, 42 insertions, 1 deletions
diff --git a/media-plugins/vdr-osdpip/ChangeLog b/media-plugins/vdr-osdpip/ChangeLog
index 03cb7bd635e8..0d6f9abec32a 100644
--- a/media-plugins/vdr-osdpip/ChangeLog
+++ b/media-plugins/vdr-osdpip/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-plugins/vdr-osdpip
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog,v 1.6 2008/04/28 19:17:57 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog,v 1.7 2008/05/04 04:21:00 zzam Exp $
+
+*vdr-osdpip-0.0.10 (04 May 2008)
+
+ 04 May 2008; Matthias Schwarzott <zzam@gentoo.org>
+ +vdr-osdpip-0.0.10.ebuild:
+ Version bumped. This version has own support for newer ffmpeg.
*vdr-osdpip-0.0.9 (28 Apr 2008)
diff --git a/media-plugins/vdr-osdpip/vdr-osdpip-0.0.10.ebuild b/media-plugins/vdr-osdpip/vdr-osdpip-0.0.10.ebuild
new file mode 100644
index 000000000000..8ca238e23143
--- /dev/null
+++ b/media-plugins/vdr-osdpip/vdr-osdpip-0.0.10.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2003-2008 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.1 2008/05/04 04:21:00 zzam Exp $
+
+inherit vdr-plugin
+
+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
+ >=media-video/ffmpeg-0.4.8
+ "
+
+#PATCHES=("${FILESDIR}/${P}-vdr-1.5.0.diff")
+
+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 ">=media-video/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
+}