Changes to previous version in easytag-devel (1.99.13): 2.0 - February 21th, 2007 : =========================== * Added buttons in toolbar to search files, to search in cddb and to write playlist, * Added in the cddb window the option to match lines with the Levenshtein algorithm, * Fixed crash when no audio player is defined and problem of checking in the preferences window, * Added automatically removing of APE tag in a MP3 file, * Improved decoding of Arabic characters, * Added French Users Guide (Than to Emmanuel Brun), * Swedish translation updated (thanks to Anders Strömer), * Brazilian Portuguese translation updated (thanks to doutor.zero), * Czech translation updated (thanks to Zbynek Mrkvicka), * German translation updated (thanks to Götz Waschk), * Italian translation updated (thanks to Costantino Ceoldo), * Japanese translation updated (thanks to Takeshi Aihana), * French translation updated and typo fixed (thanks to Emmanuel Brun). Windows version : * Fixed autocompletion of year when a partial one was entered, * Fixed crash when no audio player selected in preferences window, * Improved detection of the locale.
28 lines
701 B
Makefile
28 lines
701 B
Makefile
# $NetBSD: options.mk,v 1.1 2007/02/27 09:58:49 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.easytag-gtk2
|
|
PKG_SUPPORTED_OPTIONS= flac mpeg4ip ogg
|
|
PKG_SUGGESTED_OPTIONS= flac mpeg4ip ogg
|
|
|
|
.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:Mmpeg4ip)
|
|
.include "../../multimedia/libmp4v2/buildlink3.mk"
|
|
# for mpeg4ip.h
|
|
CPPFLAGS+= -DHAVE_GTK
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mogg)
|
|
. include "../../audio/libvorbis/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-ogg
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ogg
|
|
.endif
|