summaryrefslogtreecommitdiff
path: root/audio/libcddb
diff options
context:
space:
mode:
authorwiz <wiz>2004-09-20 23:43:20 +0000
committerwiz <wiz>2004-09-20 23:43:20 +0000
commita90edcc3f3f1ea2529af9af645b128d68ae7fe89 (patch)
tree774f57a141fa118e7b8425024437f5303f63f67e /audio/libcddb
parent57da8b82ec6ce58522ca9f31218efcff86693966 (diff)
downloadpkgsrc-a90edcc3f3f1ea2529af9af645b128d68ae7fe89.tar.gz
Update to 0.9.5:
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.
Diffstat (limited to 'audio/libcddb')
-rw-r--r--audio/libcddb/Makefile7
-rw-r--r--audio/libcddb/PLIST3
-rw-r--r--audio/libcddb/distinfo7
-rw-r--r--audio/libcddb/patches/patch-aa21
4 files changed, 9 insertions, 29 deletions
diff --git a/audio/libcddb/Makefile b/audio/libcddb/Makefile
index d1413db6744..eaeeae4bfb2 100644
--- a/audio/libcddb/Makefile
+++ b/audio/libcddb/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2004/05/15 14:14:20 heinz Exp $
+# $NetBSD: Makefile,v 1.9 2004/09/20 23:43:20 wiz Exp $
#
-DISTNAME= libcddb-0.9.4
-PKGREVISION= 2
+DISTNAME= libcddb-0.9.5
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libcddb/}
@@ -19,4 +18,6 @@ PKGCONFIG_OVERRIDE+= libcddb.pc.in
GNU_CONFIGURE= yes
GCC_REQD+= 2.95
+TEST_TARGET= check
+
.include "../../mk/bsd.pkg.mk"
diff --git a/audio/libcddb/PLIST b/audio/libcddb/PLIST
index 46548f90ea0..3d11ac26232 100644
--- a/audio/libcddb/PLIST
+++ b/audio/libcddb/PLIST
@@ -1,7 +1,8 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2004/01/17 15:25:39 recht Exp $
+@comment $NetBSD: PLIST,v 1.2 2004/09/20 23:43:20 wiz Exp $
bin/cddb_query
include/cddb/cddb.h
include/cddb/cddb_cmd.h
+include/cddb/cddb_config.h
include/cddb/cddb_conn.h
include/cddb/cddb_disc.h
include/cddb/cddb_error.h
diff --git a/audio/libcddb/distinfo b/audio/libcddb/distinfo
index 1fc7970ad24..5239e9d06f8 100644
--- a/audio/libcddb/distinfo
+++ b/audio/libcddb/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.2 2004/06/21 14:56:36 drochner Exp $
+$NetBSD: distinfo,v 1.3 2004/09/20 23:43:20 wiz Exp $
-SHA1 (libcddb-0.9.4.tar.gz) = ea64a127bedbf953c7a7a380d15f867a6244f8eb
-Size (libcddb-0.9.4.tar.gz) = 272751 bytes
-SHA1 (patch-aa) = 0793d6cf41a4ea4f0ef0ce6de88401ec880b9077
+SHA1 (libcddb-0.9.5.tar.gz) = 4f217f79c3a87ae4d42be47c02e62ed7390bf25b
+Size (libcddb-0.9.5.tar.gz) = 380064 bytes
diff --git a/audio/libcddb/patches/patch-aa b/audio/libcddb/patches/patch-aa
deleted file mode 100644
index 11cc4f702a0..00000000000
--- a/audio/libcddb/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2004/06/21 14:56:36 drochner Exp $
-
---- lib/cddb_net.c.orig 2003-05-25 16:25:46.000000000 +0200
-+++ lib/cddb_net.c
-@@ -24,12 +24,15 @@
- #include <netdb.h>
- #include <setjmp.h>
- #include <signal.h>
--#include <time.h>
-+#include <sys/time.h>
- #include <unistd.h>
- #include <sys/select.h>
- #include <sys/socket.h>
- #include <sys/types.h>
- #include "cddb/cddb_ni.h"
-+#ifdef TIME_WITH_SYS_TIME
-+#include <time.h>
-+#endif
-
-
- /* Utility functions */