Ignore:
Timestamp:
Mar 26, 2011, 8:39:20 PM (14 years ago)
Author:
dmik
Message:

trunk: Merged in openjdk6 b22 from branches/vendor/oracle.

Location:
trunk/openjdk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk

  • trunk/openjdk/jdk/make/javax/swing/FILES.gmk

    r2 r278  
    11#
    2 # Copyright 1998-2005 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
    2626MISC_FILES = \
    2727        $(CLASSBINDIR)/javax/swing/text/html/default.css                        \
    28         $(CLASSBINDIR)/javax/swing/text/html/parser/html32.bdtd                 \
    2928        $(CLASSBINDIR)/javax/swing/text/rtf/charsets/NeXT.txt                   \
    3029        $(CLASSBINDIR)/javax/swing/text/rtf/charsets/ansi.txt                   \
  • trunk/openjdk/jdk/make/javax/swing/Makefile

    r2 r278  
    11#
    2 # Copyright 1998-2006 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
    2626BUILDDIR  = ../..
    2727PACKAGE   = javax.swing
     28SUN_PACKAGE = com.sun.java.swing.plaf
    2829PRODUCT   = com
    2930SWING_SRC = $(SHARE_SRC)/classes/javax/swing
     31SUN_SRC = $(SHARE_SRC)/classes/com/sun/java/swing
     32
     33NIMBUS_GENSRC_DIR = $(GENSRCDIR)/com/sun/java/swing/plaf/nimbus
     34NIMBUS_SKIN_FILE = $(SUN_SRC)/plaf/nimbus/skin.laf
     35NIMBUS_GENERATOR_JAR = $(BUILDTOOLJARDIR)/generatenimbus.jar
     36
    3037include $(BUILDDIR)/common/Defs.gmk
     38LANGUAGE_VERSION = -source 6
     39CLASS_VERSION = -target 6
    3140
    3241#
     
    3948SUBDIRS = html32dtd plaf
    4049
     50#
     51# Include
     52#
     53ifndef DISABLE_NIMBUS
     54    CLASSES_INIT = $(NIMBUS_GENSRC_DIR)
     55endif
     56
    4157include $(BUILDDIR)/common/Classes.gmk
    4258
     
    4561
    4662clean clobber::
     63        $(RM) -r $(NIMBUS_GENSRC_DIR)
    4764        $(SUBDIRS-loop)
    4865
     
    5875        $(install-file)
    5976
    60 $(CLASSBINDIR)/%.bdtd: $(SHARE_SRC)/classes/%.bdtd
    61         $(install-file)
    62 
    6377$(CLASSBINDIR)/%.txt: $(SHARE_SRC)/classes/%.txt
    6478        $(install-file)
    6579
     80$(NIMBUS_GENSRC_DIR): $(NIMBUS_SKIN_FILE) $(NIMBUS_GENERATOR_JAR)
     81        @$(ECHO) "Generating Nimbus source files:"
     82        $(RM) -r $(NIMBUS_GENSRC_DIR)
     83        $(BOOT_JAVA_CMD) -jar $(NIMBUS_GENERATOR_JAR) \
     84            -skinFile $(NIMBUS_SKIN_FILE) -buildDir $(GENSRCDIR) \
     85            -packagePrefix $(SUN_PACKAGE).nimbus -lafName Nimbus
     86        @$(ECHO) "Finished generating Nimbus source files"
  • trunk/openjdk/jdk/make/javax/swing/beaninfo/FILES.gmk

    r2 r278  
    11#
    2 # Copyright 1998-2004 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2004, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
  • trunk/openjdk/jdk/make/javax/swing/beaninfo/Makefile

    r2 r278  
    11#
    2 # Copyright 1998-2005 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
  • trunk/openjdk/jdk/make/javax/swing/beaninfo/SwingBeans.gmk

    r2 r278  
    11#
    2 # Copyright 1998-2006 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2006, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
  • trunk/openjdk/jdk/make/javax/swing/html32dtd/Makefile

    r2 r278  
    11#
    2 # Copyright 1998-2005 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
  • trunk/openjdk/jdk/make/javax/swing/plaf/FILES.gmk

    r2 r278  
    11#
    2 # Copyright 1998-2007 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
  • trunk/openjdk/jdk/make/javax/swing/plaf/Makefile

    r74 r278  
    11#
    2 # Copyright 1998-2007 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
    2626BUILDDIR  = ../../..
    2727PACKAGE   = javax.swing.plaf
    28 SUN_PACKAGE = com.sun.java.swing.plaf
    2928PRODUCT   = com
    3029SWING_SRC = $(SHARE_SRC)/classes/javax/swing
    31 SUN_SRC = $(SHARE_SRC)/classes/com/sun/java/swing
    3230
    3331include $(BUILDDIR)/common/Defs.gmk
     32LANGUAGE_VERSION = -source 6
     33CLASS_VERSION = -target 6
    3434
    3535#
     
    5454endif
    5555
    56 NIMBUS_GENSRC_DIR = $(GENSRCDIR)/com/sun/java/swing/plaf/nimbus
    57 NIMBUS_SKIN_FILE = $(SUN_SRC)/plaf/nimbus/skin.laf
    58 NIMBUS_GENERATOR_JAR = $(BUILDTOOLJARDIR)/generatenimbus.jar
    5956
    6057FILES_java = $(FILES_SWING_java)
     
    8178#
    8279build: $(LOGO_ICONS) $(MISC_SWING_FILES_MOTIF_GIF) $(MISC_SWING_FILES_MOTIF_PNG) other_files
    83 
    84 $(NIMBUS_GENSRC_DIR): $(NIMBUS_SKIN_FILE) $(NIMBUS_GENERATOR_JAR)
    85         @$(ECHO) "Generating Nimbus source files:"
    86         $(RM) -r $(NIMBUS_GENSRC_DIR)
    87         $(BOOT_JAVA_CMD) -jar $(NIMBUS_GENERATOR_JAR) \
    88             -skinFile $(NIMBUS_SKIN_FILE) -buildDir $(GENSRCDIR) \
    89             -packagePrefix $(SUN_PACKAGE).nimbus -lafName Nimbus
    90         @$(ECHO) "Finished generating Nimbus source files"
    91 
    92 clean:: classes.clean
    93         $(RM) -r $(NIMBUS_GENSRC_DIR)
    94 
    95 #
    96 # Include
    97 #
    98 ifndef DISABLE_NIMBUS
    99     CLASSES_INIT = $(NIMBUS_GENSRC_DIR)
    100 endif
    10180
    10281include $(BUILDDIR)/common/Classes.gmk
Note: See TracChangeset for help on using the changeset viewer.