Device reinitialized before any command retry ("retryall" label moved)
[mdsms.git] / autogen.sh
index 75602a8..2776969 100755 (executable)
 # Run this to generate all the initial makefiles, etc.
 
 # $Id$
-#
-# $Log$
-# Revision 1.2  1999/06/02 18:26:32  short
-# Makefile target dist-tarZ added for 'compress'-ed archives.
-#
-# Revision 1.1.1.1  1999/05/26 13:06:26  short
-# First alpha release.
-#
-
-CONFDEFS="--enable-maintainer-mode --enable-debug"
-
-if [ -f Makefile ];then touch ChangeLog;make maintainer-clean;fi
-VER="`sed <configure.in -n 's/^AM_INIT_AUTOMAKE(.*, *\([^ ]*\) *)$/\1/p'`"
-echo "Detected version: $VER"
+
+# /lib/gconv/ISO8859-2.so is apparently clashing with EFence. :-(
+CONFDEFS="--enable-maintainer-mode --enable-debug --without-efence"
+
+if [ "$1" = rpm -o "$1" = rpmup ];then
+  ./autogen.sh
+  make
+  make dist
+  cp mdsms-[0-9]*.tar.gz /usr/src/redhat/SOURCES
+  rpm -ba --sign mdsms.spec
+  make dist-tarZ
+  rm /usr/src/redhat/SOURCES/mdsms-[0-9]*.tar.gz
+  mv /usr/src/redhat/SRPMS/mdsms-[0-9]*-*.src.rpm .
+  mv /usr/src/redhat/RPMS/i386/mdsms-[0-9]*-*.i386.rpm .
+  ls -l mdsms-[0-9]*
+  if [ "$1" = rpm ];then exit;fi
+  echo "Uploading $[`cat mdsms-[0-9]*|wc -c`] bytes..."
+# tar cf - mdsms-[0-9]*|ssh twilight ssh atrey.karlin.mff.cuni.cz 'cd WWW/sw\;tar xvvf -'
+  scp -v mdsms-[0-9]* atrey.karlin.mff.cuni.cz:WWW/sw/
+  exit
+fi
+
+# if [ -f Makefile ];then touch ChangeLog;make maintainer-clean;fi
 rm -r -f \
-       install-sh \
-       mkinstalldirs \
-       missing \
-       INSTALL \
-       COPYING \
-       Makefile \
-       Makefile.in \
-       configure \
-       configure.scan \
-       config.guess \
-       config.status \
-       config.sub \
-       config.log \
-       config.h \
-       autoh[0-9]* \
-       config.cache \
-       config.h.in \
-       stamp-h \
-       stamp-h.in \
-       aclocal.m4 \
-       getopt.c \
-       getopt.h \
-       getopt1.c \
-       mdsms-$VER.tar.gz \
-       mdsms-$VER.tar.Z \
-       manfmt \
-       .deps \
-       ChangeLog \
+  `find -name "*~"` \
+  errs* \
+  `find po -type f -not '(' -name POTFILES.in -o -name "*.po" -o -name ".cvsignore" -o -path "po/CVS*" ')'` \
+  intl \
+  install-sh \
+  mkinstalldirs \
+  missing \
+  INSTALL \
+  COPYING \
+  ABOUT-NLS \
+  Makefile \
+  Makefile.in \
+  */Makefile \
+  */Makefile.in \
+  configure \
+  configure.scan \
+  config.guess \
+  config.status \
+  config.sub \
+  config.log \
+  config.h \
+  confdefs.h \
+  conftest* \
+  autoh[0-9]* \
+  config.cache \
+  config.h.in \
+  stamp-h \
+  stamp-h.in \
+  aclocal.m4 \
+  getopt.c \
+  getopt.h \
+  getopt1.c \
+  need-declaration.m4 \
+  strdup.c \
+  usleep.c \
+  memmove.c \
+  mdsms.1 \
+  mdsms.1.in2 \
+  mdsms \
+  mdsms-[0-9]* \
+  mdsms.spec \
+  manfmt \
+  .deps \
+  ChangeLog \
+  *.o \
+  tags \
+  TAGS \
 
 
 if [ "$1" = clean ];then exit;fi
 
-cp ../getopt/getopt{1.c,.{c,h}} .
-aclocal
+  d="`pwd`"
+  (cd $HOME/src/misc
+   (cd getopt
+    cp getopt.c getopt.h getopt1.c $d
+   )
+   (cd macros
+    cp need-declaration.m4 $d
+   )
+   cp strdup.c usleep.c memmove.c $d
+  )
+
+aclocal -I .
+gettextize --copy
 autoheader
 touch ChangeLog
 automake --gnu -c --add-missing
-#--include-deps
 rm -f ChangeLog
-cp ../LGPL2.1 COPYING
+cp $HOME/src/misc/LGPL2.1 COPYING
+ed po/Makefile.in.in <<HERE
+,s/prefix = @/prefix = \$(DESTDIR)@/g
+w
+HERE
 autoheader
 autoconf
 
-if [ "$1" != dist ];then ./configure $CONFDEFS;fi
+if [ "$1" = dist ];then
+  exit
+fi
+./configure $CONFDEFS