1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
#!/bin/sh
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
datadir=@datadir@
sysconfdir=@sysconfdir@
sharedstatedir=@sharedstatedir@
localstatedir=@localstatedir@
libdir=@libdir@
infodir=@infodir@
mandir=@mandir@
includedir=@includedir@
features=@FEATURES@
pkgdatadir=${datadir}/@PACKAGE@
pkglibdir=${libdir}/@PACKAGE@
pkgincludedir=${includedir}/@PACKAGE@
plugindir=${pkgdatadir}/plugins
MODULE_VERSION=@PACKAGE@-@VERSION@
module_dirs="$libdir"
#and because these might come in handy for debugging and sanity
devversion='-MR2-22
# stolen from gnome-libs who stoled it from autoconf
if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
ac_n= ac_c='
' ac_t=' '
else
ac_n=-n ac_c= ac_t=
fi
else
ac_n= ac_c='\c' ac_t=
fi
usage()
{
exit_code=$1
cat <<EOF
Usage: cronosII-config [OPTION]
Generic options
--version output gnome version information.
--help display this help and exit.
--features features that Cronos II was compiled with
--dev build reference for developers
Install directories cronosII was configured to
--prefix --mandir --includedir --datadir --plugindir
EOF
}
if test $# -eq 0; then
usage 1
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $1 in
--version)
echo @PACKAGE@ @VERSION@
exit 0
;;
--dev)
echo @PACKAGE@ @VERSION@
exit 0
;;
--features)
echo $features
exit 0
;;
--prefix)
echo $prefix
exit 0
;;
--mandir)
echo $mandir
exit 0
;;
--includedir)
echo $includedir
exit 0
;;
--datadir)
echo $pkgdatadir
exit 0
;;
--plugindir)
echo $plugindir
exit 0
;;
--help)
usage 0
;;
--*)
usage 1
;;
*)
if $error; then
echo Unknown option \`$0\' 1>&2
fi
;;
esac
shift
done
if test -z "$all_flags" || test "x$all_flags" = "x "; then
exit 1
fi
exit 0
|