2008-01-16 20:13:18 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-02-15 21:19:24 +00:00
|
|
|
# make_xorriso_standalone.sh
|
2010-02-14 15:14:30 +00:00
|
|
|
# Copyright 2008 - 2010 Thomas Schmitt, scdbackup@gmx.net, GPLv2+
|
2008-01-16 20:13:18 +00:00
|
|
|
#
|
2008-02-15 21:19:24 +00:00
|
|
|
# Not intended for general use in production installations !
|
|
|
|
#
|
|
|
|
# This is a development tool which expects a special setup of directories.
|
|
|
|
# It is to be executed in a common parent of the directories
|
|
|
|
# nglibisofs-develop libburn-develop libisoburn-develop
|
2010-02-14 15:14:30 +00:00
|
|
|
# where tarballs or repository copies have been installed of
|
|
|
|
# libisofs libburn libisoburn
|
|
|
|
# obtained by following instructions on http://libburnia-project.org.
|
2008-02-15 21:19:24 +00:00
|
|
|
#
|
2010-02-22 19:54:48 +00:00
|
|
|
# It creates a new directory tree
|
|
|
|
# xorriso-standalone
|
|
|
|
# for building GNU xorriso.
|
2008-02-15 21:19:24 +00:00
|
|
|
#
|
2008-01-19 09:09:11 +00:00
|
|
|
# The ./bootstrap script gets applied and a source tarball
|
|
|
|
# is made.
|
|
|
|
#
|
2010-02-22 19:54:48 +00:00
|
|
|
# From that tree can be build a binary xorriso/xorriso which at runtime
|
|
|
|
# does not depend on installed libburnia libraries.
|
|
|
|
# Execute in xorriso-standalone :
|
2008-01-16 20:13:18 +00:00
|
|
|
#
|
2008-01-19 09:09:11 +00:00
|
|
|
# ./configure && make
|
2008-01-16 20:13:18 +00:00
|
|
|
#
|
|
|
|
|
2010-02-22 19:54:48 +00:00
|
|
|
# By the variable setting create_gnu_xorriso="yes"
|
2010-02-14 15:14:30 +00:00
|
|
|
# the result will become a GNU xorriso tarball under GPLv3+.
|
|
|
|
# Without this setting, the result is technically equivalent but
|
|
|
|
# stays under GPLv2+. In that case the files xorriso/*_gnu_xorriso
|
|
|
|
# are merely informative.
|
|
|
|
# Note that it is not permissible to revert the transition from
|
|
|
|
# GPLv2+ to GPLv3+. (Rather derive a new GPLv2+ from libburnia.)
|
|
|
|
|
|
|
|
create_gnu_xorriso="yes"
|
|
|
|
|
|
|
|
|
2008-01-16 20:13:18 +00:00
|
|
|
current_dir=$(pwd)
|
|
|
|
lone_dir="$current_dir"/"xorriso-standalone"
|
|
|
|
|
2010-03-30 09:30:40 +00:00
|
|
|
xorriso_rev=0.5.3
|
2010-02-22 19:54:48 +00:00
|
|
|
# For unstable uploads and patch level 0 of stable releases:
|
2008-01-26 14:01:19 +00:00
|
|
|
xorriso_pl=""
|
2010-02-22 19:54:48 +00:00
|
|
|
# For higher patch levels of stable releases:
|
|
|
|
## xorriso_pl=".pl01"
|
2008-01-19 09:09:11 +00:00
|
|
|
|
|
|
|
with_bootstrap_tarball=1
|
|
|
|
|
2008-01-16 20:13:18 +00:00
|
|
|
create_dir() {
|
|
|
|
if mkdir "$1"
|
|
|
|
then
|
|
|
|
dummy=dummy
|
|
|
|
else
|
2008-02-15 21:19:24 +00:00
|
|
|
echo "Failed to create : $1" >&2
|
2008-01-16 20:13:18 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
goto_dir() {
|
|
|
|
if cd "$1"
|
|
|
|
then
|
|
|
|
dummy=dummy
|
|
|
|
else
|
|
|
|
echo "Failed to cd $1" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
copy_files() {
|
|
|
|
if cp "$@"
|
|
|
|
then
|
|
|
|
dummy=dummy
|
|
|
|
else
|
|
|
|
echo "Failed to : cp " "$@" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
if test -e "$lone_dir"
|
|
|
|
then
|
|
|
|
echo "Already existing : $lone_dir" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Top level directory
|
|
|
|
|
|
|
|
goto_dir "$current_dir"/libisoburn-develop
|
|
|
|
|
|
|
|
create_dir "$lone_dir"
|
|
|
|
|
|
|
|
copy_files \
|
|
|
|
AUTHORS \
|
|
|
|
CONTRIBUTORS \
|
2008-02-15 21:19:24 +00:00
|
|
|
COPYRIGHT \
|
|
|
|
COPYING \
|
|
|
|
INSTALL \
|
2008-01-16 20:13:18 +00:00
|
|
|
acinclude.m4 \
|
|
|
|
aclocal.m4 \
|
|
|
|
bootstrap \
|
|
|
|
compile \
|
|
|
|
config.guess \
|
|
|
|
config.status \
|
|
|
|
config.sub \
|
|
|
|
depcomp \
|
|
|
|
install-sh \
|
|
|
|
libtool \
|
|
|
|
ltmain.sh \
|
|
|
|
missing \
|
|
|
|
mkinstalldirs \
|
|
|
|
version.h.in \
|
|
|
|
\
|
|
|
|
"$lone_dir"
|
|
|
|
|
2008-01-26 00:26:57 +00:00
|
|
|
copy_files xorriso/configure_ac.txt "$lone_dir"/configure.ac
|
2008-01-16 20:13:18 +00:00
|
|
|
|
2008-01-26 00:26:57 +00:00
|
|
|
copy_files xorriso/xorriso_makefile_am.txt "$lone_dir"/Makefile.am
|
2008-01-16 20:13:18 +00:00
|
|
|
|
2009-06-13 12:40:17 +00:00
|
|
|
# copy_files xorriso/xorriso_pc_in.txt "$lone_dir"/xorriso.pc.in
|
2008-01-17 19:27:51 +00:00
|
|
|
|
2008-02-15 21:19:24 +00:00
|
|
|
# echo "See end of xorriso/changelog.txt" >"$lone_dir"/TODO
|
2008-01-16 20:13:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
# libisoburn
|
|
|
|
|
|
|
|
create_dir "$lone_dir"/libisoburn
|
|
|
|
copy_files \
|
2008-01-26 00:26:57 +00:00
|
|
|
libisoburn/*.[ch] \
|
2008-01-16 20:13:18 +00:00
|
|
|
"$lone_dir"/libisoburn
|
|
|
|
|
2008-01-26 00:26:57 +00:00
|
|
|
xorriso/convert_man_to_html.sh
|
2008-01-18 17:03:41 +00:00
|
|
|
|
2008-01-16 20:13:18 +00:00
|
|
|
create_dir "$lone_dir"/xorriso
|
|
|
|
copy_files \
|
2008-01-26 00:26:57 +00:00
|
|
|
xorriso/xorrisoburn.[ch] \
|
2010-03-18 10:13:35 +00:00
|
|
|
xorriso/xorriso.[ch] \
|
2008-01-26 00:26:57 +00:00
|
|
|
xorriso/xorriso_private.h \
|
2008-07-09 15:56:23 +00:00
|
|
|
\
|
2008-01-26 00:26:57 +00:00
|
|
|
xorriso/xorriso_timestamp.h \
|
2008-07-09 15:56:23 +00:00
|
|
|
\
|
2008-01-26 00:26:57 +00:00
|
|
|
xorriso/changelog.txt \
|
|
|
|
xorriso/xorriso_eng.html \
|
2010-03-18 10:13:35 +00:00
|
|
|
xorriso/xorriso.texi \
|
|
|
|
xorriso/xorriso.info \
|
|
|
|
xorriso/make_xorriso_1.c \
|
|
|
|
xorriso/xorriso.1 \
|
2008-01-26 00:26:57 +00:00
|
|
|
xorriso/man_1_xorriso.html \
|
2008-01-16 20:13:18 +00:00
|
|
|
"$lone_dir"/xorriso
|
|
|
|
|
2008-07-09 15:56:23 +00:00
|
|
|
copy_files xorriso/xorriso_buildstamp_none.h \
|
|
|
|
"$lone_dir"/xorriso/xorriso_buildstamp.h
|
2009-04-16 14:56:13 +00:00
|
|
|
copy_files xorriso/xorriso_buildstamp_none.h \
|
|
|
|
"$lone_dir"/xorriso/xorriso_buildstamp_none.h
|
2008-07-09 15:56:23 +00:00
|
|
|
|
2008-02-08 10:22:08 +00:00
|
|
|
create_dir "$lone_dir"/test
|
|
|
|
copy_files \
|
|
|
|
test/compare_file.c \
|
|
|
|
"$lone_dir"/test/compare_file.c
|
|
|
|
|
2008-01-16 20:13:18 +00:00
|
|
|
|
|
|
|
# nglibisofs
|
|
|
|
|
|
|
|
create_dir "$lone_dir"/libisofs
|
2008-03-04 17:41:43 +00:00
|
|
|
create_dir "$lone_dir"/libisofs/filters
|
2009-01-26 17:38:33 +00:00
|
|
|
create_dir "$lone_dir"/doc
|
2008-01-16 20:13:18 +00:00
|
|
|
goto_dir "$current_dir"/nglibisofs-develop
|
2008-01-28 17:20:10 +00:00
|
|
|
copy_files libisofs/*.[ch] "$lone_dir"/libisofs
|
2008-03-04 17:41:43 +00:00
|
|
|
copy_files libisofs/filters/*.[ch] "$lone_dir"/libisofs/filters
|
2009-01-26 17:38:33 +00:00
|
|
|
copy_files doc/susp_aaip*.txt "$lone_dir"/doc
|
2009-04-11 12:51:39 +00:00
|
|
|
copy_files doc/zisofs_format.txt "$lone_dir"/doc
|
2009-08-31 16:24:27 +00:00
|
|
|
copy_files doc/checksums.txt "$lone_dir"/doc
|
2008-02-15 21:19:24 +00:00
|
|
|
copy_files COPYRIGHT "$lone_dir"/libisofs
|
2010-02-14 15:14:30 +00:00
|
|
|
test -e CONTRIBUTORS && cat CONTRIBUTORS >>"$lone_dir"/CONTRIBUTORS
|
2008-01-16 20:13:18 +00:00
|
|
|
|
2008-01-26 14:01:19 +00:00
|
|
|
# To get a common version.h
|
|
|
|
cat version.h.in >> "$lone_dir"/version.h.in
|
|
|
|
|
2008-01-31 15:22:23 +00:00
|
|
|
|
2008-01-31 21:47:39 +00:00
|
|
|
# <<< obsoleted patchings
|
2008-01-24 20:16:52 +00:00
|
|
|
|
|
|
|
if test 1 = 0
|
|
|
|
then
|
|
|
|
|
2008-01-31 21:47:39 +00:00
|
|
|
# Change GNU macro name to POSIX name
|
|
|
|
sed -e 's/FNM_FILE_NAME/FNM_PATHNAME/g' \
|
|
|
|
<libisofs/tree.c >"$lone_dir"/libisofs/tree.c
|
|
|
|
|
2008-01-17 19:27:51 +00:00
|
|
|
# Filter out the semi-illegal TODO comments
|
|
|
|
( cd "$lone_dir"/libisofs && grep '^[[:space:]]*//' *.[ch] | less )
|
|
|
|
echo "Is it ok delete all shown //-lines ?"
|
|
|
|
read yesno
|
|
|
|
if test "$yesno" = "y" -o "$yesno" = "1"
|
|
|
|
then
|
|
|
|
for i in "$lone_dir"/libisofs/*.[ch]
|
|
|
|
do
|
|
|
|
# first copy attributes
|
|
|
|
cp "$i" "$lone_dir"/libisofs/tmpfile
|
|
|
|
# now filter away // lines
|
|
|
|
grep -v '^[[:space:]]*//' <"$i" >"$lone_dir"/libisofs/tmpfile && \
|
|
|
|
mv "$lone_dir"/libisofs/tmpfile "$i"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
echo "Remaining // lines:"
|
|
|
|
( cd "$lone_dir"/libisofs && grep '//' *.[ch] )
|
|
|
|
|
2008-01-24 20:16:52 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2008-01-16 20:13:18 +00:00
|
|
|
|
|
|
|
# libburn
|
|
|
|
|
|
|
|
create_dir "$lone_dir"/libburn
|
|
|
|
goto_dir "$current_dir"/libburn-develop
|
|
|
|
copy_files libburn/*.[ch] "$lone_dir"/libburn
|
2008-02-15 21:19:24 +00:00
|
|
|
copy_files COPYRIGHT "$lone_dir"/libburn
|
2010-02-14 15:14:30 +00:00
|
|
|
cat CONTRIBUTORS >>"$lone_dir"/CONTRIBUTORS
|
2008-01-16 20:13:18 +00:00
|
|
|
|
2010-02-14 17:19:41 +00:00
|
|
|
# Delete a source module of yet unclear ancestry.
|
|
|
|
# The build process will avoid to use it.
|
|
|
|
rm "$lone_dir"/libburn/crc.c
|
|
|
|
|
2008-01-16 20:13:18 +00:00
|
|
|
|
2008-01-26 14:01:19 +00:00
|
|
|
# To get a common version.h
|
|
|
|
cat version.h.in >> "$lone_dir"/version.h.in
|
|
|
|
|
2010-02-14 15:14:30 +00:00
|
|
|
# Decision about legal situation
|
|
|
|
goto_dir "$current_dir"/libisoburn-develop
|
|
|
|
if test "$create_gnu_xorriso" = "yes"
|
|
|
|
then
|
|
|
|
copy_files xorriso/README_gnu_xorriso "$lone_dir"/README
|
|
|
|
copy_files xorriso/COPYRIGHT_gnu_xorriso "$lone_dir"/COPYRIGHT
|
|
|
|
copy_files xorriso/COPYING_gnu_xorriso "$lone_dir"/COPYING
|
|
|
|
copy_files xorriso/AUTHORS_gnu_xorriso "$lone_dir"/AUTHORS
|
|
|
|
|
|
|
|
# patch xorriso/xorriso.c to be GNU xorriso
|
|
|
|
sed -e's/define Xorriso_libburnia_xorrisO/define Xorriso_GNU_xorrisO/' \
|
|
|
|
-e's/This may be changed to Xorriso_GNU_xorrisO in order to c/C/' \
|
|
|
|
<xorriso/xorriso.c >"$lone_dir"/xorriso/xorriso.c
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
copy_files README "$lone_dir"/README
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
2008-01-19 09:09:11 +00:00
|
|
|
|
|
|
|
# tarball
|
|
|
|
|
|
|
|
if test "$with_bootstrap_tarball" = 1
|
|
|
|
then
|
|
|
|
|
2010-02-22 19:54:48 +00:00
|
|
|
tarball_dir="$current_dir"/xorriso-"$xorriso_rev""$xorriso_pl"
|
2008-01-19 09:09:11 +00:00
|
|
|
mv "$lone_dir" "$tarball_dir"
|
|
|
|
|
|
|
|
goto_dir "$tarball_dir"
|
|
|
|
|
|
|
|
./bootstrap
|
|
|
|
|
|
|
|
# Remove unneeded temporary data from ./bootstrap
|
|
|
|
rm -r ./autom4te.cache
|
|
|
|
|
|
|
|
# Repair non-portable shell code output of ./bootstrap
|
|
|
|
(
|
|
|
|
cd "$compile_dir" || exit 1
|
|
|
|
sed -e 's/^for ac_header in$/test -z 1 \&\& for ac_header in dummy/' \
|
|
|
|
< ./configure > ./configure-repaired
|
|
|
|
if test "$?" = 0
|
|
|
|
then
|
|
|
|
echo "$0: Empty 'for ac_header in' found in configure." >&2
|
|
|
|
fi
|
|
|
|
mv ./configure-repaired ./configure
|
|
|
|
chmod a+rx,go-w,u+w ./configure
|
|
|
|
)
|
|
|
|
|
2010-02-22 19:54:48 +00:00
|
|
|
if test "$create_gnu_xorriso" = "yes"
|
|
|
|
then
|
2010-02-28 17:01:05 +00:00
|
|
|
# ftp-upload@gnu.org rejects Makefile.in with a dangerous chmod on make dist
|
|
|
|
sed -e 's/-perm -777 -exec chmod a+rwx/-perm -755 -exec chmod u+rwx,go+rx/' \
|
2010-02-22 19:54:48 +00:00
|
|
|
< Makefile.in > new_Makefile.in
|
|
|
|
|
|
|
|
mv new_Makefile.in Makefile.in
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2008-01-19 09:09:11 +00:00
|
|
|
cd "$current_dir"
|
|
|
|
tar czf ./xorriso-"$xorriso_rev""$xorriso_pl".tar.gz $(basename "$tarball_dir")
|
|
|
|
|
|
|
|
ls -l $(pwd)/xorriso-"$xorriso_rev""$xorriso_pl".tar.gz
|
|
|
|
|
|
|
|
mv "$tarball_dir" "$lone_dir"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
2008-01-16 20:13:18 +00:00
|
|
|
echo "Done"
|
|
|
|
echo "HINT: Now build xorriso/xorriso by:"
|
2008-01-19 09:09:11 +00:00
|
|
|
echo " cd '$lone_dir' && ./configure && make"
|
2008-01-16 20:13:18 +00:00
|
|
|
echo
|