pkgsrc/audio/streamtuner/Makefile

35 lines
962 B
Makefile
Raw Normal View History

2017-04-30 03:21:19 +02:00
# $NetBSD: Makefile,v 1.82 2017/04/30 01:21:20 ryoon Exp $
Update to 0.99.99 (one year later... :-) 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.
2005-10-19 11:45:09 +02:00
DISTNAME= streamtuner-0.99.99
2017-04-30 03:21:19 +02:00
PKGREVISION= 43
CATEGORIES= audio www
Update to 0.12.1 and bl3ify. 0.12.1 30 March 2004 * Fixed bookmarks loading 0.12.0 30 March 2004 * The bookmarks are now global * A preselections handler has been implemented * The properties dialog can now edit a stream * Some streams can now be deleted * HTTP transfers are now compressed if possible (suggested by Marcus Rückert) * HTTP transfers now follow redirections * Socks 5 proxy support has been added * The documentation is now in DocBook format * A splash screen has been implemented * Some icons have been changed * Tabs can now be reordered * GTK+ interactive search has been fixed * Several UI improvements have been performed * The API has been enriched * The overall performance has been greatly improved * Major code cleanups have been performed * Several bugs and memory leaks have been fixed * streamtuner-theme-convert has been removed * Now requires GTK+ version 2.2.2 or superior * Now requires libcurl version 7.10.5 or superior 0.11.1 07 February 2004 * Fixed a deadlock on Linux and other platforms having non-recursive mutexes (reported by Marcus Rückert) * Fixed a crlf parsing bug in transfer code * A minor bug in tab switching has been fixed 0.11.0 31 January 2004 * Reimplemented bookmarks support (unseen since 0.7.3) * Multiple stream selection is now possible (a new event has been added, ST_HANDLER_EVENT_STREAM_TUNE_IN_MULTIPLE) * Categories are now displayed when they are selected * Removed the "Stop tune in" feature and the task dialogs * The stop button now is now global * Removed the category menu and moved its items to the view menu * The transfer API has been improved: - retrieval of HTTP headers - UNIX, DOS and Mac newline support - cleaner API * Introduced the st_action API, obsoleting st_programs * Implemented a minimal m3u and pls API * Added st_handler_set_description() and st_handler_set_home(): a clickable label pointing to the currently selected handler's home is now displayed in the toolbar * GTK_STOCK_REFRESH and GTK_STOCK_STOP now replaces ST_STOCK_RELOAD and ST_STOCK_STOP * Categories now have a descriptive icon * Tab icons can now be hidden * Added an "Always refresh categories" option * The SHOUTcast plugin can now parse the charset information of the Content-Type HTTP header * A SHOUTcast playlist writing bug has been fixed * Multi-threading is now mandatory
2004-03-31 00:21:31 +02:00
MASTER_SITES= http://savannah.nongnu.org/download/streamtuner/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.nongnu.org/streamtuner/
COMMENT= Stream directory browser
LICENSE= modified-bsd
BUILD_DEPENDS+= hicolor-icon-theme-[0-9]*:../../graphics/hicolor-icon-theme
2006-07-19 12:08:12 +02:00
USE_TOOLS+= gmake msgfmt pkg-config intltool
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE= extras/streamtuner.pc.in
Update to 0.99.99 (one year later... :-) 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.
2005-10-19 11:45:09 +02:00
CONFIGURE_ARGS+= --disable-gtk-doc
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
.include "options.mk"
2016-02-25 11:15:45 +01:00
BUILDLINK_TRANSFORM.SunOS+= rm:-lutil
2014-02-23 14:35:41 +01:00
.include "../../mk/omf-scrollkeeper.mk"
Update to 0.12.1 and bl3ify. 0.12.1 30 March 2004 * Fixed bookmarks loading 0.12.0 30 March 2004 * The bookmarks are now global * A preselections handler has been implemented * The properties dialog can now edit a stream * Some streams can now be deleted * HTTP transfers are now compressed if possible (suggested by Marcus Rückert) * HTTP transfers now follow redirections * Socks 5 proxy support has been added * The documentation is now in DocBook format * A splash screen has been implemented * Some icons have been changed * Tabs can now be reordered * GTK+ interactive search has been fixed * Several UI improvements have been performed * The API has been enriched * The overall performance has been greatly improved * Major code cleanups have been performed * Several bugs and memory leaks have been fixed * streamtuner-theme-convert has been removed * Now requires GTK+ version 2.2.2 or superior * Now requires libcurl version 7.10.5 or superior 0.11.1 07 February 2004 * Fixed a deadlock on Linux and other platforms having non-recursive mutexes (reported by Marcus Rückert) * Fixed a crlf parsing bug in transfer code * A minor bug in tab switching has been fixed 0.11.0 31 January 2004 * Reimplemented bookmarks support (unseen since 0.7.3) * Multiple stream selection is now possible (a new event has been added, ST_HANDLER_EVENT_STREAM_TUNE_IN_MULTIPLE) * Categories are now displayed when they are selected * Removed the "Stop tune in" feature and the task dialogs * The stop button now is now global * Removed the category menu and moved its items to the view menu * The transfer API has been improved: - retrieval of HTTP headers - UNIX, DOS and Mac newline support - cleaner API * Introduced the st_action API, obsoleting st_programs * Implemented a minimal m3u and pls API * Added st_handler_set_description() and st_handler_set_home(): a clickable label pointing to the currently selected handler's home is now displayed in the toolbar * GTK_STOCK_REFRESH and GTK_STOCK_STOP now replaces ST_STOCK_RELOAD and ST_STOCK_STOP * Categories now have a descriptive icon * Tab icons can now be hidden * Added an "Always refresh categories" option * The SHOUTcast plugin can now parse the charset information of the Content-Type HTTP header * A SHOUTcast playlist writing bug has been fixed * Multi-threading is now mandatory
2004-03-31 00:21:31 +02:00
.include "../../www/curl/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
Update to 0.12.1 and bl3ify. 0.12.1 30 March 2004 * Fixed bookmarks loading 0.12.0 30 March 2004 * The bookmarks are now global * A preselections handler has been implemented * The properties dialog can now edit a stream * Some streams can now be deleted * HTTP transfers are now compressed if possible (suggested by Marcus Rückert) * HTTP transfers now follow redirections * Socks 5 proxy support has been added * The documentation is now in DocBook format * A splash screen has been implemented * Some icons have been changed * Tabs can now be reordered * GTK+ interactive search has been fixed * Several UI improvements have been performed * The API has been enriched * The overall performance has been greatly improved * Major code cleanups have been performed * Several bugs and memory leaks have been fixed * streamtuner-theme-convert has been removed * Now requires GTK+ version 2.2.2 or superior * Now requires libcurl version 7.10.5 or superior 0.11.1 07 February 2004 * Fixed a deadlock on Linux and other platforms having non-recursive mutexes (reported by Marcus Rückert) * Fixed a crlf parsing bug in transfer code * A minor bug in tab switching has been fixed 0.11.0 31 January 2004 * Reimplemented bookmarks support (unseen since 0.7.3) * Multiple stream selection is now possible (a new event has been added, ST_HANDLER_EVENT_STREAM_TUNE_IN_MULTIPLE) * Categories are now displayed when they are selected * Removed the "Stop tune in" feature and the task dialogs * The stop button now is now global * Removed the category menu and moved its items to the view menu * The transfer API has been improved: - retrieval of HTTP headers - UNIX, DOS and Mac newline support - cleaner API * Introduced the st_action API, obsoleting st_programs * Implemented a minimal m3u and pls API * Added st_handler_set_description() and st_handler_set_home(): a clickable label pointing to the currently selected handler's home is now displayed in the toolbar * GTK_STOCK_REFRESH and GTK_STOCK_STOP now replaces ST_STOCK_RELOAD and ST_STOCK_STOP * Categories now have a descriptive icon * Tab icons can now be hidden * Added an "Always refresh categories" option * The SHOUTcast plugin can now parse the charset information of the Content-Type HTTP header * A SHOUTcast playlist writing bug has been fixed * Multi-threading is now mandatory
2004-03-31 00:21:31 +02:00
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"