From 03fcf967f4a18cb8294927a8f2ecb5c2269ff867 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 23 Sep 2006 13:26:24 +0000 Subject: Two functions had missing arguments. Patch from stoned@ Fixes problems in amarok (and probably other dependencies). Bump PKGREVISION. --- audio/id3lib/Makefile | 4 ++-- audio/id3lib/distinfo | 4 ++-- audio/id3lib/patches/patch-aa | 17 +++++++++++++++-- 3 files changed, 19 insertions(+), 6 deletions(-) (limited to 'audio/id3lib') diff --git a/audio/id3lib/Makefile b/audio/id3lib/Makefile index b98c4440e6d..fd800cb54f9 100644 --- a/audio/id3lib/Makefile +++ b/audio/id3lib/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.25 2006/09/13 12:06:28 ben Exp $ +# $NetBSD: Makefile,v 1.26 2006/09/23 13:26:24 wiz Exp $ # DISTNAME= id3lib-3.8.3 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=id3lib/} diff --git a/audio/id3lib/distinfo b/audio/id3lib/distinfo index 9d391461b56..6294e9fbee1 100644 --- a/audio/id3lib/distinfo +++ b/audio/id3lib/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.12 2006/09/13 12:06:28 ben Exp $ +$NetBSD: distinfo,v 1.13 2006/09/23 13:26:24 wiz Exp $ SHA1 (id3lib-3.8.3.tar.gz) = c92c880da41d1ec0b242745a901702ae87970838 RMD160 (id3lib-3.8.3.tar.gz) = bfa2499ec649ed40815ad0a370c78eb1517952c4 Size (id3lib-3.8.3.tar.gz) = 950726 bytes -SHA1 (patch-aa) = 75b19258eeaeb65aa2fa43cd44769aa1d6e575c3 +SHA1 (patch-aa) = 35e7df9577fd7fdd8657dca32207e34b580a0b57 SHA1 (patch-af) = 0266e9220791b7b14a35dc9b7564ab75cbc6562b SHA1 (patch-ag) = a047fe90d83c88e0f6d0a6a0595a440ef49276e3 SHA1 (patch-ah) = 42a04014cc839565063daa395884b757214eb911 diff --git a/audio/id3lib/patches/patch-aa b/audio/id3lib/patches/patch-aa index 4f2585b397f..fc6e9eb403f 100644 --- a/audio/id3lib/patches/patch-aa +++ b/audio/id3lib/patches/patch-aa @@ -1,7 +1,20 @@ -$NetBSD: patch-aa,v 1.3 2004/11/17 17:42:05 minskim Exp $ +$NetBSD: patch-aa,v 1.4 2006/09/23 13:26:24 wiz Exp $ ---- include/id3/id3lib_strings.h.orig 2003-03-01 18:23:00.000000000 -0600 +--- include/id3/id3lib_strings.h.orig 2003-03-02 00:23:00.000000000 +0000 +++ include/id3/id3lib_strings.h +@@ -100,10 +100,10 @@ namespace std + + static char_type + to_char_type(const int_type& __c) +- { return char_type(); } ++ { return char_type(__c); } + + static int_type +- to_int_type(const char_type& __c) { return int_type(); } ++ to_int_type(const char_type& __c) { return int_type(__c); } + + static bool + eq_int_type(const int_type& __c1, const int_type& __c2) @@ -117,7 +117,8 @@ namespace std { return eq_int_type(__c, eof()) ? int_type(0) : __c; } }; -- cgit v1.2.3