2000-01-16 Martin Baulig <martin@home-of-linux.org> We now use `@LIBGTOP_PACKAGE@' as the translation domain so installed `libgtop-1.1.mo' files won't conflict with the ones from LibGTop 1.0 and you can keep both versions installed. * po/Makefile.in.in.in: New file. This is a modified version of the usual `Makefile.in.in' which is created by gettextize; we copy this over `Makefile.in.in' in autogen.sh after gettextize'ing. * autogen.sh: Copy `po/Makefile.in.in.in' over `po/Makefile.in.in' after running `macros/autogen.sh'. * configure.in (LIBGTOP_PACKAGE): AC_SUBST and AC_DEFINE this. * include/glibtop/global.h (_): Use `LIBGTOP_PACKAGE' as our translation domain. 2000-01-16 Martin Baulig <martin@home-of-linux.org> * LIBGTOP-VERSION (LIBGTOP_VERSION_SUFFIX): Added this so you can have your tarballs called `libgtop-1.x.y-snap.tar.gz' or whatever. This only affects the `VERSION' variable and thus how the resulting tarball will be called, but not `LIBGTOP_VERSION_CODE' etc. * Makefile.am: Make `aclocal.m4' also depend on `LIBGTOP-VERSION' when in maintainer-mode.
42 lines
1.3 KiB
Bash
Executable File
42 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
PKG_NAME="Gnome Top Library"
|
|
|
|
(test -f $srcdir/configure.in \
|
|
&& test -f $srcdir/copyright.txt \
|
|
&& test -d $srcdir/sysdeps) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level gnome directory"
|
|
exit 1
|
|
}
|
|
|
|
. $srcdir/macros/autogen.sh
|
|
cp -f $srcdir/po/Makefile.in.in.in $srcdir/po/Makefile.in.in
|
|
|
|
echo ""
|
|
echo " *** IMPORTANT *** "
|
|
echo ""
|
|
echo "This is a development version of LibGTop. You should be using a stable"
|
|
echo "version, which is available at ftp://ftp.gnome.org/pub/GNOME/sources/libgtop/"
|
|
echo "The version you just configured is meant for developers of LibGTop only:"
|
|
echo ""
|
|
echo " * You should not base ANY software on this version of LibGTop."
|
|
echo ""
|
|
echo " *** You should be using LibGTop 1.0.x instead. ***"
|
|
echo ""
|
|
echo "If you are using this source tree from CVS, please run:"
|
|
echo " cvs update -r LIBGTOP_STABLE_1_0"
|
|
echo "now."
|
|
echo ""
|
|
echo "If you're a Solaris user, you should try out the LibGTop 1.1.2 release."
|
|
echo "You can get it from ftp://ftp.home-of-linux.org/pub/libgtop/1.1/"
|
|
echo ""
|
|
echo "If you are using this source tree from CVS, you can use:"
|
|
echo " cvs update -r LIBGTOP_1_1_2_PATCHES"
|
|
echo "to get a bug fixed release of 1.1.2."
|
|
echo ""
|