3b07c69f49
* build system: Fixed building the Qt version of mkvinfo's GUI (again). * mmg: bug fix: If the header editor finds 'language' elements with ISO-639-1 codes (e.g. "fra" instead of "fre" for "French") then it will map the code to the corresponding ISO-639-2 code * mmg: bug fix: Fixed one of the issues causing mmg to report that it is configured to use an unsupported version of mkvmerge when the reported version was actually empty. * mkvmerge: enhancement: HD-DVD subtitles are recognized as being an unsupported file format. This makes the error message presented to the user a bit clearer. * build: Boost 1.36.0 or newer is required (up from 1.34.0). Also fixed building with v3 of Boost's filesystem library, e.g. with Boost 1.46.0 Beta 1 or newer. * mkvpropedit: new feature: Added support for adding, replacing and removing tags. * all: Added a translation for the programs into Turkish by ßouЯock. * build system: Fixed compilation if configure choses the internal versions of libebml and libmatroska while older versions are still installed in a location named with "-I..." or "-L..." in CFLAGS/CXXFLAGS/LDFLAGS or with configure's "--with-extra-includes" and "--with-extra-libs" options.
36 lines
981 B
Makefile
36 lines
981 B
Makefile
# $NetBSD: options.mk,v 1.1 2011/03/20 13:19:44 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mkvtoolnix
|
|
PKG_SUPPORTED_OPTIONS= # empty
|
|
PKG_OPTIONS_OPTIONAL_GROUPS= gui
|
|
PKG_OPTIONS_GROUP.gui= wxwidgets
|
|
PKG_SUGGESTED_OPTIONS= # empty
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= gui
|
|
|
|
.if !empty(PKG_OPTIONS:Mqt) || !empty(PKG_OPTIONS:Mwxwidgets)
|
|
PLIST.gui= yes
|
|
CONFIGURE_ARGS+= --enable-gui
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gui
|
|
.endif
|
|
|
|
#.if !empty(PKG_OPTIONS:Mqt)
|
|
#CONFIGURE_ARGS+= --enable-qt
|
|
#. include "../../x11/qt4-libs/buildlink3.mk"
|
|
#. include "../../x11/qt4-tools/buildlink3.mk"
|
|
#.else
|
|
#CONFIGURE_ARGS+= --disable-qt
|
|
#.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mwxwidgets)
|
|
CONFIGURE_ARGS+= --enable-wxwidgets
|
|
. include "../../databases/shared-mime-info/mimedb.mk"
|
|
. include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
. include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
. include "../../x11/wxGTK28/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-wxwidgets
|
|
.endif
|