summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2011-07-08 12:01:56 +0200
committerPetr Mladek <pmladek@suse.cz>2011-07-11 20:30:31 +0200
commit8124bdf39b719c66e61355c0bc64f8235c4fbec0 (patch)
treea7a8f52492191bdea7e142358698fab5a2081817 /Makefile.in
parent19111fe556a28befac2bc364fd4d8b5ec5c8c348 (diff)
better support for distro packaging
This is port from the build repo. The main differences are: + splits package-ooo into several scripts (bin/distro-install-*) + renames many variables to avoid OOO prefix and to better fit the variables produced by the current bootstrap configure.in + uses OOO_VENDOR from bootstrap/configure.in to add distro specific hacks; the conditions have been updated only for "Novell, inc." + install most of the desktop integration from sysui using sysui/desktop/share/create_tree.sh + do not install two extra templates: $OOINSTBASE/basis$VERSION/share/template/en-US/forms/resume.ott $OOINSTBASE/basis$VERSION/share/template/en-US/officorr/project-proposal.ott should get merged with other templates + do not install pyunorc-update64; it is needed only when you want to run 32-bit LO on 64-bit system; is anyone using it? + do not call install-dictionaries: + do not call build-galleries: is anyone using them? + do not install ootool and ooconfig is anyone using them? are they still working? Signed-off-by: Michael Meeks <michael.meeks@novell.com> Signed-off-by: Miklos Vajna <vmiklos@frugalware.org> Signed-off-by: Bjoern Michaelsen <bjoern.michaelsen@gmail.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index ced0ed2bfe7f..128b2d6e88a0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -20,11 +20,17 @@ all: Makefile dmake/dmake@EXEEXT@ src.downloaded
install:
@. ./*[Ee]nv.[Ss]et.sh && \
- echo "Installing in $${libdir:-@libdir@}/@INSTALL_DIRNAME@..." && \
- ooinstall "$${libdir:-@libdir@}/@INSTALL_DIRNAME@" && \
+ echo "Installing in @INSTALLDIR@..." && \
+ ooinstall "@INSTALLDIR@" && \
echo "" && \
echo "Installation finished, you can now execute:" && \
- echo "$${libdir:-@libdir@}/@INSTALL_DIRNAME@/program/soffice"
+ echo "@INSTALLDIR@/program/soffice"
+
+distro-pack-install: install
+ ./bin/distro-install-clean-up
+ ./bin/distro-install-desktop-integration
+ ./bin/distro-install-sdk
+ ./bin/distro-install-file-lists
dev-install:
@. ./*[Ee]nv.[Ss]et.sh && \