diff options
author | 2004-11-25 13:44:28 +0000 | |
---|---|---|
committer | 2004-11-25 13:44:28 +0000 | |
commit | 105168e303ea53540760b7a7125810edd526be4a (patch) | |
tree | 22d3b64c8d7d2db46af473ee8f10b9f93f6b74c7 /dev-java/jmf-bin/jmf-bin-2.1.1e-r1.ebuild | |
parent | give sparc there jdk back, no longer installs the mozilla plugin, security vu... (diff) | |
download | gentoo-2-105168e303ea53540760b7a7125810edd526be4a.tar.gz gentoo-2-105168e303ea53540760b7a7125810edd526be4a.tar.bz2 gentoo-2-105168e303ea53540760b7a7125810edd526be4a.zip |
fix wrapper scripts #72453
Diffstat (limited to 'dev-java/jmf-bin/jmf-bin-2.1.1e-r1.ebuild')
-rw-r--r-- | dev-java/jmf-bin/jmf-bin-2.1.1e-r1.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dev-java/jmf-bin/jmf-bin-2.1.1e-r1.ebuild b/dev-java/jmf-bin/jmf-bin-2.1.1e-r1.ebuild new file mode 100644 index 000000000000..e869c3a0c2a5 --- /dev/null +++ b/dev-java/jmf-bin/jmf-bin-2.1.1e-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jmf-bin/jmf-bin-2.1.1e-r1.ebuild,v 1.1 2004/11/25 13:44:28 axxo Exp $ + +inherit java-pkg + +At="${PN/-bin}-2_1_1e-alljava.zip" +S=${WORKDIR}/JMF-2.1.1e +DESCRIPTION="The Java Media Framework API (JMF) enables audio, video and other time-based media to be added to Java applications and applets." +SRC_URI="${At}" +HOMEPAGE="http://java.sun.com/products/java-media/jmf/" +KEYWORDS="x86 sparc amd64 ~ppc" +IUSE="" +LICENSE="sun-bcla-jmf" +SLOT="0" +DEPEND=">=app-arch/unzip-5.50-r1" +RDEPEND=">=virtual/jdk-1.4" +RESTRICT="fetch" + +pkg_nofetch() { + einfo " " + einfo " Due to license restrictions, we cannot fetch the" + einfo " distributables automagically." + einfo " " + einfo " 1. Visit ${HOMEPAGE} and select 'Cross Platform Java'" + einfo " 2. Download ${At}" + einfo " 3. Move file to ${DISTDIR}" + einfo " 4. Run emerge on this package again to complete" + einfo " " +} + +src_unpack() { + if [ ! -f "${DISTDIR}/${At}" ] ; then + echo " " + echo "!!! Missing ${DISTDIR}/${At}" + echo " " + einfo " " + einfo " Due to license restrictions, we cannot fetch the" + einfo " distributables automagically." + einfo " " + einfo " 1. Visit ${HOMEPAGE} and select 'Cross Platform Java'" + einfo " 2. Download ${At}" + einfo " 3. Move file to ${DISTDIR}" + einfo " 4. Run emerge on this package again to complete" + einfo " " + die "User must manually download distfile" + fi + unzip -qq ${DISTDIR}/${At} +} + +src_compile() { + einfo " This is a binary-only ebuild." +} + +src_install() { + dobin \ + ${FILESDIR}/jmfcustomizer \ + ${FILESDIR}/jmfinit \ + ${FILESDIR}/jmfregistry \ + ${FILESDIR}/jmstudio + dohtml ${S}/doc/*.html + java-pkg_dojar ${S}/lib/*.jar + insinto /usr/share/${PN/-bin}/lib + doins lib/jmf.properties +} |