From: Kevin M. Rosenberg Date: Fri, 3 May 2002 07:37:13 +0000 (+0000) Subject: r1880: *** empty log message *** X-Git-Tag: debian-4.5.3-3~312 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=a01d4e203e2be95bce136ef87f9c847ecceb54ef r1880: *** empty log message *** --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 91716e0..d268248 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -docs = ctsim.tex texhelp.sty psbox.tex logo.eps logo.gif ctsim-sgp.tex ctsim-concepts.tex ctsim-gui.tex ctsim-install.tex ctsim-textui.tex ctsim-web.tex alphacalc.eps alphacalc.gif divergent.eps divergent.gif equiangular.eps equiangular.gif equilinear.eps equilinear.gif scangeometry.eps scangeometry.gif tex2rtf.ini ctsim.hpj bullet.bmp verbatim.sty mytitle.sty makeidx.sty mysober.sty fancyhea.sty ctsim-latex.bib ctsim-tex2rtf.bib +docs := ctsim.tex texhelp.sty psbox.tex logo.eps logo.gif ctsim-sgp.tex ctsim-concepts.tex ctsim-gui.tex ctsim-install.tex ctsim-textui.tex ctsim-web.tex alphacalc.eps alphacalc.gif divergent.eps divergent.gif equiangular.eps equiangular.gif equilinear.eps equilinear.gif scangeometry.eps scangeometry.gif tex2rtf.ini ctsim.hpj bullet.bmp verbatim.sty mytitle.sty makeidx.sty mysober.sty fancyhea.sty ctsim-latex.bib ctsim-tex2rtf.bib pkg=ctsim @@ -42,7 +42,7 @@ htmlhelp: $(docs) rm -f $(pkg)*.html $(pkg).hhp $(pkg).hhc $(pkg).hhk $(pkg).zip cp $(pkg)-tex2rtf.bib $(pkg).bib tex2rtf $(pkg).tex $(pkg).html -html > /dev/null - zip $(pkg).zip *.html *.gif $(pkg).hh[pck] + zip -q $(pkg).zip *.html *.gif $(pkg).hh[pck] mv $(pkg).zip $(pkg).htb html: $(docs) diff --git a/doc/Makefile.in b/doc/Makefile.in index 3bf10ea..046943d 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -90,13 +90,13 @@ wxcflags = @wxcflags@ wxconfig = @wxconfig@ wxlibs = @wxlibs@ -docs = ctsim.tex texhelp.sty psbox.tex logo.eps logo.gif ctsim-sgp.tex ctsim-concepts.tex ctsim-gui.tex ctsim-install.tex ctsim-textui.tex ctsim-web.tex alphacalc.eps alphacalc.gif divergent.eps divergent.gif equiangular.eps equiangular.gif equilinear.eps equilinear.gif scangeometry.eps scangeometry.gif tex2rtf.ini ctsim.hpj bullet.bmp verbatim.sty mytitle.sty makeidx.sty mysober.sty fancyhea.sty ctsim-latex.bib ctsim-tex2rtf.bib +docs := ctsim.tex texhelp.sty psbox.tex logo.eps logo.gif ctsim-sgp.tex ctsim-concepts.tex ctsim-gui.tex ctsim-install.tex ctsim-textui.tex ctsim-web.tex alphacalc.eps alphacalc.gif divergent.eps divergent.gif equiangular.eps equiangular.gif equilinear.eps equilinear.gif scangeometry.eps scangeometry.gif tex2rtf.ini ctsim.hpj bullet.bmp verbatim.sty mytitle.sty makeidx.sty mysober.sty fancyhea.sty ctsim-latex.bib ctsim-tex2rtf.bib pkg = ctsim EXTRA_DIST = $(docs) html -CLEANFILES = $(pkg).ps $(pkg)*.html $(pkg).hhc $(pkg).hhp $(pkg).hhk $(pkg).bib $(pkg).zip *.aux *.log *~ \#*~ \#*\# \.*~ +CLEANFILES = $(pkg).ps $(pkg)*.html $(pkg).hhc $(pkg).hhp $(pkg).hhk $(pkg).bib $(pkg).zip *.aux *.log *~ \#*~ \#*\# \.*~ $(pkg).ilg $(pkg).ind mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h @@ -239,7 +239,7 @@ htmlhelp: $(docs) rm -f $(pkg)*.html $(pkg).hhp $(pkg).hhc $(pkg).hhk $(pkg).zip cp $(pkg)-tex2rtf.bib $(pkg).bib tex2rtf $(pkg).tex $(pkg).html -html > /dev/null - zip $(pkg).zip *.html *.gif $(pkg).hh[pck] + zip -q $(pkg).zip *.html *.gif $(pkg).hh[pck] mv $(pkg).zip $(pkg).htb html: $(docs) diff --git a/doc/ctsim.htb b/doc/ctsim.htb index aad41bf..ca9aab3 100644 Binary files a/doc/ctsim.htb and b/doc/ctsim.htb differ diff --git a/make-dist.sh b/make-dist.sh index ece2de0..536fd69 100755 --- a/make-dist.sh +++ b/make-dist.sh @@ -22,30 +22,31 @@ TAG=upstream_version_`echo $VERSION | tr . _` # build the tarball echo "building tarballs" -cd .. +pushd .. rm -f ${PKG}_${VERSION}.tar.gz ${DEBPKG}_${VERSION}.orig.tar.gz rm -rf ${DISTDIR} ${DEBDIR} ${DISTDIR}.zip 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} -type f -name *~ -or -name ".#*" -or -name "#*#" |xargs rm -f -find ${DISTDIR}/doc -type f -and -name *.tex -or -name *.aux -or \ - -name *.log -or -name *.out -or -name *.dvi | xargs rm -f +pushd ${DISTDIR} +make distclean +popd +rm -f `find ${DISTDIR} -type f -name .cvsignore` +rm -rf `find ${DISTDIR} -type d -name CVS` +rm -f `find ${DISTDIR} -type f -name '*~' -or -name '.*~' -or \ + -name '.#*' -or -name '#*#'` # Create original distribution archives rm -rf ${DISTDIR}/debian -cd ${DISTDIR} +pushd ${DISTDIR} make distclean -cd .. +popd 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 Makefile -or -name ChangeLog -or -name COPYRIGHT -or -name TODO -or \ + -name README -or -name INSTALL -or -name NEWS -or -name '*.tex' -or \ + -name COPYING* -or -name catalog` zip -rq ${DISTDIR}.zip ${DISTDIR} rm -rf ${DISTDIR} @@ -60,14 +61,15 @@ cp -a ${TOPDIR}/debian ${DEBDIR} # dpkg-source ${DEBDIR} ${PKG}_${VERSION}.orig.tar.gz -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/src/Packages/${DEBPKG} mv ${DEBPKG}_${VERSION}* /usr/local/src/Packages/${DEBPKG} -cd ${TOPDIR} + +popd exit 0