#!/bin/sh # $MirOS: contrib/hosted/tg/deb/cvs/debian/README.source,v 1.17 2013/07/18 20:08:25 tg Exp $ #- # The extracted .orig.tar.gz is kept in CVS, in the origtgz branch # with appropriate tags. Changes are directly applied to the code, # as checked out from CVS, and will end up as "direct patches with # no patch system", this is by design. When releasing, configure.in # AC_INIT call must be touched to change the version number, then # this script must be run to regenerate the autoconf/automake files. # For that, there are some dependencies: # sudo apt-get install autoconf2.59 automake1.9 # # The patchlevel is kept in configure.in (and regenerated as below). # MirDebian-11 is in sync with MirOS-0AB3.1 revision. # # The patches should be kept in sync with those in The MirPorts Framework: # Vcs-CVS: :ext:_anoncvs@anoncvs.mirbsd.org:/cvs ports/devel/cvs/patches # Vcs-Browser: http://cvs.mirbsd.de/ports/devel/cvs/patches/ # The gist of the patches should also be in sync with MirBSD base: # Vcs-CVS: :ext:_anoncvs@anoncvs.mirbsd.org:/cvs src/gnu/usr.bin/cvs # Vcs-Browser: http://cvs.mirbsd.de/src/gnu/usr.bin/cvs/ set -x cd "$(dirname "$0")/.." rm -f config.h.in configure rv=0 #aclocal-1.9 -I m4 || rv=$? autoheader2.59 || rv=$? automake-1.9 || rv=$? autoconf2.59 || rv=$? exit $rv