Neue Version V963

git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_jdk@5933 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2011-01-03 10:48:06 +00:00
commit d90a4ea7c4
2 changed files with 89 additions and 0 deletions

39
etc/sysconfig/profile.d/jdk Executable file
View File

@ -0,0 +1,39 @@
#!/bin/bash
#PATH Initialisierung für j2re
#Script Framework - Automatisiertes Erzeugen der Monsum Linux Distribution
#(c) Rainmaker MultiMedia OHG
#
#$Author$
#$Date$
#$Revision$
#
#$Log$
#Revision 1.2 2006/09/06 10:54:46 kueller
#kleiner fehler (/lib64 ist kein file, sondern ein dir - also check mit
#-d)
#
#Revision 1.1.1.1 2006/09/06 10:44:48 kueller
#New Java Ve3rsion 5.0
#
#Revision 1.2 2003/11/03 07:52:40 kueller
#Besserer Ersatz fuer j2re. Anpassungen fuer sdk kit.
#
#Revision 1.1 2003/11/03 07:50:38 kueller
#j2re wird duch developmentkit ersetzt
#
#Revision 1.1.1.1 2002/10/22 10:12:47 kueller
#Java Runtime Environment Initialisierungs Dateien
#
#
#
if [ -d /lib64 ]; then
PATH=$PATH:/usr/lib64/jdk/bin
MANPATH=$MANPATH:/usr/lib64/jdk/man
JAVA_HOME=/usr/lib64/jdk
else
PATH=$PATH:/usr/lib/jdk/bin
MANPATH=$MANPATH:/usr/lib/jdk/man
JAVA_HOME=/usr/lib/jdk
fi
export PATH MANPATH JAVA_HOME

50
tmp/postinstall Executable file
View File

@ -0,0 +1,50 @@
#!/bin/bash
#Framework, welches ein komplettes Linux System aus den Sourcen erstellt
#dieses Framework wird im CVS Repository
#:pserver:cvs.rainmaker-mm.de/RMM/cvs zur Verfügung gestellt
#
#Lage dieser Datei im Archiv: $Source$
#
#(c) Rainmaker MultiMedia OHG
#This program is free software; you can redistribute it and/or
#modify ist under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version
#2 of the License, or (at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#See the GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not write to the Free Software Foundation,
#Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#Beschreibung:
#Postinstall für das Java Runtime Environment von SUN Microsystems
#Dieses Postinstall script dient der Einhaltung der License Bedingungen
#von SUN Microsystems, und sorgt für die Anzeige der License!
#
#Aufrufparameter:
#keine
#
#Letzte Änderung von: $Author$
#Datum der letzten Änderung: $Date$
#Version der Datei: $Revision$
#
#$Log$
#Revision 1.1 2006/09/06 10:44:48 kueller
#Initial revision
#
#Revision 1.2 2003/11/03 07:53:02 kueller
#j2re wird durch j2sdk ersetzt.
#
#Revision 1.1.1.1 2002/10/22 10:12:47 kueller
#Java Runtime Environment Initialisierungs Dateien
#
#
if [ ! -f /tmp/NOQUEST ]; then
more /usr/lib/jdk/LICENSE
fi