pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/libmatroska Update to version 0.7.3.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/682854623f16
branches:  trunk
changeset: 479847:682854623f16
user:      salo <salo%pkgsrc.org@localhost>
date:      Mon Aug 23 23:19:52 2004 +0000

description:
Update to version 0.7.3.

Changes:
- remove patch-aa, it has been merged upstream

0.7.3:
======
- add KaxEditionFlagDefault, KaxEditionManaged, TargetType, TagLanguage,
  TagDefault, EditionFlagHidden
- rename the new KaxTagLanguage to KaxTagLangue
- misc small bugfixes

0.7.2:
======
- chapters/tags: add an edition UID and clean the code according to the specs
- mingw32: Proper description for the SHARED option. Make building the lib
           statically the default just like it is for libembl.

diffstat:

 multimedia/libmatroska/Makefile         |   4 ++--
 multimedia/libmatroska/buildlink3.mk    |   4 ++--
 multimedia/libmatroska/distinfo         |   7 +++----
 multimedia/libmatroska/patches/patch-aa |  31 -------------------------------
 4 files changed, 7 insertions(+), 39 deletions(-)

diffs (79 lines):

diff -r 0c09ccd2377e -r 682854623f16 multimedia/libmatroska/Makefile
--- a/multimedia/libmatroska/Makefile   Mon Aug 23 21:17:06 2004 +0000
+++ b/multimedia/libmatroska/Makefile   Mon Aug 23 23:19:52 2004 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2004/07/27 04:14:56 salo Exp $
+# $NetBSD: Makefile,v 1.8 2004/08/23 23:19:52 salo Exp $
 #
 
-DISTNAME=      libmatroska-0.7.1
+DISTNAME=      libmatroska-0.7.3
 CATEGORIES=    multimedia devel
 MASTER_SITES=  http://dl.matroska.org/downloads/libmatroska/
 EXTRACT_SUFX=  .tar.bz2
diff -r 0c09ccd2377e -r 682854623f16 multimedia/libmatroska/buildlink3.mk
--- a/multimedia/libmatroska/buildlink3.mk      Mon Aug 23 21:17:06 2004 +0000
+++ b/multimedia/libmatroska/buildlink3.mk      Mon Aug 23 23:19:52 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.4 2004/07/27 04:14:56 salo Exp $
+# $NetBSD: buildlink3.mk,v 1.5 2004/08/23 23:19:52 salo Exp $
 #
 # This Makefile fragment is included by packages that use libmatroska.
 #
@@ -16,7 +16,7 @@
 BUILDLINK_PACKAGES+=   libmatroska
 
 .if !empty(LIBMATROSKA_BUILDLINK3_MK:M+)
-BUILDLINK_DEPENDS.libmatroska+=        libmatroska>=0.7.1
+BUILDLINK_DEPENDS.libmatroska+=        libmatroska>=0.7.3
 BUILDLINK_PKGSRCDIR.libmatroska?=      ../../multimedia/libmatroska
 .endif # LIBMATROSKA_BUILDLINK3_MK
 
diff -r 0c09ccd2377e -r 682854623f16 multimedia/libmatroska/distinfo
--- a/multimedia/libmatroska/distinfo   Mon Aug 23 21:17:06 2004 +0000
+++ b/multimedia/libmatroska/distinfo   Mon Aug 23 23:19:52 2004 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2004/07/27 04:14:56 salo Exp $
+$NetBSD: distinfo,v 1.7 2004/08/23 23:19:52 salo Exp $
 
-SHA1 (libmatroska-0.7.1.tar.bz2) = 8da497c0cd2dc6044489e8fdbae129254f7988f2
-Size (libmatroska-0.7.1.tar.bz2) = 78830 bytes
-SHA1 (patch-aa) = 673a3043692df4fc0f7babc4be13f92fdf1fda62
+SHA1 (libmatroska-0.7.3.tar.bz2) = 38b8c5c0b265fdddf1b295fd3508a0fdffed164e
+Size (libmatroska-0.7.3.tar.bz2) = 81678 bytes
 SHA1 (patch-ac) = 59225b6e89c6563e7245a94b46c798c2c44bd259
diff -r 0c09ccd2377e -r 682854623f16 multimedia/libmatroska/patches/patch-aa
--- a/multimedia/libmatroska/patches/patch-aa   Mon Aug 23 21:17:06 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2004/07/27 04:14:56 salo Exp $
-
---- test/mux/test8.cpp.orig    2004-07-09 23:05:36.000000000 +0200
-+++ test/mux/test8.cpp 2004-07-27 05:57:12.000000000 +0200
-@@ -273,7 +273,7 @@
-                                               } else if (EbmlId(*ElementLevel2) == KaxMuxingApp::ClassInfos.GlobalId) {
-                                                       KaxMuxingApp *pApp = static_cast<KaxMuxingApp*>(ElementLevel2);
-                                                       pApp->ReadData(aStream.I_O());
--#if !defined(__CYGWIN__) && !defined(__APPLE__) && !defined(__BEOS__)
-+#if !defined(__CYGWIN__) && !defined(__APPLE__) && !defined(__BEOS__) && !defined(__NetBSD__)
-                                                       wprintf(L"Muxing App : %ls\n", UTFstring(*pApp).c_str());
- #else
-                                                       printf("Muxing App : %s\n", UTFstring(*pApp).c_str());
-@@ -281,7 +281,7 @@
-                                               } else if (EbmlId(*ElementLevel2) == KaxWritingApp::ClassInfos.GlobalId) {
-                                                       KaxWritingApp *pApp = static_cast<KaxWritingApp*>(ElementLevel2);
-                                                       pApp->ReadData(aStream.I_O());
--#if !defined(__CYGWIN__) && !defined(__APPLE__) && !defined(__BEOS__)
-+#if !defined(__CYGWIN__) && !defined(__APPLE__) && !defined(__BEOS__) && !defined(__NetBSD__)
-                                                       wprintf(L"Writing App : %ls (éàôï)\n", UTFstring(*pApp).c_str());
- #else
-                                                       printf("Writing App : %s (éàôï)\n", UTFstring(*pApp).c_str());
-@@ -600,7 +600,7 @@
-                                                                                       unsigned int Index4;
-                                                                                       for (Index4 = 0; Index4<aDisplay.ListSize() ;Index4++) {
-                                                                                               if (aDisplay[Index4]->Generic().GlobalId == KaxChapterString::ClassInfos.GlobalId) {
--#if !defined(__CYGWIN__) && !defined(__APPLE__) && !defined(__BEOS__)
-+#if !defined(__CYGWIN__) && !defined(__APPLE__) && !defined(__BEOS__) && !defined(__NetBSD__)
-                                                                                                       wprintf(L"       Display \"%s\"\n", UTFstring(*static_cast<EbmlUnicodeString 
*>(aDisplay[Index4])).c_str() );
- #else
-                                                                                                       printf("       Display \"%s\"\n", UTFstring(*static_cast<EbmlUnicodeString 
*>(aDisplay[Index4])).c_str() );



Home | Main Index | Thread Index | Old Index