Update ooo320-m1
[ooovba.git] / swext / mediawiki / makefile.mk
blob203ed6227359de93aac8525e8aae304a66a3714d
1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 #
5 # Copyright 2008 by Sun Microsystems, Inc.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # $RCSfile: makefile.mk,v $
11 # $Revision: 1.12 $
13 # This file is part of OpenOffice.org.
15 # OpenOffice.org is free software: you can redistribute it and/or modify
16 # it under the terms of the GNU Lesser General Public License version 3
17 # only, as published by the Free Software Foundation.
19 # OpenOffice.org is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU Lesser General Public License version 3 for more details
23 # (a copy is included in the LICENSE file that accompanied this code).
25 # You should have received a copy of the GNU Lesser General Public License
26 # version 3 along with OpenOffice.org. If not, see
27 # <http://www.openoffice.org/license.html>
28 # for a copy of the LGPLv3 License.
30 #*************************************************************************
32 PRJ=..
33 PRJNAME=swext
34 TARGET=mediawiki
35 .IF "$(L10N_framework)"==""
36 .IF "$(ENABLE_MEDIAWIKI)" == "YES"
37 .INCLUDE : ant.mk
39 .IF "$(SYSTEM_APACHE_COMMONS)" != "YES"
40 COMMONS_CODEC_JAR=$(SOLARVER)$/$(INPATH)$/bin$(UPDMINOREXT)$/commons-codec-1.3.jar
41 COMMONS_LANG_JAR=$(SOLARVER)$/$(INPATH)$/bin$(UPDMINOREXT)$/commons-lang-2.3.jar
42 COMMONS_HTTPCLIENT_JAR=$(SOLARVER)$/$(INPATH)$/bin$(UPDMINOREXT)$/commons-httpclient-3.1.jar
43 COMMONS_LOGGING_JAR=$(SOLARVER)$/$(INPATH)$/bin$(UPDMINOREXT)$/commons-logging-1.1.1.jar
44 .ELSE
45 COMP=fix_system_commons
46 .ENDIF
48 ANT_FLAGS+=-Dcommons-codec-jar=$(COMMONS_CODEC_JAR) -Dcommons-lang-jar=$(COMMONS_LANG_JAR) -Dcommons-httpclient-jar=$(COMMONS_HTTPCLIENT_JAR) -Dcommons-logging-jar=$(COMMONS_LOGGING_JAR)
50 # creates two files wiki-publisher.oxt and mediawiki_develop.zip, the second one might be used in further build process
51 ALLTAR: $(COMP) ANTBUILD
53 fix_system_commons:
54 @echo "Fix Java Class-Path entry for Apache Commons libraries from system."
55 @$(SED) -r -e "s#(name=\"Class-Path\" value=\").*\"#\1file://$(COMMONS_CODEC_JAR) file://$(COMMONS_LANG_JAR) \
56 file://$(COMMONS_HTTPCLIENT_JAR) file://$(COMMONS_LOGGING_JAR)\"#" -i build.xml
57 @echo "Unbundle Apache Commons libraries from Mediawiki Presentation extension."
58 @$(SED) '/file="..commons/d' -i build.xml
60 .ELSE
61 @all:
62 @echo "MediaWiki Publisher extension disabled."
63 .ENDIF
65 .ELSE
66 pesudo:
67 .ENDIF