diff options
author | wiz <wiz@pkgsrc.org> | 2006-10-22 21:24:35 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-10-22 21:24:35 +0000 |
commit | f26a282439b1b60747700c2a4ffea0e127574927 (patch) | |
tree | 72f41b90fd6541dfea5dc9dfff40d6f737a6eba8 | |
parent | d41a10c2829867abb855516fa41d0d1fe8de6e24 (diff) | |
download | pkgsrc-f26a282439b1b60747700c2a4ffea0e127574927.tar.gz |
Update to 0.5.2:
version 0.5.2:
- Case insensitive checking for the .mp3 extension. (#1515)
- Fallback to TDRC if TDRL is not found, when reading ID3v2.3 tags. (#2190)
- Ignore "MP3ext" in the padding area of ID3 tags. (#2123)
- Fixes for DragonFly BSD and new versions of NetBSD. Patch
by tk@giga.or.at (#2048)
- Load plugins from "$(libdir)/tunepimp/plugins" instead of hard-coded
path "$(prefix)/lib/tunepimp/plugins".
-rw-r--r-- | audio/libtunepimp/Makefile | 4 | ||||
-rw-r--r-- | audio/libtunepimp/distinfo | 15 | ||||
-rw-r--r-- | audio/libtunepimp/patches/patch-aa | 30 | ||||
-rw-r--r-- | audio/libtunepimp/patches/patch-ab | 6 | ||||
-rw-r--r-- | audio/libtunepimp/patches/patch-ac | 6 | ||||
-rw-r--r-- | audio/libtunepimp/patches/patch-ad | 10 |
6 files changed, 20 insertions, 51 deletions
diff --git a/audio/libtunepimp/Makefile b/audio/libtunepimp/Makefile index f0fdf6d3d2f..d47ede3e59f 100644 --- a/audio/libtunepimp/Makefile +++ b/audio/libtunepimp/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2006/08/13 22:04:18 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2006/10/22 21:24:35 wiz Exp $ -DISTNAME= libtunepimp-0.5.1 +DISTNAME= libtunepimp-0.5.2 CATEGORIES= audio MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/ \ http://ftp.musicbrainz.org/pub/musicbrainz/ diff --git a/audio/libtunepimp/distinfo b/audio/libtunepimp/distinfo index 60d6daaf2e7..68eb3f8c3df 100644 --- a/audio/libtunepimp/distinfo +++ b/audio/libtunepimp/distinfo @@ -1,9 +1,8 @@ -$NetBSD: distinfo,v 1.6 2006/08/13 22:04:18 wiz Exp $ +$NetBSD: distinfo,v 1.7 2006/10/22 21:24:35 wiz Exp $ -SHA1 (libtunepimp-0.5.1.tar.gz) = 4e2d1e726d7e9bb486de991d011ec903b7a7e0f7 -RMD160 (libtunepimp-0.5.1.tar.gz) = 776cd481d05f32a2803ecf5c734fa0710a856851 -Size (libtunepimp-0.5.1.tar.gz) = 1090492 bytes -SHA1 (patch-aa) = 1c0e484dbe02309ab09ce153dcad710590aedcd1 -SHA1 (patch-ab) = eddb91c7fb533d9e2ca776c8953a3a72192de923 -SHA1 (patch-ac) = 1cf4f71b3eccb1efd137418365a7bb17684d80ce -SHA1 (patch-ad) = 302d92ce4bd5ec6ddc686626fd60442a91b21ddb +SHA1 (libtunepimp-0.5.2.tar.gz) = 9e562f7fb8445728ebf5d4d2cf33ab03c921a176 +RMD160 (libtunepimp-0.5.2.tar.gz) = ec2fe7b28b0d6550d698429df7f70f858c3fb5d8 +Size (libtunepimp-0.5.2.tar.gz) = 1076084 bytes +SHA1 (patch-ab) = 5222b4c262222f002b7cf926981c6770bedd55ee +SHA1 (patch-ac) = 087a8ceae1aabbcbd65d86c2e6832f04b39c5920 +SHA1 (patch-ad) = 644f00aa5767f510f89fef8bf63fe814524de4f9 diff --git a/audio/libtunepimp/patches/patch-aa b/audio/libtunepimp/patches/patch-aa deleted file mode 100644 index b10a5e2d302..00000000000 --- a/audio/libtunepimp/patches/patch-aa +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2006/04/16 22:10:25 markd Exp $ - ---- lib/write.cpp.orig 2006-01-20 10:05:11.000000000 +1300 -+++ lib/write.cpp -@@ -35,9 +35,12 @@ - # include <sys/stat.h> - # include <sys/types.h> - # include <fcntl.h> --# if defined(__APPLE__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) -+# if defined(__APPLE__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) - # include <sys/param.h> - # include <sys/mount.h> -+# if (defined(__NetBSD__) && __NetBSD_Version__ >= 299000900) -+# define HAVE_STATVFS 1 -+# endif - # else - # include <sys/vfs.h> - # endif -@@ -54,6 +57,11 @@ - #include "fileio.h" - #include "utf8/utf8util.h" - -+#if defined(HAVE_STATVFS) -+# define statfs statvfs -+# define f_bsize f_frsize -+#endif -+ - #ifdef WIN32 - const char *dirSep = "\\"; - const char dirSepChar = '\\'; diff --git a/audio/libtunepimp/patches/patch-ab b/audio/libtunepimp/patches/patch-ab index 52b00a5ea26..62c85babe8c 100644 --- a/audio/libtunepimp/patches/patch-ab +++ b/audio/libtunepimp/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.4 2006/07/24 13:01:16 joerg Exp $ +$NetBSD: patch-ab,v 1.5 2006/10/22 21:24:35 wiz Exp $ ---- lib/threads/posix/Makefile.in.orig 2006-07-24 12:42:15.000000000 +0000 +--- lib/threads/posix/Makefile.in.orig 2006-09-30 13:57:41.000000000 +0000 +++ lib/threads/posix/Makefile.in -@@ -211,8 +211,7 @@ target_alias = @target_alias@ +@@ -212,8 +212,7 @@ target_alias = @target_alias@ INCLUDES = -I$(top_srcdir)/include/tunepimp-0.5 noinst_LTLIBRARIES = libtpthread.la libtpthread_la_SOURCES = mutex.cpp mutex.h thread.cpp thread.h semaphore.cpp semaphore.h diff --git a/audio/libtunepimp/patches/patch-ac b/audio/libtunepimp/patches/patch-ac index d8c652ed813..0ace1cd5c36 100644 --- a/audio/libtunepimp/patches/patch-ac +++ b/audio/libtunepimp/patches/patch-ac @@ -1,8 +1,8 @@ -$NetBSD: patch-ac,v 1.2 2006/07/12 13:28:08 wiz Exp $ +$NetBSD: patch-ac,v 1.3 2006/10/22 21:24:35 wiz Exp $ ---- examples/Makefile.in.orig 2006-07-01 14:30:11.000000000 +0000 +--- examples/Makefile.in.orig 2006-09-30 13:57:39.000000000 +0000 +++ examples/Makefile.in -@@ -205,7 +205,7 @@ target_alias = @target_alias@ +@@ -206,7 +206,7 @@ target_alias = @target_alias@ # INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib -I$(top_srcdir)/lib/threads/posix puid_SOURCES = puid.c diff --git a/audio/libtunepimp/patches/patch-ad b/audio/libtunepimp/patches/patch-ad index 1c808062ea0..ad5a693a580 100644 --- a/audio/libtunepimp/patches/patch-ad +++ b/audio/libtunepimp/patches/patch-ad @@ -1,13 +1,13 @@ -$NetBSD: patch-ad,v 1.3 2006/08/13 22:04:18 wiz Exp $ +$NetBSD: patch-ad,v 1.4 2006/10/22 21:24:35 wiz Exp $ ---- lib/Makefile.in.orig 2006-08-06 19:31:06.000000000 +0000 +--- lib/Makefile.in.orig 2006-09-30 13:57:40.000000000 +0000 +++ lib/Makefile.in -@@ -268,7 +268,7 @@ EXTRA_DIST = threads/win32/mutex.h threa +@@ -269,7 +269,7 @@ EXTRA_DIST = threads/win32/mutex.h threa # 4:0:0 - TunePimp implementation for alpha releases of version 0.5.0 # 5:0:0 - TunePimp implementation for version 0.5.0 # 5:1:0 - TunePimp implementation for version 0.5.1 --libtunepimp_la_LDFLAGS = -version-info 5:1:0 -+libtunepimp_la_LDFLAGS = -version-info 5:1:0 ${PTHREAD_LDFLAGS} +-libtunepimp_la_LDFLAGS = -version-info 5:2:0 ++libtunepimp_la_LDFLAGS = -version-info 5:2:0 ${PTHREAD_LDFLAGS} libtunepimp_la_LIBADD = threads/posix/libtpthread.la utf8/libutf8.la $(LIBLTDL) -lm noinst_LTLIBRARIES = libpluginsupport.la libpluginsupport_la_SOURCES = metadata.cpp fileio.cpp |