2007-11-21 22:40:25 +01:00
|
|
|
# $NetBSD: options.mk,v 1.2 2007/11/21 21:40:25 drochner Exp $
|
Initial import of easytag-current, the current development version of
easytag. Adds wavpack, speex, and id3v2.4 tag support.
Changes compared to audio/easytag:
2.1.1 - July 4th, 2007 :
========================
* Added support of ID3v2.4 tags by using library libid3tag (thanks to Alexey
Illarionov),
* Added Speex support (thanks to Pierre Dumuid) (without displaying bitrate
and duration),
* Added displaying of the number of pictures in the label of the tab.
* Fixed name of default server for the MusicBrainz FreeDB Gateway (thanks to
Steve Wyles),
* Fixed a problem when renaming file, by changing the case, that may delete
one file,
* Fixed a small mistake in the cddb query string (thanks to Steve Wyles),
* Fix for Ogg Vorbis files: read also the COMMENT tag field when it is used
instead of DESCRIPTION,
* Should be fixed a bug when refreshing the tree (not sure as it is
difficult to reproduce),
* In preferences window, the load on startup option and the default
directory setting were splitted,
* Added some improvments in the cddb window,
* Added time in log view,
* New Hebrew translation (thanks to Yuval Hager),
* Czech translation updated (thanks to Zbynek Mrkvicka),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
2007-07-07 09:47:51 +02:00
|
|
|
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.easytag-current
|
|
|
|
PKG_SUPPORTED_OPTIONS= flac mpeg4ip ogg speex wavpack
|
|
|
|
PKG_SUGGESTED_OPTIONS= flac mpeg4ip ogg 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:Mmpeg4ip)
|
2007-11-21 22:40:25 +01:00
|
|
|
BUILDLINK_API_DEPENDS.libmp4v2+= libmp4v2>=1.6.1
|
Initial import of easytag-current, the current development version of
easytag. Adds wavpack, speex, and id3v2.4 tag support.
Changes compared to audio/easytag:
2.1.1 - July 4th, 2007 :
========================
* Added support of ID3v2.4 tags by using library libid3tag (thanks to Alexey
Illarionov),
* Added Speex support (thanks to Pierre Dumuid) (without displaying bitrate
and duration),
* Added displaying of the number of pictures in the label of the tab.
* Fixed name of default server for the MusicBrainz FreeDB Gateway (thanks to
Steve Wyles),
* Fixed a problem when renaming file, by changing the case, that may delete
one file,
* Fixed a small mistake in the cddb query string (thanks to Steve Wyles),
* Fix for Ogg Vorbis files: read also the COMMENT tag field when it is used
instead of DESCRIPTION,
* Should be fixed a bug when refreshing the tree (not sure as it is
difficult to reproduce),
* In preferences window, the load on startup option and the default
directory setting were splitted,
* Added some improvments in the cddb window,
* Added time in log view,
* New Hebrew translation (thanks to Yuval Hager),
* Czech translation updated (thanks to Zbynek Mrkvicka),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
2007-07-07 09:47:51 +02: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
|
|
|
|
|
|
|
|
.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
|