From owner-svn-ports-head@FreeBSD.ORG Sat Jul 19 16:38:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A82B42F; Sat, 19 Jul 2014 16:38:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B2472A0C; Sat, 19 Jul 2014 16:38:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6JGcPFT046994; Sat, 19 Jul 2014 16:38:25 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6JGcP8h046988; Sat, 19 Jul 2014 16:38:25 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201407191638.s6JGcP8h046988@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 19 Jul 2014 16:38:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362268 - in head/multimedia: . libzen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jul 2014 16:38:26 -0000 Author: sunpoet Date: Sat Jul 19 16:38:24 2014 New Revision: 362268 URL: http://svnweb.freebsd.org/changeset/ports/362268 QAT: https://qat.redports.org/buildarchive/r362268/ Log: - Add libzen 0.7.69 MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files. Read http://mediaarea.net/en/MediaInfo/Support/Formats for supported formats. WWW: http://mediainfo.sourceforge.net/ Added: head/multimedia/libzen/ head/multimedia/libzen/Makefile (contents, props changed) head/multimedia/libzen/distinfo (contents, props changed) head/multimedia/libzen/pkg-descr (contents, props changed) head/multimedia/libzen/pkg-plist (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Sat Jul 19 16:25:27 2014 (r362267) +++ head/multimedia/Makefile Sat Jul 19 16:38:24 2014 (r362268) @@ -192,6 +192,7 @@ SUBDIR += libvpx SUBDIR += libxine SUBDIR += libxspf + SUBDIR += libzen SUBDIR += linux-f10-libtheora SUBDIR += linux-f10-libv4l SUBDIR += linux-realplayer Added: head/multimedia/libzen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libzen/Makefile Sat Jul 19 16:38:24 2014 (r362268) @@ -0,0 +1,33 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= libzen +PORTVERSION= 0.7.69 +CATEGORIES= multimedia +MASTER_SITES= http://mediaarea.net/download/binary/mediainfo/${PORTVERSION}/ +DISTNAME= MediaInfo_CLI_${PORTVERSION}_GNU_FromSource + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= ZenLib used by MediaInfo and its library + +LICENSE= ZLIB + +CONFLICTS_INSTALL= mediainfo-0.[0-6]* mediainfo-0.7.[0-5]* + +CONFIGURE_ARGS= --enable-shared +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +USES= libtool pathfix tar:bzip2 + +WRKSRC= ${WRKDIR}/MediaInfo_CLI_GNU_FromSource/ZenLib/Project/GNU/Library + +post-patch: + @${REINPLACE_CMD} -e '/^ZenLib_LIBS/ s|$$(pwd)[^ ]*|${LOCALBASE}/lib|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-lpthread -lstdc++|-pthread|g' ${WRKSRC}/configure ${WRKSRC}/libzen.pc.in + @${REINPLACE_CMD} -e '1 s|bin/bash|bin/sh|' ${WRKSRC}/libzen-config.in + +post-install: + ${INSTALL_DATA} ${WRKSRC}/../../../Source/ZenLib/BitStream_Fast.h ${STAGEDIR}${PREFIX}/include/ZenLib/BitStream_Fast.h + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libzen.so.0.0.0 + +.include Added: head/multimedia/libzen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libzen/distinfo Sat Jul 19 16:38:24 2014 (r362268) @@ -0,0 +1,2 @@ +SHA256 (MediaInfo_CLI_0.7.69_GNU_FromSource.tar.bz2) = 145ca8e82334123558e98f973922781c947fcba3aacb1aa6137daaa3cde227d1 +SIZE (MediaInfo_CLI_0.7.69_GNU_FromSource.tar.bz2) = 1744328 Added: head/multimedia/libzen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libzen/pkg-descr Sat Jul 19 16:38:24 2014 (r362268) @@ -0,0 +1,6 @@ +MediaInfo is a convenient unified display of the most relevant technical and +tag data for video and audio files. + +Read http://mediaarea.net/en/MediaInfo/Support/Formats for supported formats. + +WWW: http://mediainfo.sourceforge.net/ Added: head/multimedia/libzen/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libzen/pkg-plist Sat Jul 19 16:38:24 2014 (r362268) @@ -0,0 +1,46 @@ +bin/libzen-config +include/ZenLib/BitStream.h +include/ZenLib/BitStream_Fast.h +include/ZenLib/BitStream_LE.h +include/ZenLib/Conf.h +include/ZenLib/Conf_Internal.h +include/ZenLib/CriticalSection.h +include/ZenLib/Dir.h +include/ZenLib/File.h +include/ZenLib/FileName.h +include/ZenLib/Format/Html/Html_Handler.h +include/ZenLib/Format/Html/Html_Request.h +include/ZenLib/Format/Http/Http_Cookies.h +include/ZenLib/Format/Http/Http_Handler.h +include/ZenLib/Format/Http/Http_Request.h +include/ZenLib/Format/Http/Http_Utils.h +include/ZenLib/HTTP_Client.h +include/ZenLib/HTTP_Client/HTTPClient.h +include/ZenLib/HTTP_Client/HTTPClientAuth.h +include/ZenLib/HTTP_Client/HTTPClientCommon.h +include/ZenLib/HTTP_Client/HTTPClientString.h +include/ZenLib/HTTP_Client/HTTPClientWrapper.h +include/ZenLib/InfoMap.h +include/ZenLib/MemoryDebug.h +include/ZenLib/OS_Utils.h +include/ZenLib/PreComp.h +include/ZenLib/Thread.h +include/ZenLib/Trace.h +include/ZenLib/Translation.h +include/ZenLib/Utils.h +include/ZenLib/Ztring.h +include/ZenLib/ZtringList.h +include/ZenLib/ZtringListList.h +include/ZenLib/ZtringListListF.h +include/ZenLib/int128s.h +include/ZenLib/int128u.h +lib/libzen.a +lib/libzen.so +lib/libzen.so.0 +lib/libzen.so.0.0.0 +libdata/pkgconfig/libzen.pc +@dirrm include/ZenLib/HTTP_Client +@dirrm include/ZenLib/Format/Http +@dirrm include/ZenLib/Format/Html +@dirrm include/ZenLib/Format +@dirrm include/ZenLib