2013-02-11 09:56:39 +01:00
|
|
|
# $NetBSD: options.mk,v 1.7 2013/02/11 08:56:40 wiz Exp $
|
Update to 2.0, based on audio/easytag-devel.
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.
2007-02-27 10:58:49 +01:00
|
|
|
|
2007-07-07 04:18:12 +02:00
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.easytag
|
2013-02-11 09:56:39 +01:00
|
|
|
PKG_SUPPORTED_OPTIONS= flac ogg speex wavpack
|
|
|
|
PKG_SUGGESTED_OPTIONS= flac ogg speex wavpack
|
Update to 2.0, based on audio/easytag-devel.
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.
2007-02-27 10:58:49 +01:00
|
|
|
|
|
|
|
.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
|
2012-03-08 10:49:25 +01:00
|
|
|
|
|
|
|
.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
|