diff options
author | Joel Martin <kanaka@gentoo.org> | 2004-05-18 18:10:48 +0000 |
---|---|---|
committer | Joel Martin <kanaka@gentoo.org> | 2004-05-18 18:10:48 +0000 |
commit | eb076a18be22372e415928240982b33e0b53da11 (patch) | |
tree | c62d12b7c40d6ad5570b4c05193007145fef0ad5 /media-video/helixplayer-bin | |
parent | Initial import. Closes #51202. (Manifest recommit) (diff) | |
download | gentoo-2-eb076a18be22372e415928240982b33e0b53da11.tar.gz gentoo-2-eb076a18be22372e415928240982b33e0b53da11.tar.bz2 gentoo-2-eb076a18be22372e415928240982b33e0b53da11.zip |
Add version 0.3.0.123 which is the Alpha version, this version doesn't require fetch restrictions
Diffstat (limited to 'media-video/helixplayer-bin')
4 files changed, 56 insertions, 1 deletions
diff --git a/media-video/helixplayer-bin/ChangeLog b/media-video/helixplayer-bin/ChangeLog index e6488c208d75..d97dc127b031 100644 --- a/media-video/helixplayer-bin/ChangeLog +++ b/media-video/helixplayer-bin/ChangeLog @@ -1,6 +1,13 @@ # 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.4 2004/05/17 13:04:21 kanaka Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/helixplayer-bin/ChangeLog,v 1.5 2004/05/18 18:10:48 kanaka Exp $ + +*helixplayer-bin-0.3.0.123 (18 May 2004) + + 18 May 2004; Joel Martin <kanaka@gentoo.org> + helixplayer-bin-0.3.0.123.ebuild: + Add version 0.3.0.123 which is the Alpha version, this version doesn't require + fetch restrictions *helixplayer-bin-0.3.0.124 (17 May 2004) diff --git a/media-video/helixplayer-bin/Manifest b/media-video/helixplayer-bin/Manifest index 119697515826..e5e3d3c92a58 100644 --- a/media-video/helixplayer-bin/Manifest +++ b/media-video/helixplayer-bin/Manifest @@ -1,6 +1,8 @@ MD5 01743aaf42a822be19eddc44f28bcd3c helixplayer-bin-0.3.0.124.ebuild 1184 MD5 5c2e1b8c157d16f62d8d7fc3cfd66096 helixplayer-bin-0.3.0.71.ebuild 1182 +MD5 475b0402051e195a9ec28c44d663b9d9 helixplayer-bin-0.3.0.123.ebuild 1099 MD5 76db36f64601796fc33286623d2b2354 ChangeLog 841 MD5 9ef4af14dad87b03fde8e43f19e08d26 metadata.xml 225 MD5 61580d8e745937ac625231632cac0c0f files/digest-helixplayer-bin-0.3.0.71 96 +MD5 2df5b8701e15dd42be9f6dd44954e1cb files/digest-helixplayer-bin-0.3.0.123 97 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.123 b/media-video/helixplayer-bin/files/digest-helixplayer-bin-0.3.0.123 new file mode 100644 index 000000000000..e86063787823 --- /dev/null +++ b/media-video/helixplayer-bin/files/digest-helixplayer-bin-0.3.0.123 @@ -0,0 +1 @@ +MD5 f763329dc1191a3d1c8eab465214c726 hxplay-0.3.0.123-linux-2.2-libc6-gcc32-i586.tar.bz2 4004299 diff --git a/media-video/helixplayer-bin/helixplayer-bin-0.3.0.123.ebuild b/media-video/helixplayer-bin/helixplayer-bin-0.3.0.123.ebuild new file mode 100644 index 000000000000..70d99dc5c88e --- /dev/null +++ b/media-video/helixplayer-bin/helixplayer-bin-0.3.0.123.ebuild @@ -0,0 +1,45 @@ +# 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.123.ebuild,v 1.1 2004/05/18 18:10:48 kanaka Exp $ + +inherit nsplugins + +DESCRIPTION="Helix Player (hxplay), the Helix Community open source media player" +HOMEPAGE="https://player.helixcommunity.org" +SRC_URI="https://helixcommunity.org/download.php/410/hxplay-${PV}-linux-2.2-libc6-gcc32-i586.tar.bz2" +LICENSE="realsdk" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" +DEPEND="virtual/x11 + >=x11-libs/gtk+-2.2.0 + media-libs/libvorbis + media-libs/libogg + media-libs/faad2" + +S=${WORKDIR}/${P} + +RESTRICT="nostrip" + +src_unpack () { + echo unpack noop +} + +src_compile () { + echo compile noop +} + +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 +} |