Hello

You can also use  git repo:
git://projects.vdr-developer.org/xineliboutput.git

I attach my own git version ebuild to xinelibout if it help you.

Tommi


On 02/01/2011 11:37 PM, Marco Göbenich wrote:
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@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
_______________________________________________
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr



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

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

# git repository

inherit vdr-plugin eutils multilib versionator git

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

#inherit vdr-plugin eutils multilib versionator cvs

#ECVS_SERVER="xineliboutput.cvs.sourceforge.net:/cvsroot/xineliboutput"
#ECVS_MODULE="vdr-xineliboutput"
#ECVS_AUTH="pserver"
#ECVS_UP_OPTS="-dPA -D20090801"

S="${WORKDIR}/${PN}"

MY_PV=${PV/_/}
MY_P=${PN}-${MY_PV}

SO_VERSION="${PV%_p*}"
SO_VERSION="${SO_VERSION/_/}"

DESCRIPTION="Video Disk Recorder Xinelib PlugIn"
HOMEPAGE="http://sourceforge.net/projects/xineliboutput/";
#SRC_URI="mirror://sourceforge/${PN#vdr-}/${MY_P}.tgz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="fbcon X libextractor"

RDEPEND=">=media-video/vdr-1.4.0
                >=media-libs/xine-lib-1.1.1
                media-libs/jpeg
                libextractor? ( >=media-libs/libextractor-0.5.20 )
                X? (
                        x11-proto/xextproto
                        x11-proto/xf86vidmodeproto
                        x11-proto/xproto
                        x11-proto/renderproto
                )"

DEPEND="${RDEPEND}
                sys-kernel/linux-headers
                X? (
                        x11-libs/libX11
                        x11-libs/libXv
                        x11-libs/libXext
                        x11-libs/libXrender
                )"

#S=${WORKDIR}/${MY_P#vdr-}

VDR_CONFD_FILE=${FILESDIR}/confd-1.0.0_pre6

use_onoff() {
        if use "$1"; then
                echo 1
        else
                echo 0
        fi
}

src_unpack() {
        git_src_unpack
#       cvs_src_unpack

        vdr-plugin_src_unpack all_but_unpack

        cd "${S}"

        XINE_PLUGIN_DIR=$(xine-config --plugindir)
        if [[ ${XINE_PLUGIN_DIR} = "" ]]; then
                eerror "Could not find xine plugin dir"
                die "Could not find xine plugin dir"
        fi
        # stop some automagic overwriting the stuff we set
        sed -e '/XINELIBOUTPUT_VDRPLUGIN = 1/s/^/#/' \
                -e '/HAVE_EXTRACTOR_H = 1/s/^/#/' \
                -i Makefile

        cat >>Make.config <<-EOF
                XINELIBOUTPUT_XINEPLUGIN = 1
                XINELIBOUTPUT_VDRPLUGIN = 1

                XINELIBOUTPUT_FB = $(use_onoff fbcon)
                XINELIBOUTPUT_X11 = $(use_onoff X)

                HAVE_XRENDER = 1
                HAVE_XDPMS = 1
                HAVE_EXTRACTOR_H = $(use_onoff libextractor)
        EOF

        # patching makefile to work with this
        # $ rm ${outdir}/file; cp file ${outdir}/file
        # work in the sandbox
        sed -i Makefile \
                -e 's:XINEPLUGINDIR.*=.*:XINEPLUGINDIR = '"${WORKDIR}/lib:" \
                -e 's:VDRINCDIR.*=.*:VDRINCDIR ?= /usr/include:'
        mkdir -p "${WORKDIR}/lib"
}

src_install() {
        vdr-plugin_src_install

        use fbcon && dobin vdr-fbfe
        use X && dobin vdr-sxfe

        # There may be no sub-plugin, depending on use-flags
        insinto ${VDR_PLUGIN_DIR}
        local f
        for f in libxineliboutput*.so.${SO_VERSION}; do
                [[ -f "$f" ]] || continue
                doins "${f}" || die "could not install sub-plugin ${f}"
        done

        insinto "${XINE_PLUGIN_DIR}"
        doins xineplug_inp_*.so

        insinto "${XINE_PLUGIN_DIR}"/post
        doins xineplug_post_*.so
}
_______________________________________________
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr

Reply via email to