2 # $Id: make-tar.sh,v 1.15 2015/05/16 17:12:37 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2010-2013,2015 Free Software Foundation, Inc. #
6 # Permission is hereby granted, free of charge, to any person obtaining a #
7 # copy of this software and associated documentation files (the "Software"), #
8 # to deal in the Software without restriction, including without limitation #
9 # the rights to use, copy, modify, merge, publish, distribute, distribute #
10 # with modifications, sublicense, and/or sell copies of the Software, and to #
11 # permit persons to whom the Software is furnished to do so, subject to the #
12 # following conditions: #
14 # The above copyright notice and this permission notice shall be included in #
15 # all copies or substantial portions of the Software. #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
20 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
22 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
23 # DEALINGS IN THE SOFTWARE. #
25 # Except as contained in this notice, the name(s) of the above copyright #
26 # holders shall not be used in advertising or otherwise to promote the sale, #
27 # use or other dealings in this Software without prior written #
29 ##############################################################################
30 # Construct a tar-file containing only the Ada95 tree as well as its associated
31 # documentation. The reason for doing that is to simplify distributing the
32 # ada binding as a separate package.
39 : ${ROOTNAME:=ncurses-Ada95}
40 : ${PKG_NAME:=AdaCurses}
45 grep_assign
=`egrep "^$2\>" "$1" | sed -e "s/^$2[ ]*=[ ]*//" -e 's/"//g'`
46 eval $2=\"$grep_assign\"
50 grep_assign ..
/dist.mk NCURSES_MAJOR
51 grep_assign ..
/dist.mk NCURSES_MINOR
52 grep_assign ..
/dist.mk NCURSES_PATCH
55 # The rpm spec-file in the ncurses tree is a template. Fill in the version
56 # information from dist.mk
59 -e "s/\\<MAJOR\\>/$NCURSES_MAJOR/g" \
60 -e "s/\\<MINOR\\>/$NCURSES_MINOR/g" \
61 -e "s/\\<YYYYMMDD\\>/$NCURSES_PATCH/g" $1 >$1.new
67 test -f $1 && chmod u
+w
$1
69 `echo $PKG_NAME|tr '[A-Z]' '[a-z]'` ($NCURSES_MAJOR.$NCURSES_MINOR+$NCURSES_PATCH) unstable; urgency=low
71 * snapshot of ncurses subpackage for $PKG_NAME.
73 -- `head -n 1 $HOME/.signature` `date -R`
77 # This can be run from either the subdirectory, or from the top-level
78 # source directory. We will put the tar file in the original directory.
79 test -d .
/Ada95
&& cd .
/Ada95
82 BUILD
=$TMPDIR/make-tar$$
83 trap "cd /; rm -rf $BUILD; exit 0" 0 1 2 5 15
88 echo "? cannot make build directory $BUILD"
92 mkdir
$BUILD/$ROOTNAME
94 cp -p -r * $BUILD/$ROOTNAME/ ||
exit
96 # Add the config.* utility scripts from the top-level directory.
99 for j
in config.guess config.sub install-sh tar-copy.sh
101 test -f $i/$j && cp -p $i/$j $BUILD/$ROOTNAME/
105 # Make rpm and dpkg scripts for test-builds
107 for spec
in $BUILD/$ROOTNAME/package
/*.spec
111 for spec
in $BUILD/$ROOTNAME/package
/debian
*
113 make_changelog
$spec/changelog
116 cp -p ..
/man
/MKada_config.
in $BUILD/$ROOTNAME/doc
/
117 if test -z "$NO_HTML_DOCS"
119 # Add the ada documentation.
120 cd ..
/doc
/html ||
exit
122 cp -p -r Ada
* $BUILD/$ROOTNAME/doc
/
123 cp -p -r ada
$BUILD/$ROOTNAME/doc
/
126 cp -p $SOURCE/NEWS
$BUILD/$ROOTNAME
128 # cleanup empty directories (an artifact of ncurses source archives)
130 touch $BUILD/$ROOTNAME/MANIFEST
131 ( cd $BUILD/$ROOTNAME && find .
-type f
-print |
$SOURCE/misc
/csort
>MANIFEST
)
135 # Remove build-artifacts.
136 find .
-name RCS
-exec rm -rf {} \
;
137 find $BUILD/$ROOTNAME -type d
-exec rmdir {} \
; 2>/dev
/null
138 find $BUILD/$ROOTNAME -type d
-exec rmdir {} \
; 2>/dev
/null
139 find $BUILD/$ROOTNAME -type d
-exec rmdir {} \
; 2>/dev
/null
141 # There is no need for this script in the tar file.
142 rm -f $ROOTNAME/make-tar.sh
144 # Remove build-artifacts.
145 find .
-name "*.gz" -exec rm -rf {} \
;
147 # Make the files writable...
150 tar cf
- $ROOTNAME |
gzip >$DESTDIR/$ROOTNAME.
tar.gz
154 ls -l $ROOTNAME.
tar.gz