summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-09-07 20:23:20 +0000
committerwiz <wiz@pkgsrc.org>2014-09-07 20:23:20 +0000
commitf9d27a57078055feff106bf3199e215bcdbffab7 (patch)
tree4f01a11539281d360c88bc0768acd62159786f06 /audio
parent98c2183f6b96129b62eb46469a82ff0a87a3badf (diff)
downloadpkgsrc-f9d27a57078055feff106bf3199e215bcdbffab7.tar.gz
Update to 0.18.13:
ver 0.18.13 (2014/08/31) * protocol - don't change song on "seekcur" in random mode * decoder - dsdiff, dsf: fix endless loop on malformed file - ffmpeg: support ffmpeg/libav version 11 - gme: fix song duration * output - alsa: fix endless loop at end of file in dsd_usb mode * fix state file saver * fix build failure on Darwin
Diffstat (limited to 'audio')
-rw-r--r--audio/musicpd/Makefile5
-rw-r--r--audio/musicpd/distinfo9
-rw-r--r--audio/musicpd/patches/patch-src_system_ByteOrder.hxx28
3 files changed, 6 insertions, 36 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile
index 42e7fb07514..a42341cb8f5 100644
--- a/audio/musicpd/Makefile
+++ b/audio/musicpd/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.87 2014/08/21 14:29:12 wiz Exp $
+# $NetBSD: Makefile,v 1.88 2014/09/07 20:23:20 wiz Exp $
-DISTNAME= mpd-0.18.12
+DISTNAME= mpd-0.18.13
PKGNAME= ${DISTNAME:S/mpd/musicpd/}
-PKGREVISION= 2
CATEGORIES= audio
MASTER_SITES= http://www.musicpd.org/download/mpd/0.18/
#MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=musicpd/}
diff --git a/audio/musicpd/distinfo b/audio/musicpd/distinfo
index 12c283c5aad..5bc4c74e857 100644
--- a/audio/musicpd/distinfo
+++ b/audio/musicpd/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.43 2014/08/21 12:14:16 wiz Exp $
+$NetBSD: distinfo,v 1.44 2014/09/07 20:23:20 wiz Exp $
-SHA1 (mpd-0.18.12.tar.xz) = 99ba27a541cb18fcd093d93551d34c1c3145ba49
-RMD160 (mpd-0.18.12.tar.xz) = dd19477632f094c4a5f82f9138bdf4cf7d286e60
-Size (mpd-0.18.12.tar.xz) = 585824 bytes
+SHA1 (mpd-0.18.13.tar.xz) = 0ddf8c55228fcc67522ecdd7710f93dc146c99a7
+RMD160 (mpd-0.18.13.tar.xz) = 80a1357d6a5dd9d34124f6b5ebc110b89b56fc2f
+Size (mpd-0.18.13.tar.xz) = 585836 bytes
SHA1 (patch-src_output_HttpdOutputPlugin.cxx) = 6e046d00a4e59c905d8fe014afe854aac1337e8d
-SHA1 (patch-src_system_ByteOrder.hxx) = 240fe7c8f3dd3bfc4eff5a56d0ebf5321a3a0cfb
diff --git a/audio/musicpd/patches/patch-src_system_ByteOrder.hxx b/audio/musicpd/patches/patch-src_system_ByteOrder.hxx
deleted file mode 100644
index 080a1719d8f..00000000000
--- a/audio/musicpd/patches/patch-src_system_ByteOrder.hxx
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-src_system_ByteOrder.hxx,v 1.2 2014/08/21 12:14:16 wiz Exp $
-
-<endian.h> is a non-standard header that only Linux provides.
-
-http://bugs.musicpd.org/view.php?id=4060
-
---- src/system/ByteOrder.hxx.orig 2014-05-15 23:46:49.000000000 +0000
-+++ src/system/ByteOrder.hxx
-@@ -40,8 +40,18 @@
- /* well-known big-endian */
- # define IS_LITTLE_ENDIAN false
- # define IS_BIG_ENDIAN true
-+#elif defined(__APPLE__)
-+/* generic compile-time check for MacOS */
-+# include <machine/endian.h>
-+# if BYTE_ORDER == LITTLE_ENDIAN
-+# define IS_LITTLE_ENDIAN true
-+# define IS_BIG_ENDIAN false
-+# else
-+# define IS_LITTLE_ENDIAN false
-+# define IS_BIG_ENDIAN true
-+# endif
- #else
--/* generic compile-time check */
-+/* generic compile-time check for Linux */
- # include <endian.h>
- # if __BYTE_ORDER == __LITTLE_ENDIAN
- # define IS_LITTLE_ENDIAN true