diff options
author | drochner <drochner@pkgsrc.org> | 2011-01-17 19:44:58 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2011-01-17 19:44:58 +0000 |
commit | 6361bc5ebbc97b326187fc16323b2056845254a8 (patch) | |
tree | c7182a8aa6d847e999052475ca886e17e2b4abc2 /multimedia/libtheora | |
parent | 369067ed87409b562813897e8550f15c0e18ca64 (diff) | |
download | pkgsrc-6361bc5ebbc97b326187fc16323b2056845254a8.tar.gz |
libtheora{enc,dec}.so use symbols from libtheora.so, so make sure the
former are linked against the latter
bump PKGREV
Diffstat (limited to 'multimedia/libtheora')
-rw-r--r-- | multimedia/libtheora/Makefile | 4 | ||||
-rw-r--r-- | multimedia/libtheora/distinfo | 3 | ||||
-rw-r--r-- | multimedia/libtheora/patches/patch-ab | 19 |
3 files changed, 23 insertions, 3 deletions
diff --git a/multimedia/libtheora/Makefile b/multimedia/libtheora/Makefile index 210cd3c0e2a..d8164b99332 100644 --- a/multimedia/libtheora/Makefile +++ b/multimedia/libtheora/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.29 2009/11/09 12:56:00 joerg Exp $ +# $NetBSD: Makefile,v 1.30 2011/01/17 19:44:58 drochner Exp $ # .include "Makefile.common" -PKGREVISION= 1 +PKGREVISION= 2 PKGCONFIG_OVERRIDE= theora.pc.in theoradec.pc.in theoraenc.pc.in USE_LIBTOOL= YES TEST_TARGET= check diff --git a/multimedia/libtheora/distinfo b/multimedia/libtheora/distinfo index 763e44f116a..37f96578413 100644 --- a/multimedia/libtheora/distinfo +++ b/multimedia/libtheora/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.15 2009/11/09 12:56:00 joerg Exp $ +$NetBSD: distinfo,v 1.16 2011/01/17 19:44:58 drochner Exp $ SHA1 (libtheora-1.1.1.tar.bz2) = 8dcaa8e61cd86eb1244467c0b64b9ddac04ae262 RMD160 (libtheora-1.1.1.tar.bz2) = 1d07234bd7e2296c61d6e30fe9816415aa7fd8e5 Size (libtheora-1.1.1.tar.bz2) = 1903175 bytes SHA1 (patch-aa) = 3e23582e299e476636a54aa19fb390d6e1052a99 +SHA1 (patch-ab) = 07e93bf47039ec589ce3fbdb26d5d8dbcc0c4f65 diff --git a/multimedia/libtheora/patches/patch-ab b/multimedia/libtheora/patches/patch-ab new file mode 100644 index 00000000000..6c127338b9f --- /dev/null +++ b/multimedia/libtheora/patches/patch-ab @@ -0,0 +1,19 @@ +$NetBSD: patch-ab,v 1.4 2011/01/17 19:44:59 drochner Exp $ + +--- lib/Makefile.in.orig 2009-10-01 18:04:07.000000000 +0000 ++++ lib/Makefile.in +@@ -354,10 +354,12 @@ am__objects_3 = apiwrapper.lo bitpack.lo + @THEORA_DISABLE_ENCODE_FALSE@ $(am__objects_6) + am_libtheora_la_OBJECTS = $(am__objects_3) $(am__objects_7) + libtheora_la_OBJECTS = $(am_libtheora_la_OBJECTS) +-libtheoradec_la_LIBADD = ++libtheoradec_la_DEPENDENCIES = libtheora.la ++libtheoradec_la_LIBADD = libtheora.la + am_libtheoradec_la_OBJECTS = $(am__objects_3) + libtheoradec_la_OBJECTS = $(am_libtheoradec_la_OBJECTS) +-libtheoraenc_la_LIBADD = ++libtheoraenc_la_DEPENDENCIES = libtheora.la ++libtheoraenc_la_LIBADD = libtheora.la + @THEORA_DISABLE_ENCODE_FALSE@am__objects_8 = mmxfrag.lo mmxidct.lo \ + @THEORA_DISABLE_ENCODE_FALSE@ mmxstate.lo x86state.lo + @THEORA_DISABLE_ENCODE_FALSE@am__objects_9 = |