svn commit: r313554 - in head/audio: . tomahawk tomahawk/files

Max Brazhnikov makc at freebsd.org
Fri Mar 8 13:30:02 UTC 2013


On Thu, 07 Mar 2013 15:16:25 +0100 Nicola Vitale wrote:
> Hi,
> 
> > [2013/3/7 Max Brazhnikov <makc at issp.ac.ru>]
> >> +RUN_DEPENDS=   phonon-vlc>=0.6.1:${PORTSDIR}/multimedia/phonon-vlc \
> >> +               phonon-gstreamer>=4.6.3:${PORTSDIR}/multimedia/phonon-
> > gstreamer \
> > Please don't force dependence on phonon backends until upstream strictly
> > recommend particular one.
> 
> I added both because in the CMakeLists.txt there is this line:
> 
> if(PHONON_FOUND)
>     message(STATUS "Phonon found; ensure that phonon-vlc is at least 0.4")
> endif()

looks like they prefer vlc, but this is far from strict requirement :)

You can use options for this, e.g.

OPTIONS_GROUP_PHONON=	GSTREAMER VLC XINE
OPTIONS_DEFAULT=	GSTREAMER

.if ${PORT_OPTIONS:MGSTREAMER}
RUN_DEPENDS+=   phonon-gstreamer>=4.6.3:${PORTSDIR}/multimedia/phonon-gstreamer
.endif

and similar for vlc and xine backends

Max


More information about the svn-ports-all mailing list