public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-softdevice: ChangeLog vdr-softdevice-0.5.0.20090630.ebuild
@ 2009-06-30 20:46 Matthias Schwarzott (zzam)
  0 siblings, 0 replies; 3+ messages in thread
From: Matthias Schwarzott (zzam) @ 2009-06-30 20:46 UTC (permalink / raw
  To: gentoo-commits

zzam        09/06/30 20:46:34

  Modified:             ChangeLog
  Added:                vdr-softdevice-0.5.0.20090630.ebuild
  Log:
  Added a new snapshot.
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.64                 media-plugins/vdr-softdevice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	3 Mar 2009 11:56:11 -0000	1.63
+++ ChangeLog	30 Jun 2009 20:46:34 -0000	1.64
@@ -1,6 +1,12 @@
 # ChangeLog for media-plugins/vdr-softdevice
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v 1.63 2009/03/03 11:56:11 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v 1.64 2009/06/30 20:46:34 zzam Exp $
+
+*vdr-softdevice-0.5.0.20090630 (30 Jun 2009)
+
+  30 Jun 2009; Matthias Schwarzott <zzam@gentoo.org>
+  +vdr-softdevice-0.5.0.20090630.ebuild:
+  Added a new snapshot.
 
   03 Mar 2009; Matthias Schwarzott <zzam@gentoo.org>
   vdr-softdevice-0.5.0.20090218.ebuild:



1.1                  media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?rev=1.1&content-type=text/plain

Index: vdr-softdevice-0.5.0.20090630.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild,v 1.1 2009/06/30 20:46:34 zzam Exp $

EAPI=1

inherit eutils vdr-plugin versionator

DESCRIPTION="VDR Plugin: Software output-Device"
HOMEPAGE="http://softdevice.berlios.de/"

# Detect snapshots
SNAP_V="$(get_version_component_range 4)"
if [[ "$SNAP_V" ]]; then
	MY_P="${PN}-cvs-${SNAP_V}"
	S="${WORKDIR}/${MY_P#vdr-}"
	SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
else
	SRC_URI="mirror://berlios/${PN#vdr-}/${P}.tgz"
fi

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+xv fbcon directfb mmx mmxext xinerama"

RDEPEND=">=media-video/vdr-1.3.36
	>=media-video/ffmpeg-0.4.9_pre1
	directfb? (
		dev-libs/DirectFB
		dev-libs/DFB++
	)
	media-libs/alsa-lib
	xv? ( x11-libs/libX11
				x11-libs/libXext
				x11-libs/libXi
				x11-libs/libXv
				xinerama? ( x11-libs/libXinerama )
	)"

DEPEND="${RDEPEND}
	xv? ( x11-proto/xproto
				x11-proto/xextproto
				x11-libs/libXv
				xinerama? ( x11-proto/xineramaproto )
			)
	fbcon? ( sys-kernel/linux-headers )
	dev-util/pkgconfig"
# Make sure the assembler USE flags are unmasked on amd64
# Remove this once default-linux/amd64/2006.1 is deprecated
DEPEND="${DEPEND} amd64? ( >=sys-apps/portage-2.1.2 )"

PATCHES=("${FILESDIR}/patches-0.4.0/shm-fullscreen-parameter.diff")

pkg_setup() {
	vdr-plugin_pkg_setup

	if ! use xv && ! use fbcon && ! use directfb; then
		ewarn "You need to set at least one of these use-flags: xv fbcon directfb"
		die "no output-method enabled"
	fi

	COMPILE_SHM=0
	if has_version ">=media-video/vdr-1.3.0"; then
		if use xv; then
			COMPILE_SHM=1
		else
			elog "SHM does only support xv at the moment"
		fi
	else
		elog "SHM not supported on vdr-1.2"
	fi
	case ${COMPILE_SHM} in
		0)	elog "SHM support will not be compiled." ;;
		1)	elog "SHM support will be compiled." ;;
	esac

	# Check for ffmpeg relying on libtheora without pkg-config-file
	# Bug #142250
	if built_with_use media-video/ffmpeg theora	&& \
		has_version "<media-libs/libtheora-1.0_alpha4"; then

			eerror "This package will not work when using ffmpeg with"
			eerror "USE=\"theora\" combined with media-libs/libtheora"
			eerror "older than version 1.0_alpha4."
			eerror "Please update to at least media-libs/libtheora-1.0_alpha4."
			die "Please update to at least media-libs/libtheora-1.0_alpha4."
	fi
}

