1 #*************************************************************************
3 # The Contents of this file are made available subject to the terms of
6 # Copyright 2000, 2010 Oracle and/or its affiliates.
9 # Redistribution and use in source and binary forms, with or without
10 # modification, are permitted provided that the following conditions
12 # 1. Redistributions of source code must retain the above copyright
13 # notice, this list of conditions and the following disclaimer.
14 # 2. Redistributions in binary form must reproduce the above copyright
15 # notice, this list of conditions and the following disclaimer in the
16 # documentation and/or other materials provided with the distribution.
17 # 3. Neither the name of Sun Microsystems, Inc. nor the names of its
18 # contributors may be used to endorse or promote products derived
19 # from this software without specific prior written permission.
21 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28 # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
30 # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
31 # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #**************************************************************************
35 # Builds the Java PropertySet component example of the SDK.
38 SETTINGS
=$(PRJ
)/settings
40 include $(SETTINGS
)/settings.mk
41 include $(SETTINGS
)/std.mk
43 # Define non-platform/compiler specific settings
45 COMP_CLASS_OUT
=$(OUT_CLASS
)/$(COMP_NAME
)
46 COMP_GEN_OUT
=$(OUT_MISC
)/$(COMP_NAME
)
47 COMP_PACKAGE
=$(OUT_BIN
)/$(COMP_NAME
).
$(UNOOXT_EXT
)
48 COMP_PACKAGE_URL
=$(subst \\,\
,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
49 COMP_JAR_NAME
=$(COMP_NAME
).uno.jar
50 COMP_JAR
=$(COMP_CLASS_OUT
)/$(COMP_JAR_NAME
)
51 COMP_JAR_MANIFEST
=$(COMP_CLASS_OUT
)/$(COMP_NAME
).uno.Manifest
52 COMP_UNOPKG_MANIFEST
= $(COMP_GEN_OUT
)/META-INF
/manifest.xml
53 COMP_REGISTERFLAG
=$(COMP_GEN_OUT
)$(PS
)java_
$(COMP_NAME
)_register_component.flag
54 COMP_COMPONENTS
=$(COMP_NAME
).components
56 COMP_JAVAFILES
= PropTest.java
58 COMP_CLASSFILES
= $(patsubst %.java
,$(COMP_CLASS_OUT
)/%.class
,$(COMP_JAVAFILES
))
60 $(COMP_NAME
)_CLASSFILES
= $(COMP_NAME
).class
62 SDK_CLASSPATH
= $(subst $(EMPTYSTRING
) $(PATH_SEPARATOR
),$(PATH_SEPARATOR
),$(CLASSPATH
)\
63 $(PATH_SEPARATOR
)$(COMP_CLASS_OUT
))
68 ALL
: JavaPropertySetExample
70 include $(SETTINGS
)/stdtarget.mk
72 $(COMP_CLASS_OUT
)/%.Manifest
:
73 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
74 @echo RegistrationClassName
: $(basename $(basename $(@F
)))> $@
76 $(COMP_CLASSFILES
) : $(COMP_JAVAFILES
)
77 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
78 $(SDK_JAVAC
) $(JAVAC_FLAGS
) -classpath
"$(SDK_CLASSPATH)" -d
$(COMP_CLASS_OUT
) $(COMP_JAVAFILES
)
80 # rule for component jar file
81 $(COMP_JAR
) : $(COMP_JAR_MANIFEST
) $(COMP_CLASSFILES
)
82 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
83 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
84 cd
$(subst /,$(PS
),$(COMP_CLASS_OUT
)) && $(SDK_JAR
) cvfm
$(@F
) $(<F
) $($(basename $(basename $(@F
)))_CLASSFILES
)
86 # rule for component package manifest
87 $(COMP_GEN_OUT
)/%/manifest.xml
:
88 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
89 @echo
$(OSEP
)?xml version
="$(QM)1.0$(QM)" encoding
="$(QM)UTF-8$(QM)"?
$(CSEP
) > $@
90 @echo
$(OSEP
)!DOCTYPE manifest
:manifest PUBLIC
"$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP
) >> $@
91 @echo
$(OSEP
)manifest
:manifest xmlns
:manifest
="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP
) >> $@
92 @echo
$(SQM
) $(SQM
)$(OSEP
)manifest
:file-entry manifest
:media-type
="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@
93 @echo
$(SQM
) $(SQM
)manifest
:full-path
="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP
)>> $@
94 @echo
$(OSEP
)/manifest
:manifest
$(CSEP
) >> $@
96 # rule for component package file
97 $(COMP_PACKAGE
) : $(COMP_JAR
) $(COMP_UNOPKG_MANIFEST
) $(COMP_NAME
).components
98 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
99 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
100 $(SDK_ZIP
) $@
$(COMP_NAME
).components
101 cd
$(subst /,$(PS
),$(COMP_CLASS_OUT
)) && $(SDK_ZIP
) -u ..
/..
/bin
/$(@F
) $(<F
)
102 cd
$(subst /,$(PS
),$(COMP_GEN_OUT
)) && $(SDK_ZIP
) -u ..
/..
/bin
/$(@F
) META-INF
/manifest.xml
105 $(COMP_REGISTERFLAG
) : $(COMP_PACKAGE
)
106 ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
107 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
108 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
109 $(DEPLOYTOOL
) $(COMP_PACKAGE_URL
)
110 @echo flagged
> $(subst /,$(PS
),$@
)
112 @echo
--------------------------------------------------------------------------------
113 @echo If you want to
install your component automatically
, please set the environment
114 @echo variable SDK_AUTO_DEPLOYMENT
= YES. But note that auto deployment is only
115 @echo possible if no office instance is running.
116 @echo
--------------------------------------------------------------------------------
119 JavaPropertySetExample
: $(COMP_REGISTERFLAG
)
120 @echo
--------------------------------------------------------------------------------
121 @echo The PropTest was installed if SDK_AUTO_DEPLOYMENT
= YES.
122 @echo Load the
"$(QM)PropertySet.odt$(QM)" document to see how this component works. You can
123 @echo use this component inside your office installation
, see the example description.
125 @echo
$(MAKE
) PropertySet.odt.load
126 @echo
--------------------------------------------------------------------------------
128 PropertySet.odt.load
: $(COMP_REGISTERFLAG
)
129 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@
)
133 -$(DELRECURSIVE
) $(subst /,$(PS
),$(COMP_CLASS_OUT
))
134 -$(DELRECURSIVE
) $(subst /,$(PS
),$(COMP_GEN_OUT
))
135 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$(COMP_PACKAGE_URL
)))