469c9ac2f9
This commit for the old build system. (Don't bother for components not relevant for Android.) The Android package installer (as invoked through "adb install", from "ant debug install") silently ignores native libraries in app packages (.apk files) whose names don't start with "lib" and end with ".so". The package builder (as invoked through "ant debug") in the SDK gladly includes also thusly named native libraries in the .apk, though. Yay for consistency.
392 lines
15 KiB
Makefile
392 lines
15 KiB
Makefile
#*************************************************************************
|
|
#
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
#
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
#
|
|
# This file is part of OpenOffice.org.
|
|
#
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
# only, as published by the Free Software Foundation.
|
|
#
|
|
# OpenOffice.org 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 Lesser General Public License version 3 for more details
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
# <http://www.openoffice.org/license.html>
|
|
# for a copy of the LGPLv3 License.
|
|
#
|
|
#*************************************************************************
|
|
|
|
PRJ=..$/..
|
|
PRJNAME=sdext
|
|
TARGET=PresenterScreen
|
|
GEN_HID=FALSE
|
|
EXTNAME=PresenterScreen
|
|
|
|
ENABLE_EXCEPTIONS=TRUE
|
|
VISIBILITY_HIDDEN=TRUE
|
|
# survive zip dependencies
|
|
MAXLINELENGTH:=100000
|
|
|
|
# --- Settings ----------------------------------
|
|
|
|
.INCLUDE : rtlbootstrap.mk
|
|
.INCLUDE : settings.mk
|
|
|
|
PACKAGE=com.sun.PresenterScreen-$(PLATFORMID)
|
|
|
|
.IF "$(ENABLE_PRESENTER_SCREEN)" == "NO"
|
|
@all:
|
|
@echo "Presenter Screen build disabled."
|
|
.ELSE
|
|
|
|
.IF "$(L10N_framework)"==""
|
|
.INCLUDE : $(PRJ)$/util$/makefile.pmk
|
|
|
|
DLLPRE=
|
|
common_build_zip=
|
|
|
|
# --- Files -------------------------------------
|
|
|
|
SLOFILES= \
|
|
$(SLO)$/PresenterAccessibility.obj \
|
|
$(SLO)$/PresenterAnimation.obj \
|
|
$(SLO)$/PresenterAnimator.obj \
|
|
$(SLO)$/PresenterBitmapContainer.obj \
|
|
$(SLO)$/PresenterButton.obj \
|
|
$(SLO)$/PresenterCanvasHelper.obj \
|
|
$(SLO)$/PresenterConfigurationAccess.obj \
|
|
$(SLO)$/PresenterController.obj \
|
|
$(SLO)$/PresenterCurrentSlideObserver.obj \
|
|
$(SLO)$/PresenterFrameworkObserver.obj \
|
|
$(SLO)$/PresenterGeometryHelper.obj \
|
|
$(SLO)$/PresenterHelper.obj \
|
|
$(SLO)$/PresenterHelpView.obj \
|
|
$(SLO)$/PresenterNotesView.obj \
|
|
$(SLO)$/PresenterPaintManager.obj \
|
|
$(SLO)$/PresenterPane.obj \
|
|
$(SLO)$/PresenterPaneAnimator.obj \
|
|
$(SLO)$/PresenterPaneBase.obj \
|
|
$(SLO)$/PresenterPaneBorderManager.obj \
|
|
$(SLO)$/PresenterPaneBorderPainter.obj \
|
|
$(SLO)$/PresenterPaneContainer.obj \
|
|
$(SLO)$/PresenterPaneFactory.obj \
|
|
$(SLO)$/PresenterProtocolHandler.obj \
|
|
$(SLO)$/PresenterScreen.obj \
|
|
$(SLO)$/PresenterScrollBar.obj \
|
|
$(SLO)$/PresenterSlidePreview.obj \
|
|
$(SLO)$/PresenterSlideShowView.obj \
|
|
$(SLO)$/PresenterSlideSorter.obj \
|
|
$(SLO)$/PresenterSprite.obj \
|
|
$(SLO)$/PresenterSpritePane.obj \
|
|
$(SLO)$/PresenterTextView.obj \
|
|
$(SLO)$/PresenterTheme.obj \
|
|
$(SLO)$/PresenterTimer.obj \
|
|
$(SLO)$/PresenterToolBar.obj \
|
|
$(SLO)$/PresenterUIPainter.obj \
|
|
$(SLO)$/PresenterViewFactory.obj \
|
|
$(SLO)$/PresenterWindowManager.obj \
|
|
$(SLO)$/PresenterComponent.obj
|
|
|
|
|
|
# --- Library -----------------------------------
|
|
|
|
SHL1TARGET=$(ENFORCEDSHLPREFIX)$(TARGET).uno
|
|
|
|
SHL1STDLIBS= $(CPPUHELPERLIB) \
|
|
$(CPPULIB) \
|
|
$(SALLIB)
|
|
|
|
SHL1DEPN=
|
|
SHL1IMPLIB= i$(SHL1TARGET)
|
|
SHL1LIBS= $(SLB)$/$(TARGET).lib
|
|
SHL1DEF= $(MISC)$/$(SHL1TARGET).def
|
|
SHL1USE_EXPORTS = name
|
|
SHL1RPATH= OXT
|
|
DEF1NAME= $(SHL1TARGET)
|
|
|
|
ZIP2TARGET= presenter-screen_develop
|
|
ZIP2DIR= $(COMMONMISC)
|
|
ZIP2EXT= .zip
|
|
ZIP2FLAGS=-r
|
|
ZIP2LIST= */com.sun.PresenterScreen/*.xhp
|
|
|
|
ZIP1TARGET= presenter-screen
|
|
ZIP1DIR= $(MISC)$/$(TARGET)
|
|
ZIP1EXT= .oxt
|
|
ZIP1FLAGS=-r
|
|
ZIP1LIST= *
|
|
|
|
DESCRIPTION:=$(ZIP1DIR)$/description.xml
|
|
|
|
.IF "$(WITH_LANG)"==""
|
|
FIND_XCU=registry/data
|
|
.ELSE # "$(WITH_LANG)"==""
|
|
FIND_XCU=$(MISC)$/$(EXTNAME)_in$/merge
|
|
.ENDIF # "$(WITH_LANG)"==""
|
|
|
|
COMPONENT_FILES= \
|
|
$(ZIP1DIR)$/registry$/data$/org$/openoffice$/Office$/Jobs.xcu \
|
|
$(ZIP1DIR)$/registry$/data$/org$/openoffice$/Office$/ProtocolHandler.xcu \
|
|
$(ZIP1DIR)$/registry$/schema/org$/openoffice$/Office$/extension$/PresenterScreen.xcs \
|
|
$(ZIP1DIR)$/registry$/data/$/org$/openoffice$/Office$/extension$/PresenterScreen.xcu
|
|
|
|
COMPONENT_BITMAPS= \
|
|
$(ZIP1DIR)$/bitmaps$/BorderTop.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderTopLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderTopRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderBottomLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderBottomRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderBottom.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveTop.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveTopLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveTopRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveBottomLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveBottomRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveBottom.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderActiveBottomCallout.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideTop.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideTopLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideTopRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideBottomLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideBottomRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderCurrentSlideBottom.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/BorderToolbarTop.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderToolbarTopLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderToolbarTopRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderToolbarLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderToolbarRight.png \
|
|
$(ZIP1DIR)$/bitmaps$/BorderToolbarBottom.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/Background.png \
|
|
$(ZIP1DIR)$/bitmaps$/ViewBackground.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlidePreviousNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlidePreviousMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlidePreviousSelected.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlidePreviousDisabled.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonEffectNextNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonEffectNextMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonEffectNextSelected.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonEffectNextDisabled.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonNotesNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonNotesMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonNotesSelected.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonNotesDisabled.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlideSorterNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlideSorterMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlideSorterSelected.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonSlideSorterDisabled.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonHelpNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonHelpMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonHelpSelected.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonHelpDisabled.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowUpNormal.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowUpMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowUpSelected.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowUpDisabled.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowDownNormal.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowDownMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowDownSelected.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarArrowDownDisabled.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarPagerMiddleNormal.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarPagerMiddleMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarThumbTopNormal.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarThumbTopMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarThumbBottomNormal.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarThumbBottomMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarThumbMiddleNormal.png \
|
|
$(ZIP1DIR)$/bitmaps/ScrollbarThumbMiddleMouseOver.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/ButtonPlusNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonPlusMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonPlusSelected.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonPlusDisabled.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonMinusNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonMinusMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonMinusSelected.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonMinusDisabled.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/ButtonFrameLeftNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonFrameCenterNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonFrameRightNormal.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonFrameLeftMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonFrameCenterMouseOver.png \
|
|
$(ZIP1DIR)$/bitmaps$/ButtonFrameRightMouseOver.png \
|
|
\
|
|
$(ZIP1DIR)$/bitmaps$/LabelMouseOverLeft.png \
|
|
$(ZIP1DIR)$/bitmaps$/LabelMouseOverCenter.png \
|
|
$(ZIP1DIR)$/bitmaps$/LabelMouseOverRight.png
|
|
|
|
COMPONENT_IMAGES=\
|
|
$(ZIP1DIR)$/bitmaps$/extension_32.png
|
|
|
|
COMPONENT_MANIFEST= \
|
|
$(ZIP1DIR)$/META-INF$/manifest.xml
|
|
|
|
COMPONENT_LIBRARY= \
|
|
$(ZIP1DIR)$/$(TARGET).uno$(DLLPOST)
|
|
|
|
PLATFORMID:=$(RTL_OS:l)_$(RTL_ARCH:l)
|
|
|
|
COMPONENT_HELP= \
|
|
$(foreach,l,$(alllangiso) $(ZIP1DIR)$/help$/$l$/com.sun.PresenterScreen-$(PLATFORMID)$/presenter.xhp)
|
|
|
|
COMPONENT_DESCRIPTION= \
|
|
$(foreach,lang,$(alllangiso) $(ZIP1DIR)$/description-$(lang).txt)
|
|
|
|
ZIP1DEPS= \
|
|
$(DESCRIPTION) \
|
|
$(COMPONENT_MANIFEST) \
|
|
$(COMPONENT_FILES) \
|
|
$(COMPONENT_BITMAPS) \
|
|
$(COMPONENT_IMAGES) \
|
|
$(COMPONENT_LIBRARY) \
|
|
$(COMPONENT_DESCRIPTION) \
|
|
$(COMPONENT_HELP)
|
|
|
|
LINKNAME:=help
|
|
XHPLINKSRC:=$(ZIP1DIR)/help
|
|
|
|
my_XHPFILES= \
|
|
presenter.xhp
|
|
|
|
LINKLINKFILES= \
|
|
$(PACKAGE)/{$(my_XHPFILES)}
|
|
|
|
# --- Targets ----------------------------------
|
|
.ENDIF # L10N_framework
|
|
|
|
.INCLUDE : target.mk
|
|
.INCLUDE : extension_helplink.mk
|
|
|
|
.IF "$(L10N_framework)"==""
|
|
$(SLO)$/PresenterComponent.obj : $(INCCOM)$/PresenterExtensionIdentifier.hxx
|
|
|
|
$(INCCOM)$/PresenterExtensionIdentifier.hxx : PresenterExtensionIdentifier.txx
|
|
$(TYPE) $< | sed s/UPDATED_PLATFORM/$(PLATFORMID)/ > $@
|
|
|
|
$(COMPONENT_MANIFEST) : $$(@:f)
|
|
@-$(MKDIRHIER) $(@:d)
|
|
+$(TYPE) $< | $(SED) "s/SHARED_EXTENSION/$(DLLPOST)/" > $@
|
|
|
|
$(ZIP1DIR)$/help$/%$/com.sun.PresenterScreen-$(PLATFORMID)$/presenter.xhp : $(COMMONMISC)$/%$/com.sun.PresenterScreen$/presenter.xhp
|
|
@echo creating $@
|
|
@-$(MKDIRHIER) $(@:d)
|
|
$(TYPE) $< | sed "s/PLATFORMID/$(PLATFORMID)/" > $@
|
|
|
|
.IF "$(ZIP1TARGETN)"!=""
|
|
$(ZIP1TARGETN) : $(HELPLINKALLTARGETS)
|
|
|
|
.ENDIF # "$(ZIP1TARGETN)"!=""
|
|
|
|
$(COMPONENT_BITMAPS) : bitmaps$/$$(@:f)
|
|
@-$(MKDIRHIER) $(@:d)
|
|
+$(COPY) $< $@
|
|
|
|
$(COMPONENT_IMAGES) : $(SOLARSRC)$/$(RSCDEFIMG)$/desktop$/res$/$$(@:f)
|
|
@@-$(MKDIRHIER) $(@:d)
|
|
$(COPY) $< $@
|
|
|
|
$(COMPONENT_LIBRARY) : $(DLLDEST)$/$$(@:f)
|
|
@-$(MKDIRHIER) $(@:d)
|
|
+$(COPY) $< $@
|
|
.IF "$(OS)$(CPU)"=="WNTI" && "$(WITH_EXTENSION_INTEGRATION)"!="YES"
|
|
.IF "$(COM)"=="GCC"
|
|
$(GNUCOPY) $(SOLARBINDIR)$/mingwm10.dll $(ZIP1DIR)
|
|
.ELSE
|
|
.IF "$(PACKMS)"!=""
|
|
.IF "$(CCNUMVER)" <= "001399999999"
|
|
$(GNUCOPY) $(PACKMS)$/msvcr71.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(PACKMS)$/msvcp71.dll $(ZIP1DIR)
|
|
.ELSE
|
|
.IF "$(CCNUMVER)" <= "001499999999"
|
|
$(GNUCOPY) $(PACKMS)$/msvcr80.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(PACKMS)$/msvcp80.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(PACKMS)$/msvcm80.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(PACKMS)$/Microsoft.VC80.CRT.manifest $(ZIP1DIR)
|
|
.ELSE
|
|
$(GNUCOPY) $(PACKMS)$/msvcr90.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(PACKMS)$/msvcp90.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(PACKMS)$/msvcm90.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(PACKMS)$/Microsoft.VC90.CRT.manifest $(ZIP1DIR)
|
|
.ENDIF
|
|
.ENDIF
|
|
.ELSE # "$(PACKMS)"!=""
|
|
.IF "$(CCNUMVER)" <= "001399999999"
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcr71.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcp71.dll $(ZIP1DIR)
|
|
.ELSE
|
|
.IF "$(CCNUMVER)" <= "001499999999"
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcr80.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcp80.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcm80.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(SOLARBINDIR)$/Microsoft.VC80.CRT.manifest $(ZIP1DIR)
|
|
.ELSE
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcr90.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcp90.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(SOLARBINDIR)$/msvcm90.dll $(ZIP1DIR)
|
|
$(GNUCOPY) $(SOLARBINDIR)$/Microsoft.VC90.CRT.manifest $(ZIP1DIR)
|
|
.ENDIF
|
|
.ENDIF
|
|
.ENDIF # "$(PACKMS)"!=""
|
|
.ENDIF #"$(COM)"=="GCC"
|
|
.ENDIF #"$(OS)$(CPU)"=="WNTI" && "$(WITH_EXTENSION_INTEGRATION)"!="YES"
|
|
|
|
$(COMPONENT_DESCRIPTION) : $(DESCRIPTION)
|
|
|
|
$(ZIP1DIR)/%.xcu : %.xcu
|
|
@@-$(MKDIRHIER) $(@:d)
|
|
$(GNUCOPY) $< $@
|
|
|
|
$(ZIP1DIR)$/%.xcs : %.xcs
|
|
@@-$(MKDIRHIER) $(@:d)
|
|
$(GNUCOPY) $< $@
|
|
|
|
.INCLUDE .IGNORE : $(ZIP1DIR)_lang_track.mk
|
|
.IF "$(LAST_WITH_LANG)"!="$(WITH_LANG)"
|
|
PHONYDESC=.PHONY
|
|
.ENDIF # "$(LAST_WITH_LANG)"!="$(WITH_LANG)"
|
|
$(DESCRIPTION) $(PHONYDESC) : $$(@:f)
|
|
@-$(MKDIRHIER) $(@:d)
|
|
@echo LAST_WITH_LANG=$(WITH_LANG) > $(ZIP1DIR)_lang_track.mk
|
|
$(GNUCOPY) description-en-US.txt $(ZIP1DIR)/description-en-US.txt
|
|
.IF "$(WITH_LANG)" != ""
|
|
$(XRMEX) -p $(PRJNAME) -i description.xml -o $@ -m $(LOCALIZESDF) -l all
|
|
sed s/UPDATED_PLATFORM/$(PLATFORMID)/ < $@ > $@.new
|
|
mv $@.new $@
|
|
.ELSE
|
|
sed s/UPDATED_PLATFORM/$(PLATFORMID)/ < description.xml > $@
|
|
.ENDIF
|
|
|
|
ALLTAR: $(MISC)/../bin/presenter-screen.oxt
|
|
# hotfix to missing localizations
|
|
.IF "$(WITH_LANG)"!=""
|
|
$(COPY) $(ZIP1DIR)_in/merge/org/openoffice/Office/extension/PresenterScreen.xcu $(ZIP1DIR)/registry/data/org/openoffice/Office/extension/
|
|
cd $(ZIP1DIR);zip -r -u ../../bin/presenter-screen.oxt registry/data/org/openoffice/Office/extension/PresenterScreen.xcu
|
|
.ENDIF
|
|
|
|
.ELSE
|
|
ivo:
|
|
$(ECHO)
|
|
.ENDIF # L10N_framework
|
|
|
|
.ENDIF # "$(ENABLE_PRESENTER_SCREEN)" != "NO"
|