src_compile() {
	local MYOPTS=""
	MYOPTS="${MYOPTS} --disable-vidix"
	use xv || MYOPTS="${MYOPTS} --disable-xv"
	use fbcon || MYOPTS="${MYOPTS} --disable-fb"
	use directfb || MYOPTS="${MYOPTS} --disable-dfb"

	use mmx || MYOPTS="${MYOPTS} --disable-mmx"
	use mmxext || MYOPTS="${MYOPTS} --disable-mmx2"

	use xinerama || MYOPTS="${MYOPTS} --disable-xinerama"

	[[ ${COMPILE_SHM} == 1 ]] || MYOPTS="${MYOPTS} --disable-shm"

	cd "${S}"
	elog configure ${MYOPTS}
	./configure ${MYOPTS} || die "configure failed"

	vdr-plugin_src_compile
}

src_install() {
	vdr-plugin_src_install

	cd "${S}"

	insinto "${VDR_PLUGIN_DIR}"
	doins libsoftdevice-*.so.*

	if [[ "${COMPILE_SHM}" = "1" ]]; then
		exeinto "/usr/bin"
		doexe ShmClient
		make_desktop_entry ShmClient "VDR softdevice Client" "" "AudioVideo;TV"
	fi

	insinto /usr/include/vdr-softdevice
	doins *.h
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-softdevice: ChangeLog vdr-softdevice-0.5.0.20090630.ebuild
@ 2009-09-19 18:29 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 3+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-19 18:29 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/09/19 18:29:39

  Modified:             ChangeLog vdr-softdevice-0.5.0.20090630.ebuild
  Log:
  Convert to EAPI 2 in order to nuke built_with_use usage.
  (Portage version: 2.2_rc40/cvs/Linux i686)

Revision  Changes    Path
1.65                 media-plugins/vdr-softdevice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	30 Jun 2009 20:46:34 -0000	1.64
+++ ChangeLog	19 Sep 2009 18:29:38 -0000	1.65
@@ -1,6 +1,10 @@
 # ChangeLog for media-plugins/vdr-softdevice
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v 1.64 2009/06/30 20:46:34 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v 1.65 2009/09/19 18:29:38 betelgeuse Exp $
+
+  19 Sep 2009; Petteri Räty <betelgeuse@gentoo.org>
+  vdr-softdevice-0.5.0.20090630.ebuild:
+  Convert to EAPI 2 in order to nuke built_with_use usage.
 
 *vdr-softdevice-0.5.0.20090630 (30 Jun 2009)
 



1.2                  media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?r1=1.1&r2=1.2

Index: vdr-softdevice-0.5.0.20090630.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vdr-softdevice-0.5.0.20090630.ebuild	30 Jun 2009 20:46:34 -0000	1.1
+++ vdr-softdevice-0.5.0.20090630.ebuild	19 Sep 2009 18:29:38 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild,v 1.1 2009/06/30 20:46:34 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild,v 1.2 2009/09/19 18:29:38 betelgeuse Exp $
 
-EAPI=1
+EAPI="2"
 
 inherit eutils vdr-plugin versionator
 
@@ -24,8 +24,17 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="+xv fbcon directfb mmx mmxext xinerama"
 
+# converted from built_with_use that had this comment:
+# Check for ffmpeg relying on libtheora without pkg-config-file
+# Bug #142250
 RDEPEND=">=media-video/vdr-1.3.36
-	>=media-video/ffmpeg-0.4.9_pre1
+	|| (
+		>=media-video/ffmpeg-0.4.9_pre1[-theora]
+		(
+			>=media-video/ffmpeg-0.4.9_pre1[theora]
+			>=media-libs/libtheora-1.0_alpha4
+		)
+	)
 	directfb? (
 		dev-libs/DirectFB
 		dev-libs/DFB++
@@ -74,21 +83,9 @@
 		0)	elog "SHM support will not be compiled." ;;
 		1)	elog "SHM support will be compiled." ;;
 	esac
