summaryrefslogtreecommitdiff
path: root/atari/scripts/mkpkg.sh
blob: 2263ad8255096443d263ec05556d9a7359dfc5ec (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
#!/bin/bash

# this is an small build script to create an package for nsgem
# invoke: mkpkg.sh [-s,-d,-8,-fonts]
#
# Parameters: 
# 
# -8
# Description: The package will be build for 8.3 filesystems
#              This also defines the -fonts parameter
#
# -fonts
# Description: The package will include the DejaVu fonts package 
#              ( 8.3 compatible names )
#
# -fpath
# Description: Set path to dejavu Fonts
#
# -s (srcpath)
# Description: use it like: -s "path to netsurf root" to configure from which 
# 	            directory the package files are taken. 
#              The Path must have trailing slash!
# 
# -d (dstpath)
# Description: use it like: -d "path to dir where the package will be placed"
#              to configure the output path of this script. 
#              The path mus have trailing slash!
# 

# config variable, set default values
src="/f/netsurf/netsurf/"
dst=$src"atari/pkg/"
shortfs=0
inc_short_fonts=0
font_src="/usr/share/fonts/truetype/ttf-dejavu/"
framebuffer=0

while [ "$1" != "" ]			# When there are arguments...
do					# Process the next one
  case $1				# Look at $1
  in
   -8)
		shortfs="1"
		shift
	;;
	
   -fonts)	
    	inc_short_fonts="1"
		shift
	;;
	
	-fpath)
		shift
		font_src=$1
		shift
	;;
		
	-d)
		shift
		dst=$1
		shift
	;;
	
	-s)
		shift
		src=$1
		shift
	;;
	
	*)	echo "Option [$1] not one of  [-8,-fonts,-d,-s,-fpath]";
	exit;;
	
  esac
done

echo "Building from: "$src
echo "Building in: "$dst
echo "Building for short fs: "$shortfs

if [ "$shortfs" = "1" ] 
then
		inc_short_fonts=1
fi

if [ -d "$font_src" ] 
then
	echo "Found fonts in $font_src"
else
	echo "Error: TTF Fonts not found ($font_src)!"
	exit 0
fi

set -o verbose
rm $dst -r
mkdir $dst
mkdir $dst"download"
mkdir $dst"res"
mkdir $dst"res/icons"
mkdir $dst"res/fonts"
cp $src"ns.prg" $dst
chmod +x $dst"ns.prg"
strip $dst"ns.prg"
stack -S 1000k $dst"ns.prg"

cp $src"atari/res/" $dst -rL
cp $src"\!NetSurf/Resources/AdBlock,f79" $dst"res/adblock.css" -rL
cp $src"\!NetSurf/Resources/CSS,f79" $dst"res/default.css" -rL
cp $src"\!NetSurf/Resources/CSS,f79" $dst"res/quirks.css" -rL
cp $src"\!NetSurf/Resources/SearchEngines" $dst"res/search" -rL
cp $src"\!NetSurf/Resources/ca-bundle" $dst"res/cabundle" -rL
cp $src"\!NetSurf/Resources/en/Messages" $dst"res/messages" -rL
cp $src"\!NetSurf/Resources/Icons/content.png" $dst"res/icons/content.png" -rL
cp $src"\!NetSurf/Resources/Icons/directory.png" $dst"res/icons/dir.png" -rL

#remove uneeded files: 
rm $dst"res/netsurf.rsm"
rm $dst"res/netsurf.rsh"


if [ "$inc_short_fonts" = "1" ]
then 
	cp $font_src"DejaVuSans.ttf" $dst"res/fonts/ss.ttf"
	cp $font_src"DejaVuSans-Bold.ttf" $dst"res/fonts/ssb.ttf"
	cp $font_src"DejaVuSans-Oblique.ttf" $dst"res/fonts/ssi.ttf"
	cp $font_src"DejaVuSans-BoldOblique.ttf" $dst"res/fonts/ssib.ttf"
	cp $font_src"DejaVuSansMono.ttf" $dst"res/fonts/mono.ttf"
	cp $font_src"DejaVuSansMono-Bold.ttf" $dst"res/fonts/monob.ttf"
	cp $font_src"DejaVuSansMono-Oblique.ttf" $dst"res/fonts/cursive.ttf"
	cp $font_src"DejaVuSerif.ttf" $dst"res/fonts/s.ttf"
	cp $font_src"DejaVuSerif-Bold.ttf" $dst"res/fonts/sb.ttf"
	cp $font_src"DejaVuSerifCondensed-Bold.ttf" $dst"res/fonts/fantasy.ttf"
fi

#create an simple startup script: 
if [ "$framebuffer" = "1" ] 
then
echo "NETSURFRES=./res/
export NETSURFRES
./nsfb.prg -v file:///f/" > $dst"ns.sh"
chmod +x $dst"ns.sh"
fi

echo "
atari_screen_driver:vdi
atari_font_driver:freetype
homepage_url:file:///./res/blank
http_proxy:0
http_proxy_host:
http_proxy_port:8123
http_proxy_auth:0
http_proxy_auth_user:
http_proxy_auth_pass:
suppress_curl_debug:1
font_size:120
font_min_size:80
#font_sans:Sans
#font_serif:Serif
#font_mono:Monospace
#font_cursive:Serif
#font_fantasy:Serif
accept_language:
accept_charset:
memory_cache_size:204800
disc_cache_age:28
block_advertisements:0
minimum_gif_delay:0
send_referer:1
animate_images:1
expire_url:28
#font_default:1
ca_bundle:./res/cabundle
ca_path:./res/certs
cookie_file:./res/Cookies
cookie_jar:./res/Cookies
search_url_bar:0
search_provider:0
url_suggestion:0
window_x:0
window_y:0
window_width:0
window_height:0
window_screen_width:0
window_screen_height:0
scale:100
incremental_reflow:1
min_reflow_period:200
tree_icons_dir:./res/icons
core_select_menu:1
max_fetchers:16
max_fetchers_per_host:2
max_cached_fetch_handles:6
target_blank:1
margin_top:10
margin_bottom:10
margin_left:10
margin_right:10
export_scale:70
suppress_images:0
remove_backgrounds:0
enable_loosening:1
enable_PDF_compression:1
enable_PDF_password:0
render_resample:0
downloads_clear:0
request_overwrite:1
downloads_directory:./download
url_file:./res/URLs
button_type:2
disable_popups:0
disable_plugins:0
history_age:0
hover_urls:0
focus_new:0
new_blank:0
hotlist_path:./res/Hotlist
current_theme:0
" > $dst"Choices"

cd $dst
tar cvf - ./* | gzip -c > ns.tar.gz

echo
exit 0