summaryrefslogtreecommitdiffstats
path: root/compile.sh
blob: 4b3512cb24bfdd735e1cfce9f35898cdce038068 (plain)
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
#!/bin/sh
# default, host is empty, no cross compilation
# ./compile.sh [ i586-pc-msdosdjgpp | i686-pc-cygwin | i386-pc-mingw32 | powerpc-mac-darwin ]
# Comment the version definition to not compile the library
VER_E2FSPROGS=
#VER_PROGSREISERFS="0.3.1-rc8"
VER_PROGSREISERFS=
VER_LIBEWF=20140608
smp_mflags="-j 2"
crosscompile_target=
prefix=/usr/
if [ -z "$1" ];
then
  compiledir=.
else
  compiledir=$1
  if [ "$1" != "$CC" ];
  then
    crosscompile_target=$1
    TESTDISKCC="$crosscompile_target"-gcc
    PKG_CONFIG_PATH=/usr/$crosscompile_target/lib/pkgconfig
    if [ ! -d "$PKG_CONFIG_PATH" ];
    then
      PKG_CONFIG_PATH=/usr/$crosscompile_target/sys-root/mingw/lib/pkgconfig
    fi
    if [ ! -d "$PKG_CONFIG_PATH" ];
    then
      PKG_CONFIG_PATH=/usr/$crosscompile_target/sys-root/usr/lib/pkgconfig
    fi
    if [ ! -d "$PKG_CONFIG_PATH" ];
    then
      unset PKG_CONFIG_PATH
    fi
    export PKG_CONFIG_PATH
  fi
fi
case "$crosscompile_target" in
  "")
	VER_LIBEWF=
  ;;
  *-msdosdjgpp)
	VER_LIBNTFS3G="2022.5.17"
	VER_NTFSPROGS=
	VER_E2FSPROGS="1.42.8"
  ;;
  *-cygwin)
	VER_LIBNTFS3G=
	VER_NTFSPROGS="2.0.0"
	VER_E2FSPROGS="1.42.8"
  ;;
  *-mingw32)
	VER_LIBNTFS3G=
	VER_NTFSPROGS="2.0.0"
	VER_E2FSPROGS=
  ;;
  i686-apple-darwin9|powerpc-apple-darwin)
	VER_LIBNTFS3G="2014.2.15"
	VER_NTFSPROGS=
	VER_E2FSPROGS="1.42.8"
  ;;
  arm-none-linux-gnueabi|powerpc-linux-gnuspe|aarch64-QNAP-linux-gnu)
	VER_LIBNTFS3G="2014.2.15"
	VER_NTFSPROGS=
	VER_E2FSPROGS="1.42.8"
  ;;
  *)
	VER_LIBNTFS3G="2014.2.15"
	VER_NTFSPROGS=
	VER_E2FSPROGS="1.42.8"
	VER_LIBEWF=
  ;;
esac
prefix=/usr/$crosscompile_target
LYNX=links
WGET="wget -N"
LIBEXT=$compiledir/e2fsprogs-$VER_E2FSPROGS/lib/ext2fs/libext2fs.a
LIBNTFS=$compiledir/ntfsprogs-"$VER_NTFSPROGS"/libntfs/.libs/libntfs.a
LIBNTFS3G=$compiledir/ntfs-3g_ntfsprogs-$VER_LIBNTFS3G/libntfs-3g/.libs/libntfs-3g.a
LIBREISER=$compiledir/progsreiserfs-"$VER_PROGSREISERFS"/libreiserfs/.libs/libreiserfs.a
LIBEWF=$compiledir/ewf-"$VER_LIBEWF"/libewf/.libs/libewf.a
pwd_saved=$(pwd)
confdir=$(dirname "$0" 2>/dev/null)
cd "$confdir" || exit 1
confdir=$(pwd)
cd "$pwd_saved" || exit 1

PWDSRC=$(pwd|sed 's#^\w:/#/#')/$compiledir

CONFIGUREOPT=
mkdir -p "$compiledir"
echo "This script will try to compile e2fsprogs progsreiserfs ntfsprogs libraries"
if [ "$VER_E2FSPROGS" != "" ];
then
CONFIGUREOPT="$CONFIGUREOPT --with-ext2fs-lib=${PWDSRC}/e2fsprogs-${VER_E2FSPROGS}/lib --with-ext2fs-includes=${PWDSRC}/e2fsprogs-${VER_E2FSPROGS}/lib"

