Bonjour,

Voici quelques conseils pour installer MP9 (vlc 0.8.6c) sur une distribution Gentoo 2007.0:

- USE Flags :
media-video/ffmpeg a52 aac amr dts encode mmx network ogg theora truetype vorbis x264 xvid zlib
media-video/vlc a52 alsa bidi cdda cddb dts dvd flac httpd live matroska mod mp3 mpeg musepack ncurses ogg png samba stream svg theora truetype vlm vorbis x264 xml

- Script de démarrage :

CODE
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
need localmount net
use samba
}

start() {
ebegin "Starting N9uf Media Player Daemon"
start-stop-daemon --start --background --pidfile /var/run/mp9.pid --make-pidfile --exec /usr/bin/vlc -- -I http --http-src /usr/share/vlc/http/ --http-host :26180 --audio-language en_GB --config /usr/share/vlc/mp9.cfg --verbose 0
eend $?
}

stop() {
ebegin "Stoping N9uf Media Player Daemon"
start-stop-daemon --stop --pidfile /var/run/mp9.pid
eend $?
}

restart() {
svc_stop
svc_start
}