diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /sysui/CustomTarget_solaris.mk | |
parent | Initial commit. (diff) | |
download | libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sysui/CustomTarget_solaris.mk')
-rw-r--r-- | sysui/CustomTarget_solaris.mk | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/sysui/CustomTarget_solaris.mk b/sysui/CustomTarget_solaris.mk new file mode 100644 index 000000000..42a0a8a90 --- /dev/null +++ b/sysui/CustomTarget_solaris.mk @@ -0,0 +1,55 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +include $(SRCDIR)/sysui/productlist.mk + +solaris_WORKDIR := $(call gb_CustomTarget_get_workdir,sysui/solaris) +solaris_SRCDIR := $(SRCDIR)/sysui/desktop/solaris + +$(eval $(call gb_CustomTarget_CustomTarget,sysui/solaris)) + +$(eval $(call gb_CustomTarget_register_targets,sysui/solaris,\ +$(foreach product,$(PRODUCTLIST),\ + $(product)/pkginfo \ + $(product)/depend \ + $(product)/mailcap \ + $(product)/copyright \ + $(product)/postinstall \ + $(product)/postremove \ + $(product)/prototype \ + $(product)-desktop-integration.tar.gz) \ +)) + + +$(solaris_WORKDIR)/%/pkginfo: $(solaris_SRCDIR)/pkginfo + cat $< | tr -d "\015" | sed -e "s/%PRODUCTNAME/$(PRODUCTNAME.$*) $(PRODUCTVERSION)/g" -e "s/%pkgprefix/$*/g" > $@ + +$(solaris_WORKDIR)/%/depend: $(solaris_SRCDIR)/depend + cat $< | tr -d "\015" | sed -e "s/%PRODUCTNAME/$(PRODUCTNAME.$*) $(PRODUCTVERSION)/g" -e "s/%pkgprefix/$*/g" > $@ + +$(solaris_WORKDIR)/%/mailcap: $(solaris_SRCDIR)/mailcap + cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$*)/g" > $@ + +$(solaris_WORKDIR)/%/copyright: $(solaris_SRCDIR)/copyright + cat $< | tr -d "\015" > $@ + +$(solaris_WORKDIR)/%/postinstall: $(solaris_SRCDIR)/postinstall + cat $< | tr -d "\015" > $@ + +$(solaris_WORKDIR)/%/postremove: $(solaris_SRCDIR)/postremove + cat $< | tr -d "\015" > $@ + +$(solaris_WORKDIR)/%/prototype: $(solaris_SRCDIR)/prototype + cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$*)/g" -e "s_%SOURCE_$(call gb_CustomTarget_get_workdir,sysui/share)/$*_g" -e "s/%ICONPREFIX/$(UNIXFILENAME.$*)/g" > $@ + +$(solaris_WORKDIR)/%-desktop-integration.tar.gz: $(solaris_WORKDIR)/%/copyright $(solaris_WORKDIR)/%/pkginfo $(solaris_WORKDIR)/%/depend $(solaris_WORKDIR)/%/mailcap $(solaris_WORKDIR)/%/postinstall $(solaris_WORKDIR)/%/postremove $(solaris_WORKDIR)/%/prototype $(call gb_CustomTarget_get_workdir,sysui/share)/%/openoffice.org.xml +# pkgmk -l 1073741824 -r $(solaris_WORKDIR) -f $(solaris_WORKDIR)/$*/prototype -o -d $(solaris_WORKDIR) ARCH=all VERSION=$(PKGVERSION.$*) + fakeroot $(GNUTAR) -cf - -C $(solaris_WORKDIR) $* | gzip > $@ + +# vim: set noet sw=4 ts=4: |