15d6fe2c21
2.1.8 - 2013-02-10 : ==================== * Port to and require the most recent GTK+ 2 release (2.24) * Allow experimental compilation against GTK+ 3 * Many memory leaks fixed * Remove the Debian and RPM packaging * Christoph J. Thompson's change to not install the ChangeLog * Adrian Bunk's FLAC, configure, sign comparison warning and GBase64 fixes * Waqa Qamar's new icons * Small fixes to allow compilation under mingw * Fix overlaid text in scanner legend * Alessio Ababilov's SIGCHLD handling fix * Move configuration files to XDG firectories * Andreas Winkelmann's configuration file, remove all text, disc number column and compiler warning fixes * Switch to TagLib for MP4 tag editing and drop libmp4v2 support * Fix album artist entry focus chain order * Remove Changes tab in about dialog * Tidy and internationalize the desktop file * Fix many spelling errors and typos * Several translation updates * Rewrite build system * Use intltool for internationalization * Drop dependency on libtool * Leonid Podolny's easytag-2.1.6-from-txt.patch for segfault when pressing "Apply" in "Load filenames from TXT" dialog, * WiseLord's fix-genre-tag.patch to fix predefined genres displayed under legacy systems. * Michał Smoczyk's updated Polish translation * Christoph J. Thompson's .desktop cleanup patch * Christoph J. Thompson's add a new option to trim spaces when renaming files patch * Nick Lanham's to make easytag compile against newest version of libmp4v2 * Wojciech Wierchola's file save performance improvement * Julian Taylor's fix out of bound array access * Honore Doktorr's revised libmp4v2 patch * Algimantas Margevičius's Lithuanian translation
36 lines
895 B
Makefile
36 lines
895 B
Makefile
# $NetBSD: options.mk,v 1.7 2013/02/11 08:56:40 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.easytag
|
|
PKG_SUPPORTED_OPTIONS= flac ogg speex wavpack
|
|
PKG_SUGGESTED_OPTIONS= flac 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: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
|