-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt_make_PSL_strings.sh
executable file
·64 lines (62 loc) · 2.58 KB
/
gmt_make_PSL_strings.sh
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
#!/usr/bin/env bash
#--------------------------------------------------------------------
#
# Copyright (c) 2012-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
# See LICENSE.TXT file for copying and redistribution conditions.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; version 3 or any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# Contact info: www.generic-mapping-tools.org
#--------------------------------------------------------------------
#
# This script just makes the include file PSL_strings.h
# used by postscriptlight.h
#
COPY_YEAR=$(date +%Y)
# Set temporary directory
TMPDIR=${TMPDIR:-/tmp}
cat << EOF > PSL_strings.h
/*--------------------------------------------------------------------
*
* Copyright (c) 2009-$COPY_YEAR by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/* PSL_strings.h <auto-generated>
*
* The three former include files PSL_label.ps, PSL_text.ps, and PSL_prologue.ps
* are now represented as three very long string literals instead. However,
* they are still the original sources and any edits should be made to them.
*/
EOF
cat << EOF > ${TMPDIR}/t.lis
PSL_label.ps
PSL_text.ps
PSL_prologue.ps
EOF
while read file; do
printf "\n/* Placing content of $file */\n\n" >> PSL_strings.h
n=$(cat $file | wc -l)
let n1=n-1
varname=$(basename $file .ps)
sed -n 1,${n1}p $file | grep -v "^%+" | awk 'BEGIN {printf "static char *%s_str =\n", "'$varname'"}; {printf "\"%s\\n\"\n", $0}' >> PSL_strings.h
sed -n ${n}p $file | awk '{printf "\"%s\\n\";\n", $0}'>> PSL_strings.h
done < ${TMPDIR}/t.lis
rm -f ${TMPDIR}/t.lis