if [ ! -e "$compiledir"/e2fsprogs-$VER_E2FSPROGS/configure ];
then
  if [ ! -e e2fsprogs-$VER_E2FSPROGS.tar.gz ];
  then
        $LYNX http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-$VER_E2FSPROGS.tar.gz
  fi
  if [ -e e2fsprogs-$VER_E2FSPROGS.tar.gz ];
  then
        tar xzf e2fsprogs-$VER_E2FSPROGS.tar.gz -C "$compiledir"
  fi
fi

if [ ! -e "$compiledir"/e2fsprogs-$VER_E2FSPROGS/Makefile ];
then
  if [ -e "$compiledir"/e2fsprogs-$VER_E2FSPROGS/configure ];
  then
        rm -f "$compiledir"/Makefile
        cd "$compiledir"/e2fsprogs-$VER_E2FSPROGS || exit 1
        case "$crosscompile_target" in
	  arm-marvell-linux-gnu)
                CC=$TESTDISKCC CFLAGS="$CFLAGS -g -O2 -DOMIT_COM_ERR" ./configure --host="$crosscompile_target" --prefix="$prefix" --disable-tls
                ;;
          *)
		CC=$TESTDISKCC CFLAGS="$CFLAGS -g -O2 -DOMIT_COM_ERR" ./configure --host="$crosscompile_target" --prefix="$prefix"
                ;;
	esac
	cd "$pwd_saved" || exit 1
  fi
fi

if [ ! -e "$LIBEXT" ];
then
  if [ -e "$compiledir"/e2fsprogs-$VER_E2FSPROGS/Makefile ];
  then
	cd "$compiledir"/e2fsprogs-$VER_E2FSPROGS || exit 1
	make $smp_mflags libs
	cd "$pwd_saved" || exit 1
  fi
fi
fi

if [ "$VER_PROGSREISERFS" != "" ];
then
CONFIGUREOPT="$CONFIGUREOPT --with-reiserfs-lib=${PWDSRC}/progsreiserfs-${VER_PROGSREISERFS}/libreiserfs/.libs/ --with-reiserfs-includes=${PWDSRC}/progsreiserfs-${VER_PROGSREISERFS}/include/ --with-dal-lib=${PWDSRC}/progsreiserfs-${VER_PROGSREISERFS}/libdal/.libs/"
if [ ! -e "$compiledir"/progsreiserfs-"$VER_PROGSREISERFS"/configure ];
then
  if [ ! -e progsreiserfs-"$VER_PROGSREISERFS".tar.gz ];
  then
        $LYNX http://reiserfs.osdn.org.ua/snapshots/progsreiserfs-"$VER_PROGSREISERFS".tar.gz
  fi
  if [ -e progsreiserfs-"$VER_PROGSREISERFS".tar.gz ];
  then
        tar xzf progsreiserfs-"$VER_PROGSREISERFS".tar.gz -C "$compiledir"
        cd "$compiledir"/progsreiserfs-"$VER_PROGSREISERFS" || exit 1
	patch -p1 < "$pwd_saved"/progsreiserfs-journal.patch
	patch -p1 < "$pwd_saved"/progsreiserfs-file-read.patch
        cd "$pwd_saved" || exit 1
  fi
fi

if [ ! -e "$compiledir"/progsreiserfs-"$VER_PROGSREISERFS"/Makefile ];
then
  if [ -e "$compiledir"/progsreiserfs-"$VER_PROGSREISERFS"/configure ];
  then
#        rm -f "$compiledir"/Makefile
        cd "$compiledir"/progsreiserfs-"$VER_PROGSREISERFS" || exit 1
        ./configure --host="$crosscompile_target" --prefix="$prefix" --disable-nls --disable-Werror
        cd "$pwd_saved" || exit 1
  fi
fi

#vim /home/kmaster/src/testdisk/powerpc-apple-darwin/progsreiserfs-0.3.1-rc8/libtool
#%s/AR="ar"/AR="powerpc-apple-darwin-ar"/
if [ ! -e "$LIBREISER" ];
then
  if [ -e "$compiledir"/progsreiserfs-"$VER_PROGSREISERFS"/Makefile ];
  then
	cd "$compiledir"/progsreiserfs-"$VER_PROGSREISERFS" || exit 1
	make $smp_mflags
	cd "$pwd_saved" || exit 1
  fi
fi
fi

