diff options
author | ryoon <ryoon> | 2013-06-16 13:00:59 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2013-06-16 13:00:59 +0000 |
commit | 6f82c568504c70613d822c617ea47d352f2e7682 (patch) | |
tree | 9a4446dfa04f6788a84f1bd5b2f65f868e82a518 | |
parent | 156fc89a8fa0a4d50001e0d68bb46127e867927c (diff) | |
download | pkgsrc-6f82c568504c70613d822c617ea47d352f2e7682.tar.gz |
Update to 2.4.4
Changelog:
2.4.4
* Fix crash when saving a playlist with URLs.
* Fix hang in case of symlink loop (like symlink to parent directory)
when adding files recursivelly to the playlist.
* Fix bad memory acces when using FILL parameter in layouts that caused
"FATAL_ERROR: Layout1 is malformed".
* Fix compilation with newer ffmpeg. (Alexis Ballier)
* Increase maximum file title (made from tags) length to 512. Helps on
wide terminals.
* Fix displaying URLs on the playlist when it ends with a slash.
* Fix compilation of flac plugin by detecting libflac using pkg-config.
* Fix for multichannel playback. (Maarten van Es)
* Fix handling of invalid track number in tags. A segfault occured when
the track number was at least a value of 2^31.
* Support for the new (SVN) libmpcdec API.
* Remove old, irrelevant comment about iconv from the configuration
file.
* Fix configure to display proper information about compiled RCC.
* Run libtoolize in autogen.sh to prevent conflicts with installed
libtool/libltdl version.
-rw-r--r-- | audio/moc/Makefile | 7 | ||||
-rw-r--r-- | audio/moc/distinfo | 10 | ||||
-rw-r--r-- | audio/moc/patches/patch-ac | 16 |
3 files changed, 17 insertions, 16 deletions
diff --git a/audio/moc/Makefile b/audio/moc/Makefile index 02911c18775..4c6da79c010 100644 --- a/audio/moc/Makefile +++ b/audio/moc/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2013/04/08 11:17:09 rodent Exp $ +# $NetBSD: Makefile,v 1.22 2013/06/16 13:00:59 ryoon Exp $ -DISTNAME= moc-2.4.3 -PKGREVISION= 5 +DISTNAME= moc-2.4.4 CATEGORIES= audio -MASTER_SITES= ftp://ftp.daper.net/pub/soft/moc/stable/ +MASTER_SITES= http://ftp.daper.net/pub/soft/moc/stable/ EXTRACT_SUFX= .tar.bz2 MAINTAINER= peter.schuller@infidyne.com diff --git a/audio/moc/distinfo b/audio/moc/distinfo index 28c83603288..79642c0f1fd 100644 --- a/audio/moc/distinfo +++ b/audio/moc/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.8 2012/01/11 19:06:24 hans Exp $ +$NetBSD: distinfo,v 1.9 2013/06/16 13:00:59 ryoon Exp $ -SHA1 (moc-2.4.3.tar.bz2) = d9b54636f51f5366e94b684ddff3e869b1c634ac -RMD160 (moc-2.4.3.tar.bz2) = 34470535b16ab329a9055b05550028ceb0a860f7 -Size (moc-2.4.3.tar.bz2) = 459706 bytes +SHA1 (moc-2.4.4.tar.bz2) = e56ee13aa17c177f0afc42efe3804ebbbf46d4db +RMD160 (moc-2.4.4.tar.bz2) = d757650b3d8ed4f830212f41d12af7144ecba29b +Size (moc-2.4.4.tar.bz2) = 699724 bytes SHA1 (patch-ab) = 91c80cc251cd1c245613e3c41907629a7934bda3 -SHA1 (patch-ac) = d8c11caf51841021bc3d9999e1454922e89a370c +SHA1 (patch-ac) = 3a1ef7b9249c4e6818e434065ed3537d883e0e6a SHA1 (patch-ad) = 9a242fdc116fa173354d4ebd93d624c8c4580b6a SHA1 (patch-playlist__file.c) = 1026a40068a75e5076d3b6d661e5c47f7f0a418e diff --git a/audio/moc/patches/patch-ac b/audio/moc/patches/patch-ac index 973ae99d8fc..3651a8005f7 100644 --- a/audio/moc/patches/patch-ac +++ b/audio/moc/patches/patch-ac @@ -1,10 +1,12 @@ -$NetBSD: patch-ac,v 1.1 2008/04/07 16:15:25 bjs Exp $ +$NetBSD: patch-ac,v 1.2 2013/06/16 13:00:59 ryoon Exp $ ---- Makefile.am.orig 2006-02-12 06:55:10.000000000 -0500 -+++ Makefile.am -@@ -1,4 +1,5 @@ - SUBDIRS = themes decoder_plugins +--- Makefile.in.orig 2009-01-04 08:35:54.000000000 +0000 ++++ Makefile.in +@@ -278,6 +278,7 @@ sys_symbol_underscore = @sys_symbol_unde + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ + SUBDIRS = themes decoder_plugins libltdl +ACLOCAL_AMFLAGS = -I m4 AM_CPPFLAGS = -DSYSTEM_THEMES_DIR=\"$(pkgdatadir)/themes\" \ - -DPLUGIN_DIR=\"$(plugindir)/$(DECODER_PLUGIN_DIR)\" - + -DPLUGIN_DIR=\"$(plugindir)/$(DECODER_PLUGIN_DIR)\" \ + $(LTDLINCL) |