summaryrefslogtreecommitdiff
blob: 905093a28431719999766915e7fc1d346b60cf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_alpha2-r1.ebuild,v 1.2 2004/06/24 23:15:04 agriffis 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/libsdl
	>=media-libs/libogg-1.1.0
	>=media-libs/libvorbis-1.0.1"

S=${WORKDIR}/${P/_}

src_compile() {
	econf --enable-shared || die

	cd ${S}/lib
	emake || die
}

src_install() {
	cd ${S}/lib
	make DESTDIR=${D} install || die

	cd ${S}/include
	make DESTDIR=${D} install || die

	cd ${S}
	dodoc README
}