blob: 528f0d2b89e66976bf544413d2ea61b103d19d23 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/fmod/fmod-3.73.ebuild,v 1.6 2005/09/13 15:16:40 blubb Exp $
IUSE=""
MY_P="fmodapi${PV/.}linux"
S=${WORKDIR}/${MY_P}
DESCRIPTION="music and sound effects library, and a sound processing system"
SRC_URI="http://www.fmod.org/files/${MY_P}.tar.gz"
HOMEPAGE="http://www.fmod.org/"
SLOT="0"
LICENSE="fmod"
KEYWORDS="-* x86"
DEPEND="virtual/libc"
RDEPEND="${DEPEND}
amd64? ( app-emulation/emul-linux-x86-baselibs )"
src_install() {
dolib api/libfmod-${PV}.so
dosym /usr/lib/libfmod-${PV}.so /usr/lib/libfmod.so
insinto /usr/include
doins api/inc/*
insinto /usr/share/${PN}/media
doins media/*
cp -r samples ${D}/usr/share/${PN}/
dohtml -r documentation/*
dodoc README.TXT documentation/Revision.txt
}
|