[Commit] gwaterfall Makefile.am,NONE,1.1 autogen.sh,NONE,1.1 configure.ac,NONE,1.1

Noah Levitt commit@keithp.com
Sun, 27 Apr 2003 19:45:47 -0700


Committed by: nlevitt

Update of /local/src/CVS/gwaterfall
In directory home.keithp.com:/tmp/cvs-serv11286

Added Files:
	Makefile.am autogen.sh configure.ac 
Log Message:
Initial checkin.


--- NEW FILE: Makefile.am ---
## 
## $Id: Makefile.am,v 1.1 2003/04/28 02:45:45 nlevitt Exp $
## 
## Copyright (c) 2003 Noah Levitt
## 
## This program is free software; the author gives unlimited permission to
## copy and/or distribute it, with or without modifications, as long as
## this notice is preserved.
## 
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
## implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## 

SUBDIRS = src

--- NEW FILE: autogen.sh ---
#! /bin/sh
#
# $Id: autogen.sh,v 1.1 2003/04/28 02:45:45 nlevitt Exp $
#
# runs autotools to create ./configure and friends
#

PROJECT=waterfall

srcdir=`dirname "$0"`
test -z $srcdir && srcdir=.

origdir=`pwd`
cd "$srcdir"

if test -z "$AUTOGEN_SUBDIR_MODE" && test -z "$*"
then
  echo "I am going to run ./configure with no arguments - if you wish "
  echo "to pass any to it, please specify them on the $0 command line."
fi

# Use the versioned executables if available.
aclocal=aclocal-1.7
automake=automake-1.7
$aclocal  --version </dev/null >/dev/null 2>&1 || aclocal=aclocal
$automake --version </dev/null >/dev/null 2>&1 || automake=automake


rm -f config.guess config.sub depcomp install-sh missing mkinstalldirs
rm -f config.cache acconfig.h
rm -rf autom4te.cache

set_option=':'
test -n "${BASH_VERSION+set}" && set_option='set'

$set_option -x

$aclocal $ACLOCAL_FLAGS                  || exit 1
libtoolize --force --copy                || exit 1
autoheader                               || exit 1
$automake --foreign --add-missing --copy || exit 1
autoconf                                 || exit 1
cd "$origdir"                            || exit 1

if test -z "$AUTOGEN_SUBDIR_MODE"
then
  "$srcdir/configure" "$@" || exit 1
  $set_option +x
fi

exit 0


--- NEW FILE: configure.ac ---
dnl 
dnl $Id: configure.ac,v 1.1 2003/04/28 02:45:45 nlevitt Exp $
dnl 
dnl Copyright (c) 2003 Noah Levitt
dnl 
dnl This program is free software; the author gives unlimited permission to
dnl copy and/or distribute it, with or without modifications, as long as
dnl this notice is preserved.
dnl 
dnl This program is distributed in the hope that it will be useful, but
dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
dnl 

AC_PREREQ([2.50])
AC_INIT([waterfall], [0.1])
AM_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([waterfall], [0.1])

# checks for progs
AC_PROG_LIBTOOL

# no need to check for fontconfig, xft brings it in
PKG_CHECK_MODULES(WATERFALL, gtk+-2.0 >= 2.2.0 xft >= 2.0.0)

AC_SUBST(WATERFALL_CFLAGS)
AC_SUBST(WATERFALL_LIBS)

AC_OUTPUT([Makefile
           src/Makefile])