diff options
author | ahoka <ahoka@pkgsrc.org> | 2008-09-27 22:33:20 +0000 |
---|---|---|
committer | ahoka <ahoka@pkgsrc.org> | 2008-09-27 22:33:20 +0000 |
commit | 1ba4647814c20c28459de5b2156096611050584a (patch) | |
tree | 66721a67747e4178018e9e683aa6545d09f6b549 /multimedia/vlc/options.mk | |
parent | e18d40bbba2f878bfc3c884d55fd904f9c18adb7 (diff) | |
download | pkgsrc-1ba4647814c20c28459de5b2156096611050584a.tar.gz |
Update to 0.9.2, the first real 0.9.x release of VLC.
Only minor bugfixes, no detailed list in the changelog.
Add gnome option for gnome-vfs, not enabled by default.
Add support for V4L2. This is only enabled for Linux now.
Build needs to be fixed for NetBSD and tested for others.
Diffstat (limited to 'multimedia/vlc/options.mk')
-rw-r--r-- | multimedia/vlc/options.mk | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/multimedia/vlc/options.mk b/multimedia/vlc/options.mk index c72425ddd6b..d58a254f316 100644 --- a/multimedia/vlc/options.mk +++ b/multimedia/vlc/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.7 2008/09/08 18:58:24 ahoka Exp $ +# $NetBSD: options.mk,v 1.8 2008/09/27 22:33:20 ahoka Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.vlc -PKG_SUPPORTED_OPTIONS= debug faad arts dbus skins sdl esound x11 +PKG_SUPPORTED_OPTIONS= debug faad arts dbus skins sdl esound x11 gnome PKG_SUGGESTED_OPTIONS= x11 esound .include "../../mk/bsd.options.mk" @@ -27,6 +27,16 @@ CONFIGURE_ARGS+= --disable-sdl CONFIGURE_ARGS+= --disable-sdl-image .endif +## gnome-vfs support + +.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 ## also libnotify because it uses dbus ## so taking them apart would make no sense. |