Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Dec 2016 12:57:31 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r428198 - head/multimedia/libtheora
Message-ID:  <201612091257.uB9CvVm2062652@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612091257.uB9CvVm2062652>