summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAli Abdallah <ali@ali-xfce.org>2009-10-21 11:53:09 +0200
committerAli Abdallah <ali@ali-xfce.org>2009-10-21 11:53:09 +0200
commit66b2ea467383ca4b85ac675f4d4c9f1e8fa97637 (patch)
treef59a5976d6e9585be2d96e6c51b4ba9d03879999 /autogen.sh
parent1802ee7aa0b0112dc89ae767f7efe8254fb5c344 (diff)
downloadixfce4-power-manager-66b2ea467383ca4b85ac675f4d4c9f1e8fa97637.tar.gz
Support for silent build+get rid of the LINGUAS file
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh51
1 files changed, 9 insertions, 42 deletions
diff --git a/autogen.sh b/autogen.sh
index 8133da63..6bc0c8a4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,53 +1,20 @@
#!/bin/sh
#
-# vi:set et ai sw=2 sts=2 ts=2: */
-#
-# Copyright (c) 2007-2009 Jannis Pohlmann <jannis@xfce.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# 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 Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General
-# Public License along with this library; if not, write to the
-# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
+# Copyright (c) 2002-2009
+# The Xfce development team. All rights reserved.
+#
+# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
+
+export XDT_AUTOGEN_REQUIRED_VERSION="4.7.0"
(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/.
+ Please install the xfce4-dev-tools package first, available from
+ http://xfce.org/~benny/projects/xfce4-dev-tools/.
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`
-if test -d .git; then
- revision=$(git rev-parse --short HEAD 2>/dev/null)
-else
- revision="Unknown"
-fi
-sed -e "s/@LINGUAS@/${linguas}/g" \
- -e "s/@REVISION@/${revision}/g" \
- < "configure.ac.in" > "configure.ac"
-
-exec xdt-autogen $@
-
+xdt-autogen $@