summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJasper Huijsmans <jbhuijsmans@home.nl>2008-01-05 13:55:35 +0000
committerJasper Huijsmans <jbhuijsmans@home.nl>2008-01-05 13:55:35 +0000
commitfba4a838e1e0a1bfd0943d837295ce816b3d1de5 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /autogen.sh
parentc8a4e2844cf39061d00ed114fbcb5c0b1f7a4817 (diff)
downloadxfce4-appfinder-fba4a838e1e0a1bfd0943d837295ce816b3d1de5.tar.gz
Remove everything from trunk, before adding my rewrite.
(Old svn revision: 26536)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index b0bf71a..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-#
-# $Id$
-#
-# Copyright (c) 2002-2005
-# The Xfce development team. All rights reserved.
-#
-# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
-#
-
-(type xdt-autogen) >/dev/null 2>&1 || {
- cat >&2 <<EOF
-autogen.sh: You don't seem to have the Xfce development tools installed on
- your system, which are required to build this software.
- Please install the xfce4-dev-tools package first, it is available
- from http://www.xfce.org/.
-EOF
- exit 1
-}
-
-# verify that po/LINGUAS is present
-(test -f po/LINGUAS) >/dev/null 2>&1 || {
- cat >&2 <<EOF
-autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
- or try to checkout again.
-EOF
- exit 1
-}
-
-# substitute revision and linguas
-linguas=`sed -e '/^#/d' po/LINGUAS`
-revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'`
-sed -e "s/@LINGUAS@/${linguas}/g" \
- -e "s/@REVISION@/${revision}/g" \
- < "configure.in.in" > "configure.in"
-
-exec xdt-autogen $@
-
-# vi:set ts=2 sw=2 et ai: