summaryrefslogtreecommitdiff
path: root/doc/usage.txt
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-08-22 12:05:30 +0000
committernobody <nobody@localhost>2000-08-22 12:05:30 +0000
commit04da4aa54721b1c13d89520e9af258bbf4a92ab4 (patch)
tree3b4824784cd30983db4a6ae1f38db287d5815941 /doc/usage.txt
parent060657ee03b4f7a0000d5d22adb4eb0d97969dfe (diff)
downloadshared-mime-info-BONOBO_0_26.tar.gz
This commit was manufactured by cvs2svn to create tag 'BONOBO_0_26'.BONOBO_0_26
svn path=/tags/BONOBO_0_26/; revision=1371
Diffstat (limited to 'doc/usage.txt')
-rw-r--r--doc/usage.txt67
1 files changed, 0 insertions, 67 deletions
diff --git a/doc/usage.txt b/doc/usage.txt
deleted file mode 100644
index 99175862..00000000
--- a/doc/usage.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-This module is intended especially for people who want to
-develop GNOME Applications outside of the GNOME CVS tree
-(of cause, it also works if you develop inside of GNOME CVS).
-
-The idea is to install everything from the `macros/' and
-to provide a gnome-autogen.sh script which is similar to
-the one from the macros dir.
-
-Basically all we need to do is to make sure that the macros
-in the `macros/' dir work with all versions of their package
-(I mean, foo.m4 needs to work with all versions of foo).
-
-We only need to re-release gnome-common when any of the
-macros have changed which doesn't happen too often.
-
-So, here's what you have to do to use it:
-
-1.) You need to compile and install gnome-common like any
- normal package.
-
-2.) You don't need to have a `macros/' dir in your package,
- this stuff is going to replace it.
-
-3.) In your autogen.sh use this:
-
- ---
- . `gnome-config --bindir`/gnome-autogen.sh
- ---
-
- instead of
-
- ---
- . macros/autogen.sh
- ---
-
-4.) In you configure.in, remove the
-
- ---
- AM_ACLOCAL_INCLUDE(macros)
- ---
-
- and replace it with
-
- ---
- GNOME_COMMON_INIT
- ---
-
-That's it. Now your app uses the macros which are installed
-from gnome-common.
-
-[This is only intended for "hackers":
-
- If you want to use GNOME 2.0, you can use
-
- ---
- USE_GNOME_2_MACROS=1 . `gnome-config --bindir`/gnome-autogen.sh
- ---
-
- in your autogen.sh to get rid of the `hack-macros/' dir.
-]
-
-Comments, Questions, etc. are welcome :)
-
-
-May 29, 2000
-Martin Baulig <martin@suse.de>
-