2013-04-27 14:27:51 +02:00
|
|
|
# -*- 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/.
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Package_Package,instsetoo_native_setup,$(call gb_CustomTarget_get_workdir,instsetoo_native/setup)))
|
|
|
|
|
Start hacking --enable-canonical-installation-tree-structure back into shape
Had been totaly broken by the recent changes. (Which is fine, it is
just an experimental hack anyway, I am not sure whether it will ever
be used in anger. Just a pet peeve of mine, I dislike seeing
libraries, configuration files, resources etc mixed together in one
"program" folder, especially on OS X, where the convention is to have
app-specific dylibs and frameworks in "Frameworks", and resource files
in "Resources". But this is not any requirement as such; there are
apps in the Mac App Store that blatantly "break" this convention.)
Basically, replace uses of gb_PROGRAMDIRNAME and
gb_Package_PROGRAMDIRNAME with more specific LIBO_FOO_FOLDER, which
for normal builds all expand to the same "program" anyway.
Change-Id: I16c2b3351caa00e251e229aafbccb8346042d3c1
2013-09-25 20:42:34 +02:00
|
|
|
$(eval $(call gb_Package_add_files,instsetoo_native_setup,$(LIBO_ETC_FOLDER),\
|
2013-06-21 22:29:38 +02:00
|
|
|
$(call gb_Helper_get_rcfile,bootstrap) \
|
|
|
|
$(call gb_Helper_get_rcfile,fundamental) \
|
2013-10-28 16:08:30 +01:00
|
|
|
$(if $(filter DESKTOP,$(BUILD_TYPE)),$(if $(filter-out MACOSX,$(OS)), \
|
|
|
|
$(call gb_Helper_get_rcfile,redirect))) \
|
2013-11-26 19:38:01 +01:00
|
|
|
$(call gb_Helper_get_rcfile,setup) \
|
2013-11-26 19:34:46 +01:00
|
|
|
$(call gb_Helper_get_rcfile,soffice) \
|
2014-09-16 16:08:05 +02:00
|
|
|
$(call gb_Helper_get_rcfile,louno) \
|
2013-06-21 22:29:38 +02:00
|
|
|
$(call gb_Helper_get_rcfile,version) \
|
2013-04-28 11:35:35 +02:00
|
|
|
))
|
|
|
|
|
2013-04-27 14:27:51 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|