138cfd54f8
0.99.99 December 21, 2004 * Core changes: * Startup time has been greatly reduced (especially when there are a lot of cached streams) * The cache format has changed (a binary cache has been reintroduced, improving performance and allowing to inline binary files into the cache) * Was sometimes locking up at startup: fixed * The preferences dialog has been reworked * A tab can now reload multiple categories concurrently * The stop button now only stops the currently selected tab * The stream columns can now be reordered * The stream columns menu item now displays a dialog * The plugin API has been enriched (handler configuration, handler preferences widget, character set handling in the transfer framework, utilities, ...) and documented * Bookmarks now include a description, homepage and URI list * The about dialog does not list the plugins and handlers anymore * Hyperlinks can now be focused, and activated using the keyboard * User interface images are now loaded from external files, for smaller memory usage * When a plugin was disabled, its configuration was lost: fixed * Now compiles cleanly even when -fstrict-aliasing is in use (based on a patch by Philipp Thomas) * The stock preselections have been updated * The streamtuner icon now uses the new colour scheme * Other fixes, cleanups and improvements pkgsrc changes: * Make it use the options framework. The following options are recognized: o streamtuner-local (to enable the local metadata plugin) o streamtuner-xiph (to enable the xiph plugin) o python (to enable the python plugin) The python option is off by default and the other ones are on.
35 lines
967 B
Makefile
35 lines
967 B
Makefile
# $NetBSD: options.mk,v 1.1 2005/10/19 09:45:09 xtraeme Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.streamtuner
|
|
PKG_SUPPORTED_OPTIONS= streamtuner-local streamtuner-xiph python
|
|
PKG_SUGGESTED_OPTIONS= streamtuner-local streamtuner-xiph
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mstreamtuner-local)
|
|
PLIST_SUBST+= LOCAL_PLUGIN=
|
|
CONFIGURE_ARGS+= --enable-local
|
|
. include "../../audio/taglib/buildlink3.mk"
|
|
.else
|
|
PLIST_SUBST+= LOCAL_PLUGIN='@comment '
|
|
CONFIGURE_ARGS+= --disable-local
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mstreamtuner-xiph)
|
|
PLIST_SUBST+= XIPH_PLUGIN=
|
|
CONFIGURE_ARGS+= --enable-xiph
|
|
. include "../../textproc/libxml2/buildlink3.mk"
|
|
.else
|
|
PLIST_SUBST+= XIPH_PLUGIN='@comment '
|
|
CONFIGURE_ARGS+= --disable-xiph
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpython)
|
|
PLIST_SUBST+= PYTHON_PLUGIN=
|
|
CONFIGURE_ARGS+= --enable-python
|
|
. include "../../x11/py-gtk2/buildlink3.mk"
|
|
.else
|
|
PLIST_SUBST+= PYTHON_PLUGIN='@comment '
|
|
CONFIGURE_ARGS+= --disable-python
|
|
.endif
|