pkgsrc/multimedia/vlc2/options.mk
kamil 7d7de73e56 multimedia/vlc2: import vlc2-2.2.6
VideoLAN is a project of French students from the Ecole Centrale Paris
and developers from all over the world. Its main goals is MPEG streaming
on a network, but it also features a standalone multimedia player. The
VideoLAN Server can stream video read from a hard disk, a DVD player,
a satellite card or an MPEG 2 compression card, and unicast or multicast
it on a network. The VideoLAN Client can read the stream from the network
and display it. It can also be used to display video read locally on
the computer : DVDs, VCDs, MPEG and DivX files and from a satellite
card. It is multi-plaform : Linux, Windows, Mac OS X, BeOS, BSD, Solaris,
QNX, iPaq... The VideoLAN Client and Server now have a full IPv6 support.

This package ships the 2.2.x version of VLC.
2018-04-25 22:39:02 +00:00

180 lines
4.1 KiB
Makefile

# $NetBSD: options.mk,v 1.13 2018/04/25 22:39:02 kamil Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.vlc2
PKG_SUPPORTED_OPTIONS= dbus debug dts faad gnome jack live pulseaudio
PKG_SUPPORTED_OPTIONS+= sdl vlc-skins x11
PKG_SUGGESTED_OPTIONS= dbus x11
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "SunOS"
PKG_SUGGESTED_OPTIONS+= live
.endif
### Add VAAPI if it is available
.include "../../multimedia/libva/available.mk"
PLIST_VARS+= vaapi
.if ${VAAPI_AVAILABLE} == "yes"
PKG_SUPPORTED_OPTIONS+= vaapi
PKG_SUGGESTED_OPTIONS+= vaapi
.endif
### Add LIRC if it is available
.include "../../comms/lirc/available.mk"
PLIST_VARS+= lirc
.if ${LIRC_AVAILABLE} == "yes"
PKG_SUPPORTED_OPTIONS+= lirc
PKG_SUGGESTED_OPTIONS+= lirc
.endif
###
.include "../../mk/bsd.options.mk"
PLIST_VARS+= ${PKG_SUPPORTED_OPTIONS}
## PulseAudio support
.if !empty(PKG_OPTIONS:Mpulseaudio)
CONFIGURE_ARGS+= --enable-pulse
.include "../../audio/pulseaudio/buildlink3.mk"
PLIST.pulseaudio= yes
.else
CONFIGURE_ARGS+= --disable-pulse
.endif
## Jack Audio Connection Kit support
.if !empty(PKG_OPTIONS:Mjack)
CONFIGURE_ARGS+= --enable-jack
.include "../../audio/jack/buildlink3.mk"
PLIST.jack= yes
.else
CONFIGURE_ARGS+= --disable-jack
.endif
## SDL backend support
.if !empty(PKG_OPTIONS:Msdl)
CONFIGURE_ARGS+= --enable-sdl
CONFIGURE_ARGS+= --enable-sdl-image
.include "../../devel/SDL/buildlink3.mk"
.include "../../graphics/SDL_image/buildlink3.mk"
PLIST.sdl= yes
.else
CONFIGURE_ARGS+= --disable-sdl
CONFIGURE_ARGS+= --disable-sdl-image
.endif
## gnome integration
.if !empty(PKG_OPTIONS:Mgnome)
CONFIGURE_ARGS+= --enable-gnomevfs
.include "../../sysutils/gnome-vfs/buildlink3.mk"
PLIST.gnome= yes
.else
CONFIGURE_ARGS+= --disable-gnomevfs
.endif
## DBUS message bus support
.if !empty(PKG_OPTIONS:Mdbus)
CONFIGURE_ARGS+= --enable-dbus
.include "../../sysutils/dbus/buildlink3.mk"
PLIST.dbus= yes
.else
CONFIGURE_ARGS+= --disable-dbus
.endif
## DEBUG build or release build
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
CONFIGURE_ARGS+= --disable-optimizations
.endif
## SKINS frontend
.if !empty(PKG_OPTIONS:Mvlc-skins)
CONFIGURE_ARGS+= --enable-skins2
PLIST.vlc-skins= yes
INSTALLATION_DIRS+= share/vlc/skins2
.else
CONFIGURE_ARGS+= --disable-skins2
.endif
## X11 dependency and QT4 frontend
PLIST_VARS+= egl
.if !empty(PKG_OPTIONS:Mx11)
DEPENDS+= dejavu-ttf>=2.0:../../fonts/dejavu-ttf
.include "../../graphics/freetype2/buildlink3.mk"
.include "../../x11/libXv/buildlink3.mk"
.include "../../x11/libXvMC/buildlink3.mk"
.include "../../x11/libXxf86vm/buildlink3.mk"
.include "../../x11/libXdamage/buildlink3.mk"
.include "../../x11/libXinerama/buildlink3.mk"
.include "../../x11/libXpm/buildlink3.mk"
.include "../../x11/libxcb/buildlink3.mk"
.include "../../x11/xcb-util-keysyms/buildlink3.mk"
.include "../../graphics/MesaLib/buildlink3.mk"
.include "../../graphics/glu/buildlink3.mk"
.include "../../x11/qt4-libs/buildlink3.mk"
CONFIGURE_ARGS+= --enable-qt \
--with-x
PLIST.x11= yes
.if ${X11_TYPE} == "modular" || exists(${X11BASE}/include/EGL/egl.h)
PLIST.egl= yes
.endif
.else
CONFIGURE_ARGS+= --without-x \
--disable-xcb \
--disable-qt \
--disable-freetype
.endif
.if !empty(PKG_OPTIONS:Mfaad)
CONFIGURE_ARGS+= --enable-faad
PLIST.faad= yes
.include "../../audio/faad2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-faad
.endif
## DTS support (libdca is non-redistributable)
.if !empty(PKG_OPTIONS:Mdts)
CONFIGURE_ARGS+= --enable-dca
PLIST.dts= yes
. include "../../audio/libdca/buildlink3.mk"
.else
CONFIGURE_ARGS+= --enable-dca=no
.endif
## RTSP support
.if !empty(PKG_OPTIONS:Mlive)
CONFIGURE_ARGS+= --enable-live555
PLIST.live= yes
BUILDLINK_API_DEPENDS.liblive+= liblive>=20111223
. include "../../net/liblive/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-live555
.endif
## VAAPI support
.if !empty(PKG_OPTIONS:Mvaapi)
CONFIGURE_ARGS+= --enable-libva
PLIST.vaapi= yes
.include "../../multimedia/libva/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-libva
.endif
## LIRC support
.if !empty(PKG_OPTIONS:Mlirc)
CONFIGURE_ARGS+= --enable-lirc
PLIST.lirc= yes
.include "../../comms/lirc/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-lirc
.endif