< prev index next >

make/copy/Copy-java.desktop.gmk

Print this page




   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  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.
  24 #
  25 
  26 include CopyCommon.gmk

  27 
  28 $(eval $(call IncludeCustomExtension, copy/Copy-java.desktop.gmk))
  29 
  30 ################################################################################
  31 
  32 $(CONF_DST_DIR)/sound.properties: $(TOPDIR)/src/java.desktop/share/conf/sound.properties
  33         $(call install-file)
  34 
  35 TARGETS += $(CONF_DST_DIR)/sound.properties
  36 
  37 ################################################################################
  38 #
  39 # Copy property files from sun/print to LIB_DST_DIR
  40 #
  41 PSFONTPROPFILE_SRC_DIR := $(TOPDIR)/src/java.desktop/share/conf
  42 PSFONTPROPFILE_SRCS := $(wildcard $(PSFONTPROPFILE_SRC_DIR)/psfont*.properties*)
  43 PSFONTPROPFILE_TARGET_FILES := $(subst $(PSFONTPROPFILE_SRC_DIR),$(LIB_DST_DIR),$(PSFONTPROPFILE_SRCS))
  44 
  45 $(LIB_DST_DIR)/%: $(PSFONTPROPFILE_SRC_DIR)/%
  46         $(call install-file)
  47 
  48 TARGETS += $(PSFONTPROPFILE_TARGET_FILES)































  49 
  50 ################################################################################


   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  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.
  24 #
  25 
  26 include CopyCommon.gmk
  27 include Modules.gmk
  28 
  29 $(eval $(call IncludeCustomExtension, copy/Copy-java.desktop.gmk))
  30 
  31 ################################################################################
  32 
  33 $(CONF_DST_DIR)/sound.properties: $(TOPDIR)/src/java.desktop/share/conf/sound.properties
  34         $(call install-file)
  35 
  36 TARGETS += $(CONF_DST_DIR)/sound.properties
  37 
  38 ################################################################################
  39 #
  40 # Copy property files from sun/print to LIB_DST_DIR
  41 #
  42 PSFONTPROPFILE_SRC_DIR := $(TOPDIR)/src/java.desktop/share/conf
  43 PSFONTPROPFILE_SRCS := $(wildcard $(PSFONTPROPFILE_SRC_DIR)/psfont*.properties*)
  44 PSFONTPROPFILE_TARGET_FILES := $(subst $(PSFONTPROPFILE_SRC_DIR),$(LIB_DST_DIR),$(PSFONTPROPFILE_SRCS))
  45 
  46 $(LIB_DST_DIR)/%: $(PSFONTPROPFILE_SRC_DIR)/%
  47         $(call install-file)
  48 
  49 TARGETS += $(PSFONTPROPFILE_TARGET_FILES)
  50 
  51 ################################################################################
  52 #
  53 # Copy and filter the legal files depending on what 3rd party components are
  54 # bundled or linked from the OS.
  55 #
  56 ifeq ($(USE_EXTERNAL_LIBJPEG), true)
  57   LEGAL_EXCLUDES += jpeg.md
  58 endif
  59 
  60 ifeq ($(USE_EXTERNAL_LIBGIF), true)
  61   LEGAL_EXCLUDES += giflib.md
  62 endif
  63 
  64 ifeq ($(USE_EXTERNAL_LIBPNG), true)
  65   LEGAL_EXCLUDES += libpng.md
  66 endif
  67 
  68 ifeq ($(USE_EXTERNAL_LCMS), true)
  69   LEGAL_EXCLUDES += lcms.md
  70 endif
  71 
  72 ifeq ($(FREETYPE_TO_USE), system)
  73   LEGAL_EXCLUDES += freetype.md
  74 endif
  75 
  76 $(eval $(call SetupCopyLegalFiles, COPY_LEGAL, \
  77     EXCLUDES := $(LEGAL_EXCLUDES), \
  78 ))
  79 
  80 TARGETS += $(COPY_LEGAL)
  81 
  82 ################################################################################
< prev index next >