Subversion Repositories Tewi

Rev

Rev 235 | Rev 237 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
210 nishi 1
# $Id: Koakumafile 236 2024-10-03 04:50:01Z nishi $
2
# vim: syntax=tcl
3
 
4
proc run {project_name} {
225 nishi 5
	exec sed "s/undef NO_SSL/define NO_SSL/g" config.h.tmpl > config.h
227 nishi 6
	set ::env(DISPLAY) ":0"
211 nishi 7
	RunCommand "make clean"
232 nishi 8
	set dirname ""
223 nishi 9
	if { "$project_name" == "Tewi-BCC" } {
228 nishi 10
		set ::env(LANG) "ja_JP.UTF-8"
223 nishi 11
		set ::env(BORLAND) "C:/borland/bcc55"
12
		RunCommand "make PLATFORM=bcc"
228 nishi 13
		set ::env(LANG) "en_US.UTF-8"
232 nishi 14
		set dirname "bcc"
223 nishi 15
	} elseif { "$project_name" == "Tewi-VC6" } {
16
		RunCommand "make PLATFORM=vc6"
232 nishi 17
		set dirname "vc6"
223 nishi 18
	} elseif { "$project_name" == "Tewi-Watcom" } {
19
		set ::env(WATCOM) "/usr/watcom"
20
		set ::env(INCLUDE) "/usr/watcom/h"
225 nishi 21
		set ::env(PATH) "$::env(PATH):/usr/watcom/binl64"
223 nishi 22
		RunCommand "make PLATFORM=watcom"
232 nishi 23
		set dirname "watcom"
236 nishi 24
	} elseif { "$project_name" == "Tewi-MinGW-32" || "$project_name" == "Tewi-MinGW-64" } {
25
		RunCommand "git clone https://github.com/clamwin/openssl"
26
		set bits 32
27
		if { "$project_name" == "Tewi-MinGW-32" } {
28
			foreach filen [glob openssl/lib/mingw/x86/*] {
29
				RunCommand "cp $filen openssl/lib/"
30
			}
31
		} else {
32
			set bits 64
33
			foreach filen [glob openssl/lib/mingw/x64/*] {
34
				RunCommand "cp $filen openssl/lib/"
35
			}
36
		}
37
		set win "win$bits"
38
		RunCommand "./installer.sh $win"
39
		RunCommand "doas mkdir -p /raid/f/g/tewi/$win"
40
		RunCommand "doas mkdir -p /raid/ftp/pub/tewi/$win"
41
		RunCommand "doas cp install-ssl.exe /raid/f/g/tewi/$win/tewiinst$bits-[exec make get-version]-ssl.exe"
42
		RunCommand "doas cp install-nossl.exe /raid/f/g/tewi/$win/tewiinst$bits-[exec make get-version]-nossl.exe"
43
		RunCommand "doas cp install-ssl.exe /raid/ftp/pub/tewi/$win/tewiinst$bits-[exec make get-version]-ssl.exe"
44
		RunCommand "doas cp install-nossl.exe /raid/ftp/pub/tewi/$win/tewiinst$bits-[exec make get-version]-nossl.exe"
45
		return
223 nishi 46
	} else {
47
		RunCommand "make"
48
	}
229 nishi 49
	file mkdir workdir
50
	file mkdir workdir/etc
51
	file mkdir workdir/www
235 nishi 52
	file mkdir workdir/bin
229 nishi 53
	file mkdir workdir/modules
54
	file delete archive.7z
55
 
56
	exec ./Tool/itworks > workdir/www/index.html
57
	exec ./Tool/genconf C:/Tewi modules dll > workdir/etc/tewi.conf
58
	RunCommand "cp Binary/pbtewi.gif workdir/www/"
235 nishi 59
	RunCommand "cp Server/tewi.exe workdir/bin/"
231 nishi 60
	foreach filen [glob Module/*.dll] {
61
		RunCommand "cp $filen workdir/modules/"
62
	}
229 nishi 63
	cd workdir
64
	RunCommand "7z a ../archive.7z *"
65
	cd ..
66
	exec cat /usr/share/7z.sfx archive.7z > tewidist.exe
67
	RunCommand "rm -rf workdir"
233 nishi 68
	RunCommand "doas mkdir -p /raid/f/g/tewi/$dirname"
69
	RunCommand "doas cp tewidist.exe /raid/f/g/tewi/$dirname/tewidist$dirname-[exec make get-version]-nossl.exe"
234 nishi 70
	RunCommand "doas mkdir -p /raid/ftp/pub/tewi/$dirname"
71
	RunCommand "doas cp tewidist.exe /raid/ftp/pub/tewi/$dirname/tewidist$dirname-[exec make get-version]-nossl.exe"
210 nishi 72
}