Check-in Number:
|
5406 | |
Date: |
2006-Jun-08 19:56:20 (local)
2006-Jun-08 17:56:20 (UTC) |
User: | rse |
Branch: | |
Comment: |
Upgraded build environment from GNU shtool 2.0.3 to 2.0.6
and from GNU libtool 1.5.20 to 1.5.22. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/pth/ChangeLog 1.644 -> 1.645
--- ChangeLog 2006/06/08 17:54:51 1.644
+++ ChangeLog 2006/06/08 17:56:20 1.645
@@ -21,6 +21,10 @@
Changes between 2.0.6 and 2.0.7 (22-Nov-2005 to 08-Jun-2006)
+ *) Upgraded build environment from GNU shtool 2.0.3 to 2.0.6
+ and from GNU libtool 1.5.20 to 1.5.22.
+ [Ralf S. Engelschall]
+
*) Let AC_CHECK_PTH use "pth-config --libs --all" instead of just
"pth-config --libs" to allow it to work under platforms like
Solaris where additional libraries are required.
|
|
ossp-pkg/pth/devtool.conf -> 1.21
*** /dev/null Sat Nov 23 01:28:50 2024
--- - Sat Nov 23 01:28:57 2024
***************
*** 0 ****
--- 1,84 ----
+ ##
+ ## devtool.conf -- Development Tool Configuration
+ ##
+
+ %autogen
+ @autogen shtool 2.0.6 "2.0.*" echo version scpp mkdir install fixperm tarball
+ @autogen libtool 1.5.22 "1.5*"
+ @autogen autoconf 2.59 "2.5*"
+
+ %autoclean
+ @autoclean shtool
+ @autoclean libtool
+ @autoclean autoconf
+
+ %configure
+ if [ $# -gt 0 ]; then
+ param="$1"
+ shift
+ else
+ param=devel
+ fi
+ ./configure \
+ --cache-file=config.cache \
+ --with-param=$param \
+ "$@"
+
+ %install
+ ./devtool autoclean
+ ./devtool autogen
+ ./devtool configure install
+ make clean
+ make all
+ make install
+
+ %version
+ ./shtool version -lc -n 'GNU Pth' -p pth_internal_ -e pth_vers.c
+ V=`./shtool version -lc -dlong pth_vers.c`
+ sed -e "s/Version .*/Version $V/g" <README >README.n
+ mv README.n README
+
+ %dist
+ rm -f pth-*.tar.gz
+ ./devtool autoclean
+ ./devtool autogen
+ ./devtool configure
+ make clean all
+ make distclean
+ ./shtool fixperm -v .
+ V=`./shtool version -lc -d short pth_vers.c`
+ ./shtool tarball -o pth-${V}.tar.gz -d pth-${V} -u gnu -g pth \
+ -e 'CVS,\.cvsignore,\.[ao]$,^\.,devtool*' -c 'gzip --best' .
+ ls -l pth-${V}.tar.gz
+ gunzip <pth-${V}.tar.gz | tar tvf - | head -10; echo "[...]"
+ gunzip <pth-${V}.tar.gz | tar tvf - | tail -10
+
+ %snap
+ rm -f pth-*.tar.gz
+ ./devtool autoclean
+ ./devtool autogen
+ ./devtool configure
+ make clean all
+ make distclean
+ ./shtool fixperm -v .
+ D=`date '+%Y%m%d'`
+ ./shtool tarball -o pth-SNAP-${D}.tar.gz -d pth-SNAP-${D} -u gnu -g pth \
+ -e 'CVS,\.cvsignore,\.[ao]$,^\.,devtool*' -c 'gzip --best' .
+ ls -l pth-SNAP-${D}.tar.gz
+ gunzip <pth-SNAP-${D}.tar.gz | tar tvf - | head -10; echo "[...]"
+ gunzip <pth-SNAP-${D}.tar.gz | tar tvf - | tail -10
+
+ %striptease
+ perl striptease.pl
+
+ %depend
+ cp Makefile.in Makefile.in.bak
+ sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in >Makefile.new
+ gcc -MM -I. *.c |\
+ perl -e 'my $d = ""; $d .= $_ while (<STDIN>); $_ = $d; \
+ s/^(pth_.*)\.o:/$1.lo:/mg; \
+ s|\\\n\s*| |sg; s|\b?\S*/\S*\b?||g; s|\s{2,}| |g; \
+ print $_;' >> Makefile.new
+ cp Makefile.new Makefile.in
+ rm -f Makefile.new
+
|
|