[jhbuild/jjardon/autotools: 1/3] Use autoreconf instead custom script



commit 33106195512633ee0e6f43111175366c624e8c37
Author: Javier Jardón <jjardon gnome org>
Date:   Wed Oct 16 16:36:46 2013 +0100

    Use autoreconf instead custom script
    
    This means that autotools are required now. Not a big deal taking in
    acount jhbuild is a build tool

 .gitignore        |    1 -
 Makefile.plain    |   51 -----------
 Makefile.windows  |   40 ---------
 autogen.sh        |  239 +++++-----------------------------------------------
 po/Makefile.plain |   10 --
 5 files changed, 23 insertions(+), 318 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 7fde771..f53615f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -29,7 +29,6 @@ mo/
 /jhbuild.desktop
 /jhbuild.desktop.in
 /ltmain.sh
-/Makefile.inc
 /m4/
 /missing
 /mkinstalldirs
diff --git a/autogen.sh b/autogen.sh
index efdf68b..edb13b2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,226 +1,33 @@
-#! /bin/bash
-#
-# JHBuild configuration script.
-#
-# For installation instructions please refer to the JHBuild manual:
-#   yelp /jhbuild-source-dir/doc/C/index.docbook
-#
-# Or refer to the on-line JHBuild manual at:
-#
-#  http://library.gnome.org/devel/jhbuild/stable/getting-started.html.en
-#
-# Usage:
-# ./autogen.sh [OPTION]
-#    Available OPTION are:
-#      --simple-install   Configure without using autotools. This setting is
-#                         set automatically if gnome-common and yelp-tools
-#                         are not installed.
-#      --prefix=PREFIX    Install JHBuild to PREFIX. Defaults to ~/.local
-#
-# If gnome-common and yelp-tools are available, this configuration script
-# will configure JHBuild to install via autotools.
-#
-# If gnome-common and yelp-tools are not available, this configuration
-# script will configure JHBuild to install via a plain Makefile.
-#
-# autogen.sh is used to configure JHBuild because the most common way to obtain
-# JHBuild is via git and a 'configure' should not be checked into git.
-#
-# autogen.sh supports i18n using the package gettext. If gettext is not
-# available english is used. To enable i18n autogen.sh builds mo files from po
-# files using po/Makefile.plain. The mo files are in $srcdir/mo.
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
 
-PKG_NAME=jhbuild
+test -n "$srcdir" || srcdir=`dirname "$0"`
+test -n "$srcdir" || srcdir=.
 
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-test -z "$MAKE" && MAKE=make
+olddir=`pwd`
+cd $srcdir
 
