From owner-svn-ports-head@freebsd.org Fri Dec 9 12:57:33 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04A29C6B3E6; Fri, 9 Dec 2016 12:57:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 C82C31F30; Fri, 9 Dec 2016 12:57:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB9CvVhN062653; Fri, 9 Dec 2016 12:57:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB9CvVm2062652; Fri, 9 Dec 2016 12:57:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612091257.uB9CvVm2062652@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Dec 2016 12:57:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428198 - head/multimedia/libtheora 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.23 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: Fri, 09 Dec 2016 12:57:33 -0000 Author: sunpoet Date: Fri Dec 9 12:57:31 2016 New Revision: 428198 URL: https://svnweb.freebsd.org/changeset/ports/428198 Log: - Add LICENSE - Add missing LIB_DEPENDS and solve a stage-qa error libogg is a required dependency. PORTREVISION was not bumped because libogg is already a package dependency via audio/libvorbis. from README: Requirements summary: For libtheora: libogg 1.1 or newer. ====> Running Q/A tests (stage-qa) Error: /usr/local/lib/libtheora.so.0.3.10 is linked to /usr/local/lib/libogg.so.0 from audio/libogg but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libogg.so:audio/libogg Approved by: portmgr (blanket) Modified: head/multimedia/libtheora/Makefile Modified: head/multimedia/libtheora/Makefile ============================================================================== --- head/multimedia/libtheora/Makefile Fri Dec 9 12:57:26 2016 (r428197) +++ head/multimedia/libtheora/Makefile Fri Dec 9 12:57:31 2016 (r428198) @@ -11,7 +11,11 @@ MASTER_SITES= http://downloads.xiph.org/ MAINTAINER= multimedia@FreeBSD.org COMMENT= Theora video codec for the Ogg multimedia streaming system -LIB_DEPENDS= libvorbis.so:audio/libvorbis +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libogg.so:audio/libogg \ + libvorbis.so:audio/libvorbis GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-sdltest \