blob: 4fc4af555ea0626fd5e2c6ca483de971bdb4f8d4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/xvid-1.0.2.ebuild,v 1.15 2005/04/24 09:09:45 vapier Exp $
inherit eutils
MY_P=${PN}core-${PV/_rc/-rc}
DESCRIPTION="XviD, a high performance/quality MPEG-4 video de-/encoding solution."
HOMEPAGE="http://www.xvid.org/"
SRC_URI="http://files.xvid.org/downloads/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
IUSE="doc"
DEPEND="x86? ( >=dev-lang/nasm-0.98.36 )"
RDEPEND=""
S="${WORKDIR}/${MY_P}/build/generic"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-DESTDIR.patch
cd ${S}/../..
epatch "${FILESDIR}"/${PN}-1.0-ia64.patch
epatch ${FILESDIR}/${PN}-1.0.1-64bit-clean.patch
}
src_install() {
make install DESTDIR=${D} || die
cd ${S}/../../
dodoc AUTHORS ChangeLog README TODO doc/*
local mylib="$(basename $(ls ${D}/usr/$(get_libdir)/libxvidcore.so*))"
dosym ${mylib} /usr/$(get_libdir)/libxvidcore.so
dosym ${mylib} /usr/$(get_libdir)/${mylib/.0}
if use doc ; then
dodoc CodingStyle doc/README
insinto /usr/share/doc/${PF}/examples
doins examples/*
fi
}
|