2007-11-21 22:47:25 +01:00
|
|
|
# $NetBSD: options.mk,v 1.4 2007/11/21 21:47:25 drochner 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
|
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
|
|
|
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)
|
2007-11-21 22:47:25 +01:00
|
|
|
BUILDLINK_API_DEPENDS.libmp4v2+= libmp4v2>=1.6.1
|
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 "../../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
|