-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure
executable file
·175 lines (152 loc) · 6.22 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#!/bin/bash
# Dette script bootstrapper/konfigurer det der skal til for at lave linuxbøgerne
# Af Mads Bondo Dydensborg, [email protected], september 2003.
# Tilføjelser om samling-bogen af Henrik Christian Grove <[email protected]>
# oktober/november 2003
# Standard bøger at medtage
#SUBDIRS="admin applikationer c dokumentation forsker friheden itplatform java kontorbruger program signatur sikkerhed unix web wm"
SUBDIRS="distro itplatform friheden unix kontorbruger applikationer wm admin sikkerhed program web python c java dokumentation"
SAMLING=
URL=www.linuxbog.dk
################################################################################
#
# Brug
brug() {
echo "Brug: ./configure [OPTIONS] [-- SUBDIROPTIONS]"
echo
echo "Hvor OPTIONS kan være een eller flere af "
echo " -h, --help Viser denne hjælp og afslutter"
echo " -m, --med \"BØGER\" Bestemmer hvilke bøger der medtages, hvor BØGER"
echo " er en liste af bøger. Kombiner:"
echo " \"$SUBDIRS\""
echo " -s, --med-samling Medtag samling-bogen (samlingen af de byggede bøger)"
echo " -u, --bogurl URL Hvilken url bøgerne skal bruge. [cvs.linuxbog.dk]"
echo " --splitstikord Splitter HTML stikord til en fil med hvert forbogstav"
echo
echo "Hvor SUBDIROPTIONS kan være"
echo " --disable-softlink Bruger kopering af billeder for HTML targets"
echo " --enable-submitbox Tilføjer en submit boks, når der bygges på tyge"
echo "Eksempel: ./configure --med \"friheden applikationer\" -- --disable-softlink";
}
################################################################################
#
# hjaelp
hjaelp() {
echo "\`configure' opsætter hvilke af \"Linux - friheden til at vælge bøgerne\" der skal"
echo "laves på dit system."
echo
brug
exit
}
################################################################################
#
# Check for argumenter
# Originale argumenter gemmes til Makefile
ORG_ARGS=
for arg ; do ORG_ARGS="$ORG_ARGS \"$arg\"" ; done
# Note that we use `"$@"' to let each command-line parameter expand to a
# separate word. The quotes around `$@' are essential!
# We need TEMP as the `eval set --' would nuke the return value of getopt.
TEMP=`getopt -o hmsu: --long help,med:,med-samling,splitstikord,bogurl: -n "$0" -- "$@"`
if [ $? != 0 ] ; then brug ; exit 1 ; fi
# Note the quotes around `$TEMP': they are essential!
eval set -- "$TEMP"
while true ; do
case "$1" in
-s|--med-samling) SAMLING=samling ; shift ;;
-h|--help) hjaelp; shift ;;
-m|--med) SUBDIRS=$2 ; shift 2 ;;
-u|--bogurl) URL=$2 ; shift 2 ;;
--splitstikord) SPLITHTML=1 ; shift ;;
--) shift ; break ;;
*) echo "Internal error!" ; exit 1 ;;
esac
done
# Opsaml ekstra argumenter til bøger
EXTRA_ARG=
for arg ; do
EXTRA_ARG="$EXTRA_ARG $arg" ;
done
#echo "EXTRA_ARG: $EXTRA_ARG"
echo '<?php' > configureoptions.php
echo '/* Oprettet ved kørsel af "configure" */' >> configureoptions.php
echo '$configureoptions = "' $EXTRA_ARG '";' >> configureoptions.php
echo '?>' >> configureoptions.php
################################################################################
#
# Check at Makefile.in findes.
if test ! -e Makefile.in ; then
echo "Fejl: Kunne ikke finde Makefile.in"
echo "Vær venlig at køre dette script fra roden af Linux bøgernes kildetekst"
exit 2;
fi
################################################################################
#
# Rent faktisk gøre noget.
# Status til bruger
if test "x$SAMLING" != "x" ; then
echo "*** Opsætter samling bogen"
else
echo "*** Opsætter ikke samling bogen"
fi
# Lav Makefile
sed -e "s/@SUBDIRS@/$SUBDIRS/" \
-e "s/@SAMLING@/$SAMLING/" \
-e "s/@CONFIGUREARGS@/$ORG_ARGS/" \
-e "s/@Makefile.in@/RET IKKE I DENNE FIL - AUTOGENERERET FRA Makefile.in/" \
< Makefile.in > Makefile
# Faelles filer
for dir in $SUBDIRS ; do
echo "*** Installerer fælles filer i $dir"
cp --update faelles-filer/*.css $dir
cp --update faelles-filer/*.sgml $dir
cp --update faelles-filer/addsubmitbox $dir
chmod u+x $dir/addsubmitbox
echo "<!ENTITY linuxbogurl \"$URL\">" > $dir/linuxbogurl.sgml || exit;
mkdir -p $dir/palm-faelles
cp --update misc/*.prc misc/*.pdb misc/gpl.txt misc/plucker.txt $dir/palm-faelles
done
if test "x$SAMLING" != "x" ; then
echo "*** Installerer fælles filer i $SAMLING"
# cp --update faelles-filer/*.sgml $SAMLING
# Det her er smålamt, ophavsret.sgml skal ikke bruges til noget men
# configure.ac.subdir insisterer på at den skal være der
cp --update faelles-filer/ophavsret.sgml $SAMLING
# echo "<!ENTITY linuxbogurl \"$URL\">" > $SAMLING/linuxbogurl.sgml || exit;
mkdir -p $SAMLING/palm-faelles
cp --update misc/*.prc misc/*.pdb misc/gpl.txt misc/plucker.txt $SAMLING/palm-faelles
fi
# Byggerelaterede filer
for dir in $SUBDIRS; do
echo "*** Kører bootstrap i $dir"
cp --update bootstrap.subdir $dir/bootstrap
cp --update Makefile.subdir $dir/Makefile.am
cp --update configure.ac.subdir $dir/configure.ac
cp --update linuxbog.spec $dir/linuxbog.spec
mkdir -p $dir/misc
cp --update misc/insertimagesize $dir/misc/
cd $dir && ./bootstrap && cd .. || exit ;
done
# grove: Gad vide hvor meget af dette der er nødvendigt?
if test "x$SAMLING" != "x" ; then
echo "*** Kører bootstrap i $SAMLING"
cp --update bootstrap.subdir $SAMLING/bootstrap
sed "s/@SUBDIRSSAMLING@/$SUBDIRS/" < Makefile.samling > $SAMLING/Makefile.am
cp --update configure.ac.subdir $SAMLING/configure.ac
cp --update linuxbog.spec $SAMLING/linuxbog.spec
# mkdir -p $SAMLING/misc
# cp --update misc/insertimagesize $SAMLING/misc/
cd $SAMLING && ./bootstrap && cd .. || exit ;
# cd $SAMLING && ./make.bog.sgml.pl $SUBDIRS > bog.sgml && cd .. || exit ;
# cd $SAMLING && ./make.bog.2pdf.pl $SUBDIRS > bog.2pdf.sgml && cd .. || exit ;
fi
# Så køres ./configure i hvert subdir.
for dir in $SUBDIRS; do
echo "*** Kører configure i $dir"
cd $dir && ./configure $EXTRA_ARG && cd .. || exit ;
done
if test "x$SAMLING" != "x" ; then
echo "*** Kører configure i $SAMLING"
cd $SAMLING && ./configure $EXTRA_ARG && cd .. || exit ;
fi
echo "*** Du kan nu køre f.eks. make all, make dist eller make palmpilot"