summaryrefslogtreecommitdiff
path: root/audio/libcddb/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2020-01-26all: migrate some SourceForge homepage URLs back from https to httprillig1-2/+2
https://mail-index.netbsd.org/pkgsrc-changes/2020/01/18/msg205146.html In the above commit, the homepage URLs were migrated from http to https, assuming that SourceForge would use the same host names for both http and https connections. This assumption was wrong. Their documentation at https://sourceforge.net/p/forge/documentation/Custom%20VHOSTs/ states that the https URLs use the domain sourceforge.io instead. To make the homepages from the above commit reachable again, pkglint has been extended to check for reachable homepages. This check is only enabled when the --network command line option is given. Each of the homepages that referred to https://$project.sourceforge.net before was migrated to https://$project.sourceforge.io (27), and if that was not reachable, to the fallback URL http://$project.sourceforge.net (163).
2020-01-18all: migrate several HOMEPAGEs to httpsrillig1-2/+2
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
2018-08-19*: reset maintainer for drochnerwiz1-2/+2
2016-04-20Set LICENSE for a lot of audio packages.nros1-1/+2
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2014-01-09Use correct type to fix this on big-endian hosts.wiz1-1/+2
From Dave Tyson on pkgsrc-users 20140108, "libcddb fails to work properly on big-endian systems" Bump PKGREVISION.
2012-09-11"user-destdir" is default these daysasau1-2/+1
2009-07-26update to 1.3.2drochner1-2/+2
changes: minor fixes and build system improvements
2007-07-01The package supports installation to DESTDIR.heinz1-1/+2
2007-01-20Update to 1.3.0:wiz1-2/+2
CHANGES 1.2.2 -> 1.3.0 * [IMPORTANT] The text search functionality currently does not work anymore. This feature uses the search form on the freedb.org website. But since this form has disappeared, text search fails. In the mean time you might make use of the album command of the freedb2.org servers (see below). * [NEW] Support was added for the 'album' command of the freedb2.org servers. This feature can be used to do a text search for a certain album. It does not perform any HTML page parsing but uses an extension of the CDDB protocol. As input the function needs a disc with either the artist or title filled in. The results are similar as for the query command; i.e. a list of matching disc IDs together with their categories. The example program also supports this feature. * [NEW] Functions where added to set (libcddb_set_flags) or reset (libcddb_reset_flags) some flags. The flags used influence the behaviour of the library. By default all flags are disabled. Currently the following flags are available: - CDDB_F_EMPTY_STR: When this flag is set, the library will never return a NULL pointer for a string. Instead the empty string will be returned. - CDDB_F_NO_TRACK_ARTIST: When this flag is set, the library will not return the disc artist if the track artist is undefined. A NULL pointer (or the empty string if CDDB_F_EMPTY_STR is set) will be returned instead. CHANGES 1.2.1 -> 1.2.2 * [BUGFIX] Correctly specify the character set (UTF-8) when submitting data to a server.
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-2/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-08-08Changes 1.2.1:adam1-2/+3
* [NEW] It is now possible to fine tune the text search by specifying which fields and categories to consider. * [BUGFIX] Fixed cddb_sites function returning random values due to uninitialized value. * [UPDATE] The value of the LIBCDDB_VERSION_NUM defined variable is now 121. Changes 1.2.0: * [NEW] Support for searching the FreeDB database using a text string has been added. This feature has a similar API as the query command but uses a string instead of actual disc data. * [UPDATE] The value of the LIBCDDB_VERSION_NUM defined variable is now 120. Changes 1.1.0: * [IMPORTANT] The installed header files now no longer contain any actual structure definitions. All libcddb structures are now truly opaque for the user of the library. Some of the structures have also been updated. This means that the library is not binary compatible with the previous version. It should however be possible to just recompile any software using libcddb and link it against this new library. The API is backwards compatible so no changes to the software should be necessary. * [NEW] Support for the FreeDB sites command that can be used to get a list of mirror servers. A function was also added to initialize the libcddb server connection data using one of the servers returned by this command * [NEW] A new error code was added (CDDB_ERR_INVALID) that is returned when invalid input parameters are passed to one of the library functions. * [UPDATE] The value of the LIBCDDB_VERSION_NUM defined variable is now 110.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-05-18update to 1.0.2drochner1-2/+2
changes: * [NEW] Added cddb_set_http_proxy_credentials function that allows you to specify proxy user name and password in one go. It also does not store the user's credentials as cleartext in memory. -bugfix
2005-04-29Include converters/libiconv/buildlink3.mkkristerw1-1/+2
2005-04-26belt && suspenders: pass --without-cdio to "configure"drochner1-1/+2
2005-04-25Changes 1.0.1:adam1-2/+2
* [NEW] Added --without-cdio option to the configure script so you can manually disable CD access support for the example program. * Fixed iconv compiler warnings for Solaris and Cygwin. * Fixed regex compilation issue on MacOS X.
2005-04-18update to 1.0.0drochner1-2/+2
changes: * [NEW] Added support for proxy authentication. * [BUGFIX] Memory leaks fixed in regular expression handling. * Iconv compilation fixes for Solaris.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-11-10Changes 0.9.6:adam1-4/+2
* Libcddb now uses the FreeDB protocol version 6. The difference with version 5 is that now the responses from the FreeDB server are in UTF-8 format instead of ISO8859-1. So if the CD you query contains non-US-ASCII characters the results will be different in this new version of libcddb. * [NEW] It is now possible to set the character set that libcddb has to use when returning disc data (see also above). Use the cddb_set_charset function to set the user's character set. The example program, cddb_query, now also has a command-line option for specifying the character set. * [BUGFIX] FreeDB changed the specs of their CDDB file format. The results for certain discs failed to parse correctly because the libcddb parser was too strict. This should be fixed now. * [BUGFIX] When writing disc to cache, fill in category if genre is not specified. * [BUGFIX] When in CACHE_ONLY mode, do not perform network access when writing disc record.
2004-10-05include pkgconfig/buildlink3.mk so that libcdio is not founddrochner1-1/+2
(we deliberately don't depend on it to avoid a circular dependency) should fix PR pkg/27077 by diro@nixsys.bz
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-20Update to 0.9.5:wiz1-3/+4
CHANGES 0.9.4 -> 0.9.5 * It is now possible to query CD entries if you only know the track length. Previous versions of libcddb needed the track offsets from the CD. Track offsets will be calculated automatically when a length is specified and the offset is missing. This is less precise than using the actual frame offsets. So whenever possible use the offsets instead. * Fixed some possible buffer overflows. The internal buffer size has also been increased from 257 to 1024 bytes. It is now also possible to change this buffer size in the cddb_cmd.h. * Updated regression tests with less strict testing. Changes in the queried CDDB entries should no longer trigger a test failure. * Improved support for Win32 platforms (thx to Rocky Bernstein). * improved support for Mac OS X (thx to Rocky Bernstein and Derk-Jan Hartman). * It is now possible to specify the CD-ROM device to be used in the example program. pkgsrc change: Add TEST_TARGET.
2004-05-15The package needs at least gcc 2.95 since it uses variadic macros inheinz1-2/+3
WRKSRC/include/cddb/cddb_log_ni.h. This enables the package to build on NetBSD 1.5.x again (PKGREVISION++).
2004-05-11Enable pkgviews installation.minskim1-1/+3
2004-04-22set drochner@ as maintainerrecht1-2/+2
2004-04-08dependencied changed->PKGREVISION++drochner1-1/+2
pointed out by wiz
2004-04-08this doesn't need libcdiodrochner1-2/+1
2004-02-14PKGCONFIG_OVERRIDE is relative to WRKSRC.jmmv1-2/+2
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-01-17initial import of libcddb-0.9.4recht1-0/+20
Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (http://freedb.org). It tries to be as cross-platform as possible. The initial libary will have a C API.