-setup_i18n()
-{
-  # Check msgfmt (from gettext) is installed to provide i18n for this script
-  hash msgfmt 2>&-
-  msgfmtl_available=$?
-
-  # Build mo from po files so i18n works for this script. mo files can't be
-  # checked in to git so they must be built here.
-  if [ $msgfmtl_available -eq 0 ]; then
-    # -s is for silent
-    # -C is for change directory
-    make -s -C $srcdir/po -f Makefile.plain
-  fi
-
-  # Check gettext.sh is installed to provide i18n for this script
-  hash gettext.sh 2>&-
-  gettext_sh_available=$?
-
-  if [ $gettext_sh_available -eq 0 ]; then
-    export TEXTDOMAINDIR=$srcdir/mo
-    export TEXTDOMAIN=jhbuild
-
-    . gettext.sh
-  fi
-
-  # Check gettext is installed to provide i18n for this script
-  hash gettext 2>&-
-  gettext_available=$?
-}
-
-# parse_commandline parses the commandline and sets shell variables accordingly.
-# - sets $enable_autotools if --simple-install specified.
-# - sets shell variables from long form options. e.g if commandline contains
-#   '--prefix=/opt' then shell variable prefix is set to '/opt'. Shell variable
-#   names must start with a letter or underscore and not contain special
-#   characters. Invalid variable names are ignored.
-# parse_commandline is not using getopt as getopt doesn't support the long form
-# on Solaris, BSD and MacOS.
-parse_commandline()
-{
-  enable_autotools=1
-
-  while [ -n "$1" ]; do
-    # substring operations available in all sh?
-    if [ ${1:0:2} = "--" ]; then
-      keyvalue=${1:2}
-      key=${keyvalue%%=*}
-      value=${keyvalue##*=}
-      if [ "$key" = "simple-install" ]; then
-        enable_autotools=0
-      fi
-      echo $key | grep -E '^[A-Za-z_][A-Za-z_0-9]*$' > /dev/null 2>&1
-      if [ $? -eq 0 ]; then
-        eval $key=$value
-      fi
-    fi
-    shift
-  done
-}
-
-# configure JHBuild to build and install without autotools via a plain
-# Makefile. Sets up a Makefile.inc and copies Makefile.plain or
-# Makefile.windows to Makefile
-configure_without_autotools()
-{
-  eval_gettext "Configuring \$PKG_NAME without autotools"; echo
-
-  makefile="$srcdir/Makefile.plain"
-  if [ "x$MSYSTEM" != "x" ]; then
-    makefile="$srcdir/Makefile.windows"
-  fi
-
-  # setup the defaults. The following can changed from the commandline.
-  # e.g. ./autogen.sh --prefix=${HOME}/jhbuildhome
-  [ -z $prefix ] && prefix=${HOME}/.local
-  [ -z $bindir ] && bindir=${prefix}/bin
-  [ -z $datarootdir ] && datarootdir=${prefix}/share
-  [ -z $desktopdir ] && desktopdir=${datarootdir}/applications
-
-  # Check to see if $srcdir/Makefile.inc is writable
-  if [ -f $srcdir/Makefile.inc ]; then
-    if [ ! -w $srcdir/Makefile.inc ]; then
-      eval_gettext  "Unable to create file \$srcdir/Makefile.inc"; echo
-      exit 1
-    fi
-  else
-    if [ ! -w $srcdir ]; then
-      eval_gettext  "Unable to create file \$srcdir/Makefile.inc"; echo
-      exit 1
-    fi
-  fi
-
-  echo "# This file is automatically generated by JHBuild's autogen.sh" \
-    > $srcdir/Makefile.inc
-  echo "# Do NOT edit. This file will be overwritten when autogen.sh is next" \
-       "run." >> $srcdir/Makefile.inc
-  echo "prefix=$prefix" >> $srcdir/Makefile.inc
-  echo "bindir=$bindir" >> $srcdir/Makefile.inc
-  echo "datarootdir=$datarootdir" >> $srcdir/Makefile.inc
-  echo "desktopdir=$desktopdir" >> $srcdir/Makefile.inc
-
-  if [ ! -f $makefile ]; then
-    eval_gettext "Unable to read file \$makefile"; echo
-    exit 1
-  fi
-
-  cp $makefile $srcdir/Makefile || {
-    eval_gettext "Unable to copy \$makefile to \$srcdir/Makefile"
-    echo
-    exit 1
-  }
-
-  eval_gettext "Now type \`make' to compile \$PKG_NAME"; echo
-}
-
-# configure JHBuild to build and install via autotools.
-configure_with_autotools()
-{
-  export PKG_NAME
-  REQUIRED_AUTOCONF_VERSION=2.57 \
-  REQUIRED_AUTOMAKE_VERSION=1.8 \
-  REQUIRED_INTLTOOL_VERSION=0.35.0 \
-  REQUIRED_PKG_CONFIG_VERSION=0.16.0 \
-  gnome-autogen.sh $@
-}
-
-# Check for make. make is required to provide i18n for this script and to
-# build and install JHBuild
-make_from_environment=`echo $MAKE | cut -d' ' -f1`
-hash $make_from_environment 2>&-
-if [ $? -ne 0 ]; then
-  echo "\`$make_from_environment' is required to configure & build $PKG_NAME"
-  exit 1
+AUTORECONF=`which autoreconf`
+if test -z $AUTORECONF; then
+        echo "*** No autoreconf found, please intall it ***"
+        exit 1
 fi
 
-setup_i18n
-if [ $gettext_available -ne 0 ]; then
-  # If gettext is not installed fallback to echo in english
-  gettext() { echo -n $1; }
-  # eval_gettext substitutes variables of the form: \$var
-  eval_gettext()
-  {
-    escaped_string=${1/\'/\\\'}
-    eval echo -n ${escaped_string/\`/\\\`}
-  }
+GNOMEDOC=`which yelp-build`
+if test -z $GNOMEDOC; then
+        echo "*** The tools to build the documentation are not found,"
+        echo "    please intall the yelp-tools package ***"
+        exit 1
 fi
 
-if [ ! -f $srcdir/jhbuild/main.py ]; then
-  eval_gettext "**Error**: Directory \`\$srcdir' does not look like the top-level \$PKG_NAME directory"
-  echo
-  exit 1
+INTLTOOLIZE=`which intltoolize`
+if test -z $INTLTOOLIZE; then
+        echo "*** No intltoolize found, please install the intltool package ***"
+        exit 1
 fi
 
-# Check gnome-common package is installed. gnome-common depends on autoconf,
-# automake and pkgconfig so no need to check them explicitly.
-hash gnome-autogen.sh 2>&-
-gnome_autogen_available=$?
-
-# Check yelp-tools is installed.
-hash yelp-build 2>&-
-yelp_tools_available=$?
+autoreconf --force --install --verbose || exit $?
+intltoolize --automake --copy || exit $?
 
-parse_commandline $*
-
-have_autotools=1
-if [ $gnome_autogen_available -eq 0 -a \
-     $yelp_tools_available -eq 0 -a \
-     $enable_autotools -eq 1 ]; then
-    have_autotools=0
-fi
-# As a hack, force use of autotools if NOCONFIGURE is specified; this
-# allows the gnome-ostree build system to work which doesn't have
-# yelp, but also can't pass options to autogen.sh
-if test -z "$NOCONFIGURE"; then
-    have_autotools=0
-fi
-
-if [ $have_autotools -eq 0 ]; then
-  configure_with_autotools $*
-else
-  if [ $gnome_autogen_available -ne 0 ]; then
-    gettext "gnome-autogen.sh not available"; echo
-  fi
-  if [ $yelp_tools_available -ne 0 ]; then
-    gettext "yelp-tools not available"; echo
-  fi
-  configure_without_autotools
-fi
+cd $olddir
+test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]