blob: 744a4de4060c28c13010967c09e03d69c3b46eb4 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author Georgi Georgiev <chutz@chubaka.net>
# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/xvid-0.9.0.ebuild,v 1.6 2003/02/13 12:57:36 vapier Exp $
S="${WORKDIR}/${PN}core-${PV}"
DESCRIPTION="XviD, a high performance/quality MPEG-4 video de-/encoding solution."
SRC_URI="http://cvs.xvid.org/downloads/${PN}core-${PV}.tar.bz2"
HOMEPAGE="http://www.xvid.org/"
DEPEND="virtual/glibc
x86? ( >=dev-lang/nasm-0.98.30 )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~sparc"
src_unpack() {
unpack ${A}
cd ${S}/build/generic || die
if use ppc; then
sed -e "s:^CC:#CC:" \
-e "s:^LIBDIR:#LIBDIR:" \
Makefile.linuxppc > Makefile
elif use x86; then
sed -e "s:^LIBDIR:#LIBDIR:" \
-e "s:^CFLAGS +=:#CFLAGS +=:" \
-e "s:^#CFLAGS += -D:CFLAGS += -D:" \
Makefile.linuxx86 > Makefile
elif use sparc; then
sed -e "s:^CC:#CC:" \
-e "s:^CFLAGS = -fPIC -Wall -D:CFLAGS = -D:" \
Makefile.sparc > Makefile
fi
}
src_compile() {
[ -z "${CC}" ] && export CC="gcc"
cd ${S}/build/generic
emake || die
}
src_install() {
dolib.so ${S}/build/generic/libxvidcore.so
dolib.a ${S}/build/generic/libxvidcore.a
insinto /usr/include
doins src/xvid.h src/divx4.h src/encoder.h src/decoder.h
dodoc authors.txt changelog.txt LICENSE README.txt todo.txt
if [ "`use doc`" ]
then
dodoc CodingStyle doc/README doc/xvid-decoding.txt doc/xvid-encoder.txt
insinto /usr/share/doc/${PF}/examples
doins examples/*
# Empty for this release ...
#insinto /usr/share/doc/${PF}/examples/ex1
#doins examples/ex1/*
fi
}
|