Re: vdr-sxfe open hug OSD

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi!

There is also -9999 version, the problem is that it uses CVS at sourceforge, and this does not work at the moment.

Regards

Marco


Am 01.02.2011 21:40, schrieb Oliver Schinagl:
*  media-plugins/vdr-xineliboutput
       Latest version available: 1.0.5-r1
       Latest version installed: 1.0.5-r1

is the version i'm havinga vailable to me on gentoo :)


On 02/01/11 20:54, Niko Mikkilä wrote:
On 2011-02-01 19:48 +0100, Oliver Schinagl wrote:
And the reason why I hadn't tried those:

vdr-sxfe: option '--hud' doesn't allow an argument
vdr-sxfe: unrecognized option '--opengl'
Then you have an old version of Xineliboutput. What does vdr-sxfe -h say
about the options? For example, I'm using the yaVDR-packaged version,
which is probably two or three weeks older than rofa's CVS build, and it
has these switches:

-D, --hud            Head Up Display OSD mode using compositing
-Q, --opengl-always  Always use OpenGL for video and Head Up Display OSD
-O, --opengl-hud     Head Up Display OSD mode using OpenGL

Since SourceForge's CVS servers are still down, it may be a bit tricky
to get the latest and greatest version.

--
Niko


_______________________________________________
vdr mailing list
vdr@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
_______________________________________________
vdr mailing list
vdr@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


--
Needful GbR  Rheinstraße 60a          Telefon +49 (0) 26 24 / 95 29 301
             56203 Höhr-Grenzhausen   Telefax +49 (0) 26 24 / 95 29 303
             http://www.needful.de    E-Mail  mg@xxxxxxxxxx

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-xineliboutput/vdr-xineliboutput-9999.ebuild,v 1.6 2010/12/07 19:54:10 idl0r Exp $

GENTOO_VDR_CONDITIONAL=yes

EAPI="3"

inherit vdr-plugin git toolchain-funcs eutils

MY_PV=${PV#*_p}
MY_P=${PN}

DESCRIPTION="Video Disk Recorder Xinelib PlugIn"
HOMEPAGE="http://sourceforge.net/projects/xineliboutput/";

EGIT_REPO_URI="git://projects.vdr-developer.org/xineliboutput.git"
EGIT_BRANCH="master"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS=""
IUSE="dbus fbcon jpeg libextractor nls +vdr vdpau +X +xine xinerama"

COMMON_DEPEND="
	vdr? (
		>=media-video/vdr-1.6.0
		libextractor? ( >=media-libs/libextractor-0.5.20 )
	)

	xine? (
		|| ( <media-libs/xine-lib-1.2 ( >=media-libs/xine-lib-1.2 media-video/ffmpeg ) )
		fbcon? ( jpeg? ( media-libs/jpeg ) )
		X? (
			x11-libs/libX11
			x11-libs/libXext
			x11-libs/libXrender
			xinerama? ( x11-libs/libXinerama )
			dbus? ( dev-libs/dbus-glib dev-libs/glib:2 )
			vdpau? ( x11-libs/libvdpau >=media-libs/xine-lib-1.2 )
			jpeg? ( media-libs/jpeg )
		)
	)"

DEPEND="${COMMON_DEPEND}
	dev-util/pkgconfig
	sys-kernel/linux-headers
	nls? ( sys-devel/gettext )
	xine? (
		X? (
			x11-proto/xproto
			x11-libs/libXxf86vm
		)
	)"
RDEPEND="${COMMON_DEPEND}"

S=${WORKDIR}/${MY_P}

VDR_CONFD_FILE="${FILESDIR}/confd-1.0.0_pre6"

pkg_setup() {
	if ! use vdr && ! use xine; then
		die "You either need at least one of these flags: vdr xine"
	fi

	vdr-plugin_pkg_setup

	if use xine; then
		XINE_PLUGIN_DIR=$(xine-config --plugindir)
		[ -z "${XINE_PLUGIN_DIR}" ] && die "Could not find xine plugin dir"
	fi
}

src_prepare() {
	#epatch "${FILESDIR}/${P}-build-system.patch"

	vdr-plugin_src_prepare

	sed -i -e 's:^\(LOCALEDIR\) .*:\1 = $(DESTDIR)/usr/share/vdr/locale:' \
		-e "s:LIBDIR .*:LIBDIR = ${VDR_PLUGIN_DIR}:" \
		Makefile || die
}

src_configure() {
	local myconf

	if has_version ">=media-libs/xine-lib-1.2"; then
		myconf="${myconf} --enable-libavutil"
	else
		myconf="${myconf} --disable-libavutil"
	fi

	# No autotools based configure script
	# There is no real opengl support, just the switch and some help text is
	# left...
	./configure \
		--cc=$(tc-getCC) \
		--cxx=$(tc-getCXX) \
		$(use_enable X x11) \
		$(use_enable X xshm) \
		$(use_enable X xdpms) \
		$(use_enable X xshape) \
		$(use_enable X xrender) \
		$(use_enable fbcon fb) \
		$(use_enable vdr) \
		$(use_enable xine libxine) \
		$(use_enable libextractor) \
		$(use_enable jpeg libjpeg) \
		$(use_enable xinerama) \
		$(use_enable vdpau) \
		$(use_enable dbus dbus-glib-1) \
		$(use_enable nls i18n) \
		${myconf} \
		--disable-opengl \
		|| die
}

src_install() {
	if use vdr; then
		vdr-plugin_src_install

		# bug 346989
		insinto /etc/vdr/plugins/xineliboutput/
		doins examples/allowed_hosts.conf || die
		fowners -R vdr:vdr /etc/vdr/

		if use nls; then
			emake DESTDIR="${D}" i18n || die
		fi

		if use xine; then
			insinto $XINE_PLUGIN_DIR
			doins xineplug_inp_xvdr.so || die

			insinto $XINE_PLUGIN_DIR/post
			doins xineplug_post_*.so || die

			if use fbcon; then
				dobin vdr-fbfe || die

				insinto $VDR_PLUGIN_DIR
				doins libxineliboutput-fbfe.so.* || die
			fi

			if use X; then
				dobin vdr-sxfe || die

				insinto $VDR_PLUGIN_DIR
				doins libxineliboutput-sxfe.so.* || die
			fi
		fi
	else
		emake DESTDIR="${D}" install || die

		dodoc HISTORY README
	fi
}
_______________________________________________
vdr mailing list
vdr@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr

[Index of Archives]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Util Linux NG]     [Xfree86]     [Big List of Linux Books]     [Fedora Users]     [Fedora Women]     [ALSA Devel]     [Linux USB]

  Powered by Linux