if [ "$VER_LIBNTFS3G" != "" ];
then
CONFIGUREOPT="$CONFIGUREOPT --with-ntfs3g-lib=${PWDSRC}/ntfs-3g_ntfsprogs-${VER_LIBNTFS3G}/libntfs-3g/.libs/ --with-ntfs3g-includes=${PWDSRC}/ntfs-3g_ntfsprogs-${VER_LIBNTFS3G}/include/"
if [ ! -e "$compiledir"/ntfsprogs-$VER_LIBNTFS3G/configure ];
then
  if [ ! -e ntfs-3g_ntfsprogs-$VER_LIBNTFS3G.tgz ];
  then
	$WGET https://tuxera.com/opensource/ntfs-3g_ntfsprogs-$VER_LIBNTFS3G.tgz
  fi
  if [ -e ntfs-3g_ntfsprogs-$VER_LIBNTFS3G.tgz ];
  then
	tar xzf ntfs-3g_ntfsprogs-$VER_LIBNTFS3G.tgz -C "$compiledir"
  fi
fi

if [ ! -e "$compiledir"/ntfs-3g_ntfsprogs-$VER_LIBNTFS3G/Makefile ];
then
  if [ -e "$compiledir"/ntfs-3g_ntfsprogs-$VER_LIBNTFS3G/configure ];
  then
#        rm -f "$compiledir"/Makefile
        cd "$compiledir"/ntfs-3g_ntfsprogs-$VER_LIBNTFS3G || exit 1
        case "$crosscompile_target" in
          powerpc-apple-darwin|i686-apple-darwin9)
		CC=$TESTDISKCC ./configure --host="$crosscompile_target" --prefix="$prefix" --disable-device-default-io-ops --disable-crypto --disable-ntfs-3g --disable-nfconv
		;;
	*)
		CC=$TESTDISKCC ./configure --host="$crosscompile_target" --prefix="$prefix" --disable-device-default-io-ops --disable-crypto --disable-ntfs-3g
		;;
	esac
# --disable-default-device-io-ops is need for NT 4
        cd "$pwd_saved" || exit 1
  fi
fi

if [ ! -e $LIBNTFS3G ];
then
  if [ -e "$compiledir"/ntfs-3g_ntfsprogs-$VER_LIBNTFS3G/Makefile ];
  then
	cd "$compiledir"/ntfs-3g_ntfsprogs-$VER_LIBNTFS3G || exit 1
#	make $smp_mflags libs
	make $smp_mflags
	cd "$pwd_saved" || exit 1
  fi
fi
fi

if [ "$VER_NTFSPROGS" != "" ];
then
CONFIGUREOPT="$CONFIGUREOPT --with-ntfs-lib=${PWDSRC}/ntfsprogs-${VER_NTFSPROGS}/libntfs/.libs/ --with-ntfs-includes=${PWDSRC}/ntfsprogs-${VER_NTFSPROGS}/include/"
if [ ! -e "$compiledir"/ntfsprogs-"$VER_NTFSPROGS"/configure ];
then
  if [ ! -e ntfsprogs-"$VER_NTFSPROGS".tar.gz ];
  then
	$LYNX http://prdownloads.sourceforge.net/linux-ntfs/ntfsprogs-"$VER_NTFSPROGS".tar.gz
  fi
  if [ -e ntfsprogs-"$VER_NTFSPROGS".tar.gz ];
  then
	tar xzf ntfsprogs-"$VER_NTFSPROGS".tar.gz -C "$compiledir"
  fi
fi

if [ ! -e "$compiledir"/ntfsprogs-"$VER_NTFSPROGS"/Makefile ];
then
  if [ -e "$compiledir"/ntfsprogs-"$VER_NTFSPROGS"/configure ];
  then
#        rm -f "$compiledir"/Makefile
        cd "$compiledir"/ntfsprogs-"$VER_NTFSPROGS" || exit 1
# --disable-default-device-io-ops is need for NT 4
        ./configure --host="$crosscompile_target" --prefix="$prefix" --disable-default-device-io-ops --disable-crypto
        cd "$pwd_saved" || exit 1
  fi
fi

if [ ! -e "$LIBNTFS" ];
then
  if [ -e "$compiledir"/ntfsprogs-"$VER_NTFSPROGS"/Makefile ];
  then
	cd "$compiledir"/ntfsprogs-"$VER_NTFSPROGS" || exit 1
	make $smp_mflags libs
	cd "$pwd_saved" || exit 1
  fi