-
-	# Check for ffmpeg relying on libtheora without pkg-config-file
-	# Bug #142250
-	if built_with_use media-video/ffmpeg theora	&& \
-		has_version "<media-libs/libtheora-1.0_alpha4"; then
-
-			eerror "This package will not work when using ffmpeg with"
-			eerror "USE=\"theora\" combined with media-libs/libtheora"
-			eerror "older than version 1.0_alpha4."
-			eerror "Please update to at least media-libs/libtheora-1.0_alpha4."
-			die "Please update to at least media-libs/libtheora-1.0_alpha4."
-	fi
 }
 
-src_compile() {
+src_configure() {
 	local MYOPTS=""
 	MYOPTS="${MYOPTS} --disable-vidix"
 	use xv || MYOPTS="${MYOPTS} --disable-xv"
@@ -105,8 +102,6 @@
 	cd "${S}"
 	elog configure ${MYOPTS}
 	./configure ${MYOPTS} || die "configure failed"
-
-	vdr-plugin_src_compile
 }
 
 src_install() {






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-softdevice: ChangeLog vdr-softdevice-0.5.0.20090630.ebuild
@ 2009-11-21 19:42 Markus Meier (maekke)
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Meier (maekke) @ 2009-11-21 19:42 UTC (permalink / raw
  To: gentoo-commits

maekke      09/11/21 19:42:26

  Modified:             ChangeLog vdr-softdevice-0.5.0.20090630.ebuild
  Log:
  x86 stable, bug #285612
  (Portage version: 2.2_rc51/cvs/Linux x86_64)

Revision  Changes    Path
1.66                 media-plugins/vdr-softdevice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	19 Sep 2009 18:29:38 -0000	1.65
+++ ChangeLog	21 Nov 2009 19:42:25 -0000	1.66
@@ -1,6 +1,10 @@
 # ChangeLog for media-plugins/vdr-softdevice
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v 1.65 2009/09/19 18:29:38 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/ChangeLog,v 1.66 2009/11/21 19:42:25 maekke Exp $
+
+  21 Nov 2009; Markus Meier <maekke@gentoo.org>
+  vdr-softdevice-0.5.0.20090630.ebuild:
+  x86 stable, bug #285612
 
   19 Sep 2009; Petteri Räty <betelgeuse@gentoo.org>
   vdr-softdevice-0.5.0.20090630.ebuild:



1.3                  media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild?r1=1.2&r2=1.3

Index: vdr-softdevice-0.5.0.20090630.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vdr-softdevice-0.5.0.20090630.ebuild	19 Sep 2009 18:29:38 -0000	1.2
+++ vdr-softdevice-0.5.0.20090630.ebuild	21 Nov 2009 19:42:25 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild,v 1.2 2009/09/19 18:29:38 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-softdevice/vdr-softdevice-0.5.0.20090630.ebuild,v 1.3 2009/11/21 19:42:25 maekke Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+xv fbcon directfb mmx mmxext xinerama"
 
 # converted from built_with_use that had this comment:






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-11-21 19:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-21 19:42 [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-softdevice: ChangeLog vdr-softdevice-0.5.0.20090630.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-19 18:29 Petteri Raty (betelgeuse)
2009-06-30 20:46 Matthias Schwarzott (zzam)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox