blob: 118164af13ea2d29a008bea8643fe4e37cf6e1d5 (
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/divx4linux/divx4linux-20030428.ebuild,v 1.7 2004/07/14 19:18:45 agriffis Exp $
DXVER="505"
DESCRIPTION="Binary release of DivX Codec 5.0.5"
HOMEPAGE="http://www.divx.com/"
SRC_URI="http://download.divx.com/divx/${PN}-std-${PV}.tar.gz"
LICENSE="DIVX"
SLOT="0"
KEYWORDS="-* ~x86"
IUSE=""
RESTRICT="nostrip"
DEPEND="virtual/libc
!media-tv/nvrec"
src_install() {
for lib in *.so ; do
dolib.so ${lib}
dosym /usr/lib/${lib} /usr/lib/${lib}.0
done
# Fix bug #13776.
# Not needed in divx4linux-20030428.ebuild, as pattern doesn't exist
#dosed -e 's|c:\\trace_b.txt|/dev/null\x00\x00\x00\x00\x00|' \
# /usr/lib/libdivxencore.so
insinto /usr/include
doins *.h
# These are no longer in divx4linux-20030428.ebuild
# dodoc README.linux license.txt
dodir /usr/share/doc/${PF}/html
cp -a 'DivX MPEG-4 Codec and Its Interface.htm' ${D}/usr/share/doc/${PF}/html
}
|