summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/.cvsignore3
-rw-r--r--bin/ChangeLog16
-rw-r--r--bin/Makefile.am15
-rw-r--r--bin/gnome-autogen.sh.in30
4 files changed, 0 insertions, 64 deletions
diff --git a/bin/.cvsignore b/bin/.cvsignore
deleted file mode 100644
index 161a1f68..00000000
--- a/bin/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile.in
-Makefile
-gnome-autogen.sh
diff --git a/bin/ChangeLog b/bin/ChangeLog
deleted file mode 100644
index 9f3fb24e..00000000
--- a/bin/ChangeLog
+++ /dev/null
@@ -1,16 +0,0 @@
-2000-11-21 Martin Baulig <martin@home-of-linux.org>
-
- * gnome-autogen.sh.in: New file. Autogen gnome-autogen.sh
- from it; added GNOME_COMMON_DATA_DIR and make it actually
- work.
-
-2000-11-20 Martin Baulig <baulig@suse.de>
-
- * gnome-autogen.sh: Initialize GNOME_DATADIR from
- GNOME_DIR if set before trying gnome-config.
-
-2000-05-29 Martin Baulig <baulig@suse.de>
-
- * gnome-autogen.sh: New file. Moved here from
- the `macros' directory.
-
diff --git a/bin/Makefile.am b/bin/Makefile.am
deleted file mode 100644
index 36bff37e..00000000
--- a/bin/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-bin_SCRIPTS = gnome-autogen.sh
-
-## We create gnome-autogen.sh here and not from configure because we want
-## to get the paths expanded correctly. Macros like srcdir are given
-## the value NONE in configure if the user doesn't specify them (this
-## is an autoconf feature, not a bug).
-gnome-autogen.sh: gnome-autogen.sh.in Makefile
-## Use sed and then mv to avoid problems if the user interrupts.
- sed -e 's#\@datadir\@#$(datadir)#g' \
- < $(srcdir)/gnome-autogen.sh.in > gnome-autogen.tmp \
- && mv gnome-autogen.tmp gnome-autogen.sh
-
-EXTRA_DIST = gnome-autogen.sh.in
-
-
diff --git a/bin/gnome-autogen.sh.in b/bin/gnome-autogen.sh.in
deleted file mode 100644
index cb8b68bd..00000000
--- a/bin/gnome-autogen.sh.in
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-if test -z "USE_GNOME2_MACROS" ; then
- USE_GNOME2_MACROS=0
-fi
-
-if test "$USE_GNOME2_MACROS" = 1 ; then
- if test -z "$GNOME2_DIR" ; then
- GNOME_COMMON_DATADIR="@datadir@"
- else
- GNOME_COMMON_DATADIR="$GNOME2_DIR/share"
- fi
- GNOME_COMMON_MACROS_DIR="$GNOME_COMMON_DATADIR/aclocal/gnome2-macros"
-else
- if test -z "$GNOME_DIR" ; then
- GNOME_COMMON_DATADIR="@datadir@"
- else
- GNOME_COMMON_DATADIR="$GNOME_DIR/share"
- fi
- GNOME_COMMON_MACROS_DIR="$GNOME_COMMON_DATADIR/aclocal/gnome-macros"
-fi
-
-export GNOME_COMMON_DATADIR
-export GNOME_COMMON_MACROS_DIR
-
-ACLOCAL_FLAGS="-I $GNOME_COMMON_MACROS_DIR $ACLOCAL_FLAGS"
-export ACLOCAL_FLAGS
-
-. $GNOME_COMMON_MACROS_DIR/autogen.sh
-