summaryrefslogtreecommitdiff
path: root/instsetoo_native/inc_openoffice/unix
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 14:42:34 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 14:42:34 +0000
commit1b00c7b00027a17c95ed44d2cdecd2c1f94362fa (patch)
tree704ca3f579d300bcf07b6be954abf4c6f4038414 /instsetoo_native/inc_openoffice/unix
parent45ecfe842dbde71e7e59f4c103ff1baced9cedae (diff)
INTEGRATION: CWS sysui05 (1.1.2); FILE ADDED
2005/02/28 12:54:37 obr 1.1.2.1: #120027# don't use external packages in >>requires<<
Diffstat (limited to 'instsetoo_native/inc_openoffice/unix')
-rw-r--r--instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh6
-rw-r--r--instsetoo_native/inc_openoffice/unix/makefile.mk72
2 files changed, 78 insertions, 0 deletions
diff --git a/instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh b/instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh
new file mode 100644
index 000000000000..f793d0fe2086
--- /dev/null
+++ b/instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+cat > /dev/null
+echo libgnomevfs-2.so.0
+echo libgconf-2.so.4
+
diff --git a/instsetoo_native/inc_openoffice/unix/makefile.mk b/instsetoo_native/inc_openoffice/unix/makefile.mk
new file mode 100644
index 000000000000..df83b1f6dcb0
--- /dev/null
+++ b/instsetoo_native/inc_openoffice/unix/makefile.mk
@@ -0,0 +1,72 @@
+#*************************************************************************
+#
+# $RCSfile: makefile.mk,v $
+#
+#
+# The Contents of this file are made available subject to the terms of
+# either of the following licenses
+#
+# - GNU Lesser General Public License Version 2.1
+#
+# Sun Microsystems Inc., October, 2000
+#
+# GNU Lesser General Public License Version 2.1
+# =============================================
+# Copyright 2000 by Sun Microsystems, Inc.
+# 901 San Antonio Road, Palo Alto, CA 94303, USA
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License version 2.1, as published by the Free Software Foundation.
+#
+# This library 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 for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+#
+# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+#
+# Copyright: 2000 by Sun Microsystems, Inc.
+#
+# All Rights Reserved.
+#
+# Contributor(s): _______________________________________
+#
+#
+#
+#*************************************************************************
+
+PRJ=..$/..
+
+PRJNAME=instsetoo_native
+TARGET=find-requires
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+.INCLUDE : packtools.mk
+
+# ------------------------------------------------------------------
+
+FINDREQUIRES = \
+ $(BIN)$/find-requires-gnome.sh
+
+# --- Targets ------------------------------------------------------
+
+.INCLUDE : target.mk
+
+.IF "$(RPM)" != ""
+
+ALLTAR : $(FINDREQUIRES)
+
+$(FINDREQUIRES) : $$(@:f)
+ @cat $(@:f) | tr -d "\015" > $@
+ @chmod a+x $@
+
+.ENDIF