blob: 6121d49c7e98f5672c410ceef853aa7e167d3a89 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Ryan Phillips <rphillips@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/openquicktime/openquicktime-1.0.ebuild,v 1.3 2002/05/27 17:27:38 drobbins Exp $
MY_P=${P}-src
S=${WORKDIR}/${MY_P}
DESCRIPTION="OpenQuicktime library for linux"
SRC_URI="mirror://sourceforge/openquicktime/${MY_P}.tgz"
HOMEPAGE="http://openquicktime.sourceforge.net/"
DEPEND="media-sound/lame
media-sound/mpg123
media-libs/jpeg"
src_compile() {
./configure \
--enable-debug=no \
--prefix=/usr || die # Disable debug - enabled by default
make || die
}
src_install() {
cd ${S}-src
dolib.so libopenquicktime.so
dodoc README AUTHORS NEWS COPYING TODO
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
docdir=${D}/usr/share/doc/${PF}/html \
sysconfdir=${D}/etc \
install || die
}
|