summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-03-21 21:57:04 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-03-21 21:57:04 +0000
commitc9fb2bd6a30d1c5505296b1cfbd0022660aa63f8 (patch)
tree96210ffc89e568dda54a10ecf46ef749dbd696fc /media-libs/libtheora
parentstable on alpha and ia64 (Manifest recommit) (diff)
downloadgentoo-2-c9fb2bd6a30d1c5505296b1cfbd0022660aa63f8.tar.gz
gentoo-2-c9fb2bd6a30d1c5505296b1cfbd0022660aa63f8.tar.bz2
gentoo-2-c9fb2bd6a30d1c5505296b1cfbd0022660aa63f8.zip
Version bumped. Closes 42807
Diffstat (limited to 'media-libs/libtheora')
-rw-r--r--media-libs/libtheora/ChangeLog7
-rw-r--r--media-libs/libtheora/Manifest2
-rw-r--r--media-libs/libtheora/files/digest-libtheora-1.0_alpha31
-rw-r--r--media-libs/libtheora/libtheora-1.0_alpha3.ebuild38
4 files changed, 47 insertions, 1 deletions
diff --git a/media-libs/libtheora/ChangeLog b/media-libs/libtheora/ChangeLog
index 6955ced756c3..ff4af2880f43 100644
--- a/media-libs/libtheora/ChangeLog
+++ b/media-libs/libtheora/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/libtheora
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.4 2004/03/21 21:16:10 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.5 2004/03/21 21:57:04 mholzer Exp $
+
+*libtheora-1.0_alpha3 (21 Mar 2004)
+
+ 21 Mar 2004; Martin Holzer <mholzer@gentoo.org> libtheora-1.0_alpha3.ebuild:
+ Version bumped. Closes 42807
*libtheora-1.0_alpha2-r1 (21 Mar 2004)
diff --git a/media-libs/libtheora/Manifest b/media-libs/libtheora/Manifest
index b97b0f156129..3f09201e3da4 100644
--- a/media-libs/libtheora/Manifest
+++ b/media-libs/libtheora/Manifest
@@ -2,5 +2,7 @@ MD5 9ef4af14dad87b03fde8e43f19e08d26 metadata.xml 225
MD5 ddbf44f744292b48d62852dec6752338 ChangeLog 808
MD5 1f3552dd8a796e3a28cbcc0e07c5111b libtheora-1.0_alpha2-r1.ebuild 841
MD5 0f846336020a9e3ee2fedafa6390fe92 libtheora-1.0_alpha2.ebuild 751
+MD5 0e07b8e143cfa0cf13521c776b8ae481 libtheora-1.0_alpha3.ebuild 878
MD5 43363432588af784deac91552ac3a636 files/digest-libtheora-1.0_alpha2 71
MD5 43363432588af784deac91552ac3a636 files/digest-libtheora-1.0_alpha2-r1 71
+MD5 4c187e317789f051f3d648f88b843ffe files/digest-libtheora-1.0_alpha3 72
diff --git a/media-libs/libtheora/files/digest-libtheora-1.0_alpha3 b/media-libs/libtheora/files/digest-libtheora-1.0_alpha3
new file mode 100644
index 000000000000..e9568fec87cc
--- /dev/null
+++ b/media-libs/libtheora/files/digest-libtheora-1.0_alpha3
@@ -0,0 +1 @@
+MD5 eab566a0c7fdc21da1ce503edfa43bb4 libtheora-1.0alpha3.tar.gz 1015002
diff --git a/media-libs/libtheora/libtheora-1.0_alpha3.ebuild b/media-libs/libtheora/libtheora-1.0_alpha3.ebuild
new file mode 100644
index 000000000000..5f321aa7c751
--- /dev/null
+++ b/media-libs/libtheora/libtheora-1.0_alpha3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_alpha3.ebuild,v 1.1 2004/03/21 21:57:04 mholzer Exp $
+
+DESCRIPTION="The Theora Video Compression Codec"
+HOMEPAGE="http://www.theora.org/"
+SRC_URI="http://www.theora.org/files/${P/_}.tar.gz
+ http://download.videolan.org/pub/videolan/vlc/0.7.0/contrib/${P/_}.tar.gz"
+
+LICENSE="xiph"
+SLOT="0"
+KEYWORDS="~x86 ~amd64 ~ppc"
+IUSE=""
+
+DEPEND=">=media-libs/libogg-1.1.0
+ >=media-libs/libvorbis-1.0.1"
+
+S=${WORKDIR}/${P/_}
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i -e 's:SUBDIRS = .*:SUBDIRS = lib include doc:' Makefile.in
+}
+
+src_compile() {
+ econf --enable-shared || die
+ emake || die
+}
+
+src_install() {
+ make \
+ DESTDIR=${D} \
+ docdir=/usr/share/doc/${PF} \
+ install || die
+
+ dodoc README
+}