blob: a1f5f8bcbced3d12f6c0874c3f27f7bf1e7cefda (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/live-2003.01.28.ebuild,v 1.8 2004/06/24 23:32:23 agriffis Exp $
DESCRIPTION="Source-code libraries for standards-based RTP/RTCP/RTSP multimedia streaming, suitable for embedded and/or low-cost streaming applications"
HOMEPAGE="http://www.live.com/"
MY_P=${P/-/.}
SRC_URI="http://www.live.com/liveMedia/public/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=sys-apps/sed-4"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
sed -i.orig -e "s:-O:${CFLAGS} -Wno-deprecated:" config.linux
}
src_compile() {
./genMakefiles linux
# emake doesn't work
make || die
}
src_install() {
# no installer, go manual ...
# find and install libraries, mplayer needs to find
# each library in a subdirectory with same name as
# the lib
local lib
for lib in $(find ${S} -type f -name \*.a)
do
local dir
dir=$(basename $(dirname ${lib}))
insinto "/usr/lib/live/${dir}"
doins "${lib}"
insinto "/usr/lib/live/${dir}/include"
doins ${S}/${dir}/include/*.hh
done
# find and install test programs
exeinto /usr/bin
find ${S}/testProgs -type f -perm +111 -exec doexe {} \;
dodoc ${S}/README
}
|