mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Martin Hejnfelt <mh@newtec.dk>
To: ptxdist@pengutronix.de
Cc: Martin Hejnfelt <mh@newtec.dk>
Subject: [ptxdist] [oracle java7 jre 1/1] Added Oracles Java 7 JRE
Date: Thu,  8 Jan 2015 09:43:16 +0100	[thread overview]
Message-ID: <1420706596-10898-1-git-send-email-mh@newtec.dk> (raw)

Signed-off-by: Martin Hejnfelt <mh@newtec.dk>
---
:000000 100644 0000000... 4b4512c... A	rules/oracle-java7-jre.in
:000000 100644 0000000... 8a5603d... A	rules/oracle-java7-jre.make
 rules/oracle-java7-jre.in   |  25 +++++++++++
 rules/oracle-java7-jre.make | 102 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 127 insertions(+)

diff --git a/rules/oracle-java7-jre.in b/rules/oracle-java7-jre.in
new file mode 100644
index 0000000..4b4512c
--- /dev/null
+++ b/rules/oracle-java7-jre.in
@@ -0,0 +1,25 @@
+## SECTION=bytecode_engines
+
+menuconfig ORACLE_JAVA7_JRE
+	tristate
+	
+	prompt "oracle java7 jre              "
+	help
+	 Oracle[tm] Java Runtime Environment 7
+	 This downloads the binary distribution
+	 and extracts into the target prefix.
+
+config ORACLE_JAVA7_JRE_TARGET_PREFIX
+	string
+	depends on ORACLE_JAVA7_JRE
+	default "/usr/lib/jvm"
+	prompt "PREFIX for JRE 7"
+	help
+	  Where should the JRE be installed.
+
+config ORACLE_JAVA7_JRE_ARCHX64
+	boolean
+	depends on ORACLE_JAVA7_JRE
+	prompt "JRE7 x64 binary"
+	help
+	  Downloads the x64 binary instead
diff --git a/rules/oracle-java7-jre.make b/rules/oracle-java7-jre.make
new file mode 100644
index 0000000..8a5603d
--- /dev/null
+++ b/rules/oracle-java7-jre.make
@@ -0,0 +1,102 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2014 by Oracle
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_ORACLE_JAVA7_JRE) += oracle-java7-jre
+
+#
+# Paths and names
+#
+ifdef PTXCONF_ORACLE_JAVA7_JRE_ARCHX64
+ORACLE_JAVA7_JRE_ARCH		:= x64
+else
+ORACLE_JAVA7_JRE_ARCH		:= i586
+endif
+
+ORACLE_JAVA7_JRE_VERSION	:= 7u67
+
+ifdef PTXCONF_ORACLE_JAVA7_JRE_ARCHX64
+ORACLE_JAVA7_JRE_MD5		:= 9007c79167be0177fb47e5313c53d5cb
+else
+ORACLE_JAVA7_JRE_MD5            := 2a256eb2a91f0084e58c612636342c2b
+endif
+
+ORACLE_JAVA7_JRE		:= jre-$(ORACLE_JAVA7_JRE_VERSION)-linux-$(ORACLE_JAVA7_JRE_ARCH)
+ORACLE_JAVA7_JRE_SUFFIX		:= tar.gz
+ORACLE_JAVA7_JRE_URL		:= http://download.oracle.com/otn-pub/java/jdk/$(ORACLE_JAVA7_JRE_VERSION)-b01/$(ORACLE_JAVA7_JRE).$(ORACLE_JAVA7_JRE_SUFFIX)
+ORACLE_JAVA7_JRE_SOURCE		:= $(SRCDIR)/$(ORACLE_JAVA7_JRE).$(ORACLE_JAVA7_JRE_SUFFIX)
+ORACLE_JAVA7_JRE_DIR		:= $(BUILDDIR)/$(ORACLE_JAVA7_JRE)
+ORACLE_JAVA7_JRE_LICENSE	:= unknown
+
+# ----------------------------------------------------------------------------
+# Get
+# ----------------------------------------------------------------------------
+
+$(ORACLE_JAVA7_JRE_SOURCE):
+	@$(call targetinfo)
+	wget --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" $(ORACLE_JAVA7_JRE_URL) -P $(SRCDIR)/
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/oracle-java7-jre.prepare:
+	@$(call targetinfo)
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/oracle-java7-jre.compile:
+	@$(call targetinfo)
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/oracle-java7-jre.install:
+	@$(call targetinfo)
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/oracle-java7-jre.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, oracle-java7-jre)
+	@$(call install_fixup, oracle-java7-jre,PRIORITY,optional)
+	@$(call install_fixup, oracle-java7-jre,SECTION,base)
+	@$(call install_fixup, oracle-java7-jre,AUTHOR,"Oracle")
+	@$(call install_fixup, oracle-java7-jre,DESCRIPTION,"Oracle Java Runtime Envinronment")
+
+	@$(call install_tree, oracle-java7-jre, -, -, $(ORACLE_JAVA7_JRE_DIR), $(PTXCONF_ORACLE_JAVA7_JRE_TARGET_PREFIX)/jre-$(ORACLE_JAVA7_JRE_VERSION))
+	@$(call install_link, oracle-java7-jre, $(PTXCONF_ORACLE_JAVA7_JRE_TARGET_PREFIX)/jre-$(ORACLE_JAVA7_JRE_VERSION)/bin/java, /usr/bin/java)
+	@$(call install_link, oracle-java7-jre, $(PTXCONF_ORACLE_JAVA7_JRE_TARGET_PREFIX)/jre-$(ORACLE_JAVA7_JRE_VERSION)/bin/javaws, /usr/bin/javaws)
+
+	@$(call install_finish, oracle-java7-jre)
+
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+#$(STATEDIR)/oracle-java7-jre.clean:
+#	@$(call targetinfo)
+#	@$(call clean_pkg, ORACLE_JAVA7_JRE)
+
+# vim: syntax=make
-- 
1.9.1


-- 
ptxdist mailing list
ptxdist@pengutronix.de

             reply	other threads:[~2015-01-08  8:43 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-08  8:43 Martin Hejnfelt [this message]
2015-01-08 11:58 ` Michael Olbrich
2015-01-08 12:36   ` Martin Hejnfelt
2015-01-12 14:51     ` Michael Olbrich
2015-01-12 15:32       ` Michael Olbrich
     [not found] <[oracle java7 jre 1/1] Added Oracles Java 7 JRE>
2015-01-12 18:07 ` Martin Hejnfelt
2015-01-12 18:07   ` Martin Hejnfelt
2015-01-14 10:21     ` Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1420706596-10898-1-git-send-email-mh@newtec.dk \
    --to=mh@newtec.dk \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox