X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=make-dist.sh;h=5ab5bf3a56e90ea0139808556379422ba0936c7d;hb=a1d1b6fcaa983c7f5832436effebeaf0c8068fb8;hp=d974a75d6ad5bc0f63a815002953321375ef72d7;hpb=45eaeadd2ec8aa40dbe794cd6f4b31027a84aa4e;p=ctsim.git diff --git a/make-dist.sh b/make-dist.sh index d974a75..5ab5bf3 100755 --- a/make-dist.sh +++ b/make-dist.sh @@ -1,51 +1,60 @@ #!/bin/sh # Creates debian and system-independent archive files -# Programmer: Kevin Rosenberg based on script used by onShore Development +# Programmer: Kevin M. Rosenberg set -e DEBPKG=ctsim PKG=ctsim VERSION=`sed -n -e "s/${DEBPKG} (\(.*\)-[0-9]).*/\1/p" < debian/changelog |head -1` -echo $VERSION TOPDIR=`basename $PWD` DISTDIR=${PKG}-${VERSION} DEBDIR=${DEBPKG}-${VERSION} +if [! -f docs/${PKG}.htb -o ! -f docs/html/${PKG}_contents.html -o ! -f docs/${PKG}.pdf ]; then + echo "Making documentation" + pushd doc + make all + popd +fi + TAG=upstream_version_`echo $VERSION | tr . _` -echo "(re)tagging with release tag '$TAG'" -cvs -q rtag -d $TAG $PKG -cvs -q tag -F $TAG +#echo "(re)tagging with release tag '$TAG'" +#cvs -q rtag -d $TAG $PKG +#cvs -q tag -F $TAG -# build the tarball -echo "building tarballs" -cd .. +echo "Preparing for archives" +pushd .. rm -f ${PKG}_${VERSION}.tar.gz ${DEBPKG}_${VERSION}.orig.tar.gz rm -rf ${DISTDIR} ${DEBDIR} ${DISTDIR}.zip + +echo "Making archives" cp -a ${TOPDIR} ${DISTDIR} # Remove junk from distribution dir -find ${DISTDIR} -type f -name .cvsignore -exec rm {} \; -find ${DISTDIR} -type d -name CVS | xargs rm -r -find ${DISTDIR}/doc -type f -and -name *.tex -or -name *.aux -or \ - -name *.log -or -name *.out -or -name *.dvi -or \ - -name *~ -or -name ".#*" -or -name "#*#" |xargs rm -f +pushd ${DISTDIR} +make distclean +rm -f `find . -type f -name .cvsignore` +rm -rf `find . -type d -name CVS` +rm -f `find . -type f -name '*~' -or -name '.*~' -or \ + -name '.#*' -or -name '#*#' -or -name '*.fig' -or -name '*.psd'` +rm -rf images copy make-dist.sh make-doc.sh doc stamp-h.in build-stamp \ + configure-stamp +popd # Create original distribution archives rm -rf ${DISTDIR}/debian -cd ${DISTDIR} -make distclean -cd .. GZIP=-9 tar czf ${DISTDIR}.tar.gz ${DISTDIR} -find ${DISTDIR} -type f -and -name *.c -or -name *.h -or -name *.list -or \ - -name Makefile -or -name ChangeLog -or \ - -name COPYRIGHT -or -name TODO -or -name README -or -name INSTALL \ - -or -name NEWS -or -name *.sgml -or -name COPYING* -or -name catalog \ - | xargs unix2dos +unix2dos `find ${DISTDIR} -type f -and -name '*.c' -or -name '*.h' -or \ + -name '*.cpp' -or -name '*.sh' -or -name '*.in' -or \ + -name 'Makefile*' -or -name ChangeLog -or -name COPYRIGHT -or -name TODO -or \ + -name README -or -name INSTALL -or -name NEWS -or -name '*.tex' -or \ + -name '*.hhc' -or -name '*.hhk' -or -name '*.hpj' -or -name '*.ini' -or \ + -name COPYING* -or -name catalog` zip -rq ${DISTDIR}.zip ${DISTDIR} rm -rf ${DISTDIR} @@ -58,16 +67,17 @@ if [ "${DISTDIR}" != "${DEBDIR}" ]; then fi cp -a ${TOPDIR}/debian ${DEBDIR} -# dpkg-source ${DEBDIR} ${PKG}_${VERSION}.orig.tar.gz +echo "Building Debian packages" -cd ${DEBDIR} +pushd ${DEBDIR} dpkg-buildpackage -rfakeroot -kkevin@b9.com #-tc -b -cd .. - +popd +rm -r ${DEBDIR} lintian ${DEBPKG}_${VERSION}-*.changes -mkdir -p /usr/local/share/Packages/${DEBPKG} -# mv ${DEBPKG}_${VERSION}* /usr/local/share/Packages/${DEBPKG} -cd ${TOPDIR} +mkdir -p /usr/local/src/Packages/${DEBPKG} +mv ${DEBPKG}_${VERSION}* /usr/local/src/Packages/${DEBPKG} + +popd exit 0