blob: fbf97e35e65ad01d81463926262ff529a5138ca7 (
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
|
# Copyright 1999-2009 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-r2.ebuild,v 1.6 2009/07/07 23:02:09 flameeyes Exp $
inherit java-pkg-2
At="${PN%-bin}-2_1_1e-alljava.zip"
S="${WORKDIR}/JMF-${PV}"
DESCRIPTION="The Java Media Framework API (JMF)"
SRC_URI="${At}"
HOMEPAGE="http://java.sun.com/products/java-media/jmf/"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
LICENSE="sun-bcla-jmf"
SLOT="0"
DEPEND=">=app-arch/unzip-5.50-r1"
RDEPEND=">=virtual/jre-1.4"
RESTRICT="fetch"
DOWNLOAD_URL="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=7372-jmf-2.1.1e-oth-JPR@CDS-CDS_Developer"
pkg_nofetch() {
elog
elog " Due to license restrictions, we cannot fetch the"
elog " distributables automagically."
elog
elog " 1. Visit ${DOWNLOAD_URL} and select 'Linux'"
elog " 2. Download ${At}"
elog " 3. Move file to ${DISTDIR}"
elog " 4. Run emerge on this package again to complete"
elog
}
src_unpack() {
unzip -qq "${DISTDIR}"/${At} || die
}
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}/lib
doins lib/jmf.properties
}
|