diff options
author | 2004-03-27 17:49:56 +0000 | |
---|---|---|
committer | 2004-03-27 17:49:56 +0000 | |
commit | e41e4f8616ac5c44c132b25ddf7eb85496e98f64 (patch) | |
tree | db3a833cb8d1c80d62a1f5b9a2de01663933df1f /media-plugins/live/live-2004.03.27.ebuild | |
parent | Multiple (13) Ethereal remote overflows discovered by Stefan Esser. Bugzilla ... (diff) | |
download | historical-e41e4f8616ac5c44c132b25ddf7eb85496e98f64.tar.gz historical-e41e4f8616ac5c44c132b25ddf7eb85496e98f64.tar.bz2 historical-e41e4f8616ac5c44c132b25ddf7eb85496e98f64.zip |
Version bump
Diffstat (limited to 'media-plugins/live/live-2004.03.27.ebuild')
-rw-r--r-- | media-plugins/live/live-2004.03.27.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/media-plugins/live/live-2004.03.27.ebuild b/media-plugins/live/live-2004.03.27.ebuild new file mode 100644 index 000000000000..9cb3a7a9a03c --- /dev/null +++ b/media-plugins/live/live-2004.03.27.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/live-2004.03.27.ebuild,v 1.1 2004/03/27 17:49:56 brad 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 ~ppc" +IUSE="" +DEPEND="virtual/glibc" +S=${WORKDIR}/${PN} + +src_unpack() { + unpack ${A} + cd ${S} + sed -i.orig -e "s:-O:${CFLAGS} -Wno-deprecated:" config.linux + epatch ${FILESDIR}/gcc-3.3.patch + #quick fix, something better will follow. + rm testProgs/qtParse +} + +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/*h + done + + # find and install test programs + exeinto /usr/bin + find ${S}/testProgs -type f -perm +111 -exec doexe {} \; + + dodoc ${S}/README +} |