diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2016-12-09 12:57:31 +0000 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2016-12-09 12:57:31 +0000 |
commit | 08bca24cb05979cf2a6e123429f8d7b8f86b01a0 (patch) | |
tree | 0d2b48183d8ebaceceb3f3a89db4d9a22104c6e6 | |
parent | 4ad594f67d2e46715fff1b67c4aa392eeeb342a7 (diff) | |
download | FreeBSD-ports-08bca24cb05979cf2a6e123429f8d7b8f86b01a0.zip FreeBSD-ports-08bca24cb05979cf2a6e123429f8d7b8f86b01a0.tar.gz |
- 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)
-rw-r--r-- | multimedia/libtheora/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/multimedia/libtheora/Makefile b/multimedia/libtheora/Makefile index ea00463..a7bd4c4 100644 --- a/multimedia/libtheora/Makefile +++ b/multimedia/libtheora/Makefile @@ -11,7 +11,11 @@ MASTER_SITES= http://downloads.xiph.org/releases/theora/ \ 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 \ |