fi
fi

if [ "$VER_LIBEWF" != "" ];
then
CONFIGUREOPT="$CONFIGUREOPT --with-ewf-lib=${PWDSRC}/libewf-${VER_LIBEWF}/libewf/.libs/ --with-ewf-includes=${PWDSRC}/libewf-${VER_LIBEWF}/include/"

if [ ! -e "$compiledir"/libewf-"$VER_LIBEWF"/configure ];
then
  if [ ! -e libewf-"$VER_LIBEWF".tar.gz ] && [ ! -e libewf-alpha-"$VER_LIBEWF".tar.gz ] && [ ! -e libewf-beta-"$VER_LIBEWF".tar.gz ];
    then
  	$LYNX "http://sourceforge.net/project/platformdownload.php?group_id=167783"
  fi
  if [ -e libewf-"$VER_LIBEWF".tar.gz ];
  then
	tar xzf libewf-"$VER_LIBEWF".tar.gz -C "$compiledir"
  fi
  if [ -e libewf-alpha-"$VER_LIBEWF".tar.gz ];
  then
	tar xzf libewf-alpha-"$VER_LIBEWF".tar.gz -C "$compiledir"
  fi
  if [ -e libewf-beta-"$VER_LIBEWF".tar.gz ];
  then
	tar xzf libewf-beta-"$VER_LIBEWF".tar.gz -C "$compiledir"
  fi
fi

if [ ! -e "$compiledir"/libewf-"$VER_LIBEWF"/Makefile ];
then
  if [ -e "$compiledir"/libewf-"$VER_LIBEWF"/configure ];
  then
#        rm -f "$compiledir"/Makefile
	cd "$compiledir"/libewf-"$VER_LIBEWF" || exit 1
	CC=$TESTDISKCC ./configure --host="$crosscompile_target" --prefix="$prefix"
	cd "$pwd_saved" || exit 1
  fi
fi

if [ ! -e "$LIBEWF" ];
then
  if [ -e "$compiledir"/libewf-"$VER_LIBEWF"/Makefile ];
  then
	cd "$compiledir"/libewf-"$VER_LIBEWF" || exit 1
	make $smp_mflags lib
	cd "$pwd_saved" || exit 1
  fi
fi
fi

echo "Try to compile TestDisk"
CC=$TESTDISKCC
export CC

if [ -d "$compiledir" ];
then
  if [ ! -e "$compiledir"/Makefile ];
  then
        cd "$compiledir" || exit 1
        case "$crosscompile_target" in
          powerpc-apple-darwin)
# libewf should work under MacOSX but it hasn't been tested
# use  --with-ncurses-lib="$prefix"/usr/lib to get binaries that don't need libncurses
# but users may be unable to navigate...
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --without-ewf --enable-sudo --with-sudo-bin=/usr/bin/sudo  --disable-qt --disable-assert --enable-record-compilation-date
                ;;
	  i686-apple-darwin9)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --enable-sudo --with-sudo-bin=/usr/bin/sudo --disable-qt --disable-stack-protector --enable-record-compilation-date
                ;;
          i586-pc-msdosdjgpp)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --without-ewf --without-iconv --disable-qt --enable-record-compilation-date
                ;;
          i386-mingw32)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --without-iconv --enable-missing-uuid-ok --enable-record-compilation-date
                ;;
	  i686-pc-mingw32|x86_64-pc-mingw32|i686-w64-mingw32|x86_64-w64-mingw32)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --enable-missing-uuid-ok --enable-qt --enable-record-compilation-date
                ;;
	  arm-marvell-linux-gnu)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --without-ewf --without-ntfs --disable-qt --enable-record-compilation-date
                ;;
	  arm-none-linux-gnueabi|powerpc-linux-gnuspe|aarch64-QNAP-linux-gnu)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --without-ntfs --disable-qt --enable-record-compilation-date
                ;;
          *cygwin*)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --enable-missing-uuid-ok --enable-record-compilation-date
                ;;
          *)
		"$confdir"/configure --host="$crosscompile_target" --prefix="$prefix" $CONFIGUREOPT --enable-record-compilation-date
                ;;
	esac
	cd "$pwd_saved" || exit 1
  fi
  if [ -e "$compiledir"/Makefile ];
  then
        cd "$compiledir" || exit 1
        make $smp_mflags
	cd "$pwd_saved" || exit 1
  fi
fi