diff options
author | Joel Martin <kanaka@gentoo.org> | 2004-05-17 13:04:21 +0000 |
---|---|---|
committer | Joel Martin <kanaka@gentoo.org> | 2004-05-17 13:04:21 +0000 |
commit | f8c019d1189d51e45dffe7db20e2f8f33521c2d0 (patch) | |
tree | aad84fa111034bc87f71ec973406fca4b2771a42 /media-video/helixplayer-bin | |
parent | Cleanup (Manifest recommit) (diff) | |
download | gentoo-2-f8c019d1189d51e45dffe7db20e2f8f33521c2d0.tar.gz gentoo-2-f8c019d1189d51e45dffe7db20e2f8f33521c2d0.tar.bz2 gentoo-2-f8c019d1189d51e45dffe7db20e2f8f33521c2d0.zip |
Bumped revision to 0.3.0.124 (May 16 snapshot)
Diffstat (limited to 'media-video/helixplayer-bin')
4 files changed, 55 insertions, 2 deletions
diff --git a/media-video/helixplayer-bin/ChangeLog b/media-video/helixplayer-bin/ChangeLog index 0c6f231b6654..e6488c208d75 100644 --- a/media-video/helixplayer-bin/ChangeLog +++ b/media-video/helixplayer-bin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/helixplayer-bin # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/helixplayer-bin/ChangeLog,v 1.3 2004/04/27 18:36:59 kanaka Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/helixplayer-bin/ChangeLog,v 1.4 2004/05/17 13:04:21 kanaka Exp $ + +*helixplayer-bin-0.3.0.124 (17 May 2004) + + 17 May 2004; Joel Martin <kanaka@gentoo.org> + helixplayer-bin-0.3.0.124.ebuild: + Bumped revision to 0.3.0.124 (May 16 snapshot) 27 Apr 2004; Joel Martin <kanaka@gentoo.org> helixplayer-bin-0.3.0.71.ebuild: diff --git a/media-video/helixplayer-bin/Manifest b/media-video/helixplayer-bin/Manifest index 675ae6d1f2f8..017b470082a1 100644 --- a/media-video/helixplayer-bin/Manifest +++ b/media-video/helixplayer-bin/Manifest @@ -1,4 +1,6 @@ +MD5 5c56ed7e47bc9a5a293a8bf9e38b23b5 helixplayer-bin-0.3.0.124.ebuild 1183 MD5 5c2e1b8c157d16f62d8d7fc3cfd66096 helixplayer-bin-0.3.0.71.ebuild 1182 -MD5 fb8c429a25c2259bb5b4819ae353bcdb ChangeLog 666 +MD5 9b79b3b55d58ae4cd982aa2860164158 ChangeLog 841 MD5 9ef4af14dad87b03fde8e43f19e08d26 metadata.xml 225 MD5 61580d8e745937ac625231632cac0c0f files/digest-helixplayer-bin-0.3.0.71 96 +MD5 6a1c99b035273303d4a13c069e3f2568 files/digest-helixplayer-bin-0.3.0.124 97 diff --git a/media-video/helixplayer-bin/files/digest-helixplayer-bin-0.3.0.124 b/media-video/helixplayer-bin/files/digest-helixplayer-bin-0.3.0.124 new file mode 100644 index 000000000000..b89ddd882abc --- /dev/null +++ b/media-video/helixplayer-bin/files/digest-helixplayer-bin-0.3.0.124 @@ -0,0 +1 @@ +MD5 f1a799b4fa1b88b35f907aadc206082d hxplay-0.3.0.124-linux-2.2-libc6-gcc32-i586.tar.bz2 4042159 diff --git a/media-video/helixplayer-bin/helixplayer-bin-0.3.0.124.ebuild b/media-video/helixplayer-bin/helixplayer-bin-0.3.0.124.ebuild new file mode 100644 index 000000000000..a79d6605b10c --- /dev/null +++ b/media-video/helixplayer-bin/helixplayer-bin-0.3.0.124.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/helixplayer-bin/helixplayer-bin-0.3.0.124.ebuild,v 1.1 2004/05/17 13:04:21 kanaka Exp $ + +inherit nsplugins + +SRC_URI="hxplay-0.3.0.124-linux-2.2-libc6-gcc32-i586.tar.bz2" +S=${WORKDIR}/hxplay-linux-2.2-libc6-gcc32-i586 +DESCRIPTION="Helix Player" + +DOWNLOAD_URI="http://forms.helixcommunity.org/helixdnaclient/" +HOMEPAGE="https://player.helixcommunity.org" + +LICENSE="realsdk" +SLOT="0" +KEYWORDS="~x86" +DEPEND="virtual/x11 + >=x11-libs/gtk+-2.2.0 + media-libs/libvorbis + media-libs/libogg + media-libs/faad2" + +RESTRICT="nostrip fetch" + +src_unpack() { + if [ ! -f ${DISTDIR}/${A} ] ; then + eerror "Please download ${A} from ${DOWNLOAD_URI} to ${DISTDIR}" + die "Some source files were not found" + fi +} + +src_install () { + mkdir -p ${D}/opt/HelixPlayer + cd ${D}/opt/HelixPlayer + + # Install the player + tar xvjf ${DISTDIR}/${A} + mkdir -p ${D}/usr/bin + dosym /opt/HelixPlayer/hxplay /usr/bin/hxplay + + # Install the Mozilla plugin + inst_plugin /opt/HelixPlayer/mozilla/nphelix.so + inst_plugin /opt/HelixPlayer/mozilla/nphelix.xpt +} |