]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - Ada95/make-tar.sh
ncurses 5.7 - patch 20110122
[ncurses.git] / Ada95 / make-tar.sh
index 7a495102ccc97a73cbbf8e7c053cda2efc59c612..a2498fb3ecbdbaf910f82a40f0df0db4a47eac94 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: make-tar.sh,v 1.2 2010/02/20 23:45:13 tom Exp $
+# $Id: make-tar.sh,v 1.6 2010/11/06 19:59:07 tom Exp $
 ##############################################################################
 # Copyright (c) 2010 Free Software Foundation, Inc.                          #
 #                                                                            #
 # documentation.  The reason for doing that is to simplify distributing the
 # ada binding as a separate package.
 
-ROOTNAME=ncurses-Ada95
-
 TARGET=`pwd`
 
-: ${TMPDIR=/tmp}
+: ${ROOTNAME:=ncurses-Ada95}
+: ${DESTDIR:=$TARGET}
+: ${TMPDIR:=/tmp}
 
 # This can be run from either the Ada95 subdirectory, or from the top-level
 # source directory.  We will put the tar file in the original directory.
@@ -55,6 +55,15 @@ mkdir $BUILD/$ROOTNAME
 
 cp -p -r * $BUILD/$ROOTNAME/ || exit
 
+# Add the config.* utility scripts from the top-level directory.
+for i in . ..
+do
+       for j in config.guess config.sub install-sh tar-copy.sh
+       do
+               test -f $i/$j && cp -p $i/$j $BUILD/$ROOTNAME/
+       done
+done
+
 # Add the ada documentation.
 mkdir $BUILD/$ROOTNAME/doc || exit
 cd ../doc/html || exit
@@ -74,8 +83,8 @@ find . -name "*.gz" -exec rm -rf {} \;
 # Make the files writable...
 chmod -R u+w .
 
-tar cf - $ROOTNAME | gzip >$TARGET/$ROOTNAME.tar.gz
-cd $TARGET
+tar cf - $ROOTNAME | gzip >$DESTDIR/$ROOTNAME.tar.gz
+cd $DESTDIR
 
 pwd
 ls -l $ROOTNAME.tar.gz