ec708af751
Changes since 2.1.10: * Several stability fixes, found with Valgrind and the Fedora retrace server * Use GTK+ 3 by default, but still allow building against GTK+ 2 * Support extended tag fields in MP4 files * Support GIF images in tags * Abhinav Jangda’s Ogg Opus support, asynchronous image loading, scanner function tests and new Vorbis cover art support * Santtu Lakkala’s MP4 cover art and GIO support, fix for Roman numeral capitalization * Ask for confirmation before overwriting during renaming * Ekaterina Gerasimova’s Mallard help updates * Avoid truncating Vorbis audio data when saving * Gianvito Cavasoli’s Italian translation update * Alexandre Franke’s French translation updates and typo fix * Wolfgang Stöggl’s German translation updates * Piotr Drąg’s Polish translation updates * Мирослав Николић’s Serbian translation update * Daniel Mustieles’ Spanish translation updates * Balázs Úr and Attila Hammer’s Hungarian translation updates * Enrico Nicoletto and Rafael Ferrera’s Brazilian Portuguese translation updates * Marek Černocký’s Czech translation updates * Aurimas Černius’s Lithuanian translation update
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $NetBSD: options.mk,v 1.8 2014/04/12 06:45:31 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.easytag
|
|
PKG_SUPPORTED_OPTIONS= flac ogg opus speex wavpack
|
|
PKG_SUGGESTED_OPTIONS= flac ogg opus speex wavpack
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mflac)
|
|
. include "../../audio/flac/buildlink3.mk"
|
|
. include "../../audio/libvorbis/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-flac
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-flac
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mogg)
|
|
. include "../../audio/libvorbis/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-ogg
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ogg
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopus)
|
|
. include "../../audio/libopus/buildlink3.mk"
|
|
. include "../../audio/opusfile/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-opus
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-opus
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mspeex)
|
|
. include "../../audio/speex/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-speex
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-speex
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mwavpack)
|
|
. include "../../audio/wavpack/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-wavpack
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-wavpack
|
|
.endif
|