aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_wage/create_wage.sh
blob: bb0e9ee6d9b4a2ce538b767359006d4fb63b2d89 (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
#bash
#
# Based on instructions posted at
# http://apple.stackexchange.com/questions/58243/can-i-get-the-original-mac-font-chicago-on-a-mountain-lion-mac

echo_n() {
	printf "$@"
}

echo_n "Downloading System 7.0.1 image..."
if test ! -f System_7.0.1.smi.bin; then
  curl -s http://download.info.apple.com/Apple_Support_Area/Apple_Software_Updates/English-North_American/Macintosh/System/Older_System/System_7.0.x/System_7.0.1.smi.bin -o System_7.0.1.smi.bin
fi

if test ! -f System_7.0.1.smi.bin; then
	echo "Cannot download System_7.0.1.smi.bin"
	exit
fi

echo done

echo_n "Mounting System 7.0.1 image..."

macbinary decode System_7.0.1.smi.bin
hdiutil convert -quiet System\ 7.0.1.smi -format UDRO -o sys7.dmg
hdiutil attach -quiet sys7.dmg

if test ! -f /Volumes/7.0.1\ \(1440k.images\)/Fonts.image; then
	echo "Failed to attach sys7.dmg"
	exit
fi

echo done

echo_n "Mounting Fonts disk image..."

hdiutil convert -quiet /Volumes/7.0.1\ \(1440k.images\)/Fonts.image -format UDRO -o fonts.dmg
hdiutil detach -quiet `hdiutil info|grep "/Volumes/7.0.1 (1440k.images)"|cut -f 1`
hdiutil attach -quiet fonts.dmg

if test ! -f /Volumes/Fonts/Chicago; then
	echo "Failed to attach fonts.dmg"
	exit
fi

echo done

echo_n "Copying fonts..."

for i in Athens Cairo Chicago Courier Geneva Helvetica London "Los Angeles" Monaco "New York" Palatino "San Francisco" Symbol Times Venice
do
  echo $i
  macbinary encode "/Volumes/Fonts/$i" -o "$i.bin" -n
done

echo ...Done

hdiutil detach -quiet `hdiutil info|grep "/Volumes/Fonts"|cut -f 1`

if test ! -f fondu_src-060102.tgz; then
  echo_n "Getting fondu_src-060102.tgz..."
  curl -s http://fondu.sourceforge.net/fondu_src-060102.tgz -o fondu_src-060102.tgz
  tar xf fondu_src-060102.tgz
fi

if test ! -d fondu-060102; then
	echo "Failed to download fondu_src-060102.tgz"
	exit
fi

echo done

if test ! -x fondu-060102/fondu; then
  echo_n "Compiling fondu..."
  cd fondu-060102
  ./configure >configure.log 2>&1 && make 2>&1 >make.log
  cd ..
fi

if test ! -x fondu-060102/fondu; then
	echo "Failed to build fondu. See configure.log and make.log"
	exit
else
	rm -f configure.log make.log
fi

echo done

echo_n "Converting fonts..."
fondu-060102/fondu -force *.bin
echo done

zip -9 wage *.bdf
mv wage.zip wage.dat

echo_n "Cleaning up..."
rm *.bdf
rm *.ttf
rm *.bin
rm *.dmg
echo done