From: Kevin M. Rosenberg Date: Sun, 5 May 2002 02:07:08 +0000 (+0000) Subject: r1928: *** empty log message *** X-Git-Tag: v1.6.1~412 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=742e02bb6d9b6eef1206a450f18a04b7652942d9;p=uffi.git r1928: *** empty log message *** --- diff --git a/cvsbp-prepare b/cvsbp-prepare index cd9155b..4c32770 100755 --- a/cvsbp-prepare +++ b/cvsbp-prepare @@ -1,9 +1,5 @@ #!/bin/bash -# Clean checked out CVS directory -rm -f upload.sh make-dist.sh make-doc.sh cvsbp-prepare -rm -f `find . -type f -name .cvsignore` - # Try to copy documentation from Work dir CWD=`pwd` BASENAME=`basename ${CWD}` @@ -12,10 +8,15 @@ DOCDIR=/usr/local/src/Work/${BASEDIR}/doc if [ -d ${DOCDIR} -a -d doc ]; then echo "Copying documentation" - cp -a ${DOCDIR}/html ${DOCDIR}/*pdf doc/. - echo "Unable to copy documentation" + cp -a ${DOCDIR}/html ${DOCDIR}/*.pdf doc/. +else + echo "Unable to find documentation directory" fi +# Clean checked out CVS directory +rm -f upload.sh make-dist.sh make-doc.sh cvsbp-prepare +rm -f `find . -type f -name .cvsignore` + # Try to build documentation # Not used because PDF created at difference times or places will not match #if [ -f doc/Makefile ]; then diff --git a/debian/changelog b/debian/changelog index 029424e..e99e8f6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ cl-uffi (0.4.4-7) unstable; urgency=low - * Modified make-dist.sh to use cvs-buildpackage. + * Modified make-dist.sh to use cvs-buildpackage, added options + * Cleaned debian/rules * First version to upload. (closes: #145723) -- Kevin Rosenberg Sat, 4 May 2002 16:03:11 -0600 diff --git a/debian/rules b/debian/rules index c6900c9..0cc9232 100755 --- a/debian/rules +++ b/debian/rules @@ -8,16 +8,17 @@ # This is the debhelper compatibility version to use. export DH_COMPAT=3 -pkg := cl-uffi -prefix := debian/$(pkg) +pkg := uffi +debpkg := cl-uffi +prefix := debian/$(debpkg) INSTALL := install INSTALLFLAGS := -g root -o root -m 0644 INSTALLDIRFLAGS := -d -g root -o root -m 0755 SOURCEDIR := $(prefix)/usr/share/common-lisp/source -REPOSITORYDIR := $(prefix)/usr/share/common-lisp/repositories/uffi -DOCDIR := $(prefix)/usr/share/doc/cl-uffi +REPOSITORYDIR := $(prefix)/usr/share/common-lisp/repositories/${pkg} +DOCDIR := $(prefix)/usr/share/doc/${debpkg} configure: configure-stamp