-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfiginfo
executable file
·120 lines (101 loc) · 2.96 KB
/
configinfo
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
#!/bin/sh
if [ "$1" == "-csh" ]; then
cshmode='setenv '
else
cshmode=''
fi
pyexe=$(./pydetect -e)
echo ${cshmode}PYTHONEXE=$pyexe
#############################################################
# check for comedi
#############################################################
if [ -e /dev/comedi0 ]; then
echo "${cshmode}HAS_COMEDI=1"
else
echo "${cshmode}HAS_COMEDI=0"
fi
#############################################################
# check for comedi-lib
#############################################################
if [ -x /usr/sbin/comedi_config ]; then
echo "${cshmode}HAS_COMEDILIB=1"
else
echo "${cshmode}HAS_COMEDILIB=0"
fi
#############################################################
# check for SDL
#############################################################
sdl=$(which sdl-config 2> /dev/null)
if [ "$sdl" = "" ]; then
echo "${cshmode}HAS_SDL=0"
else
echo ${cshmode}HAS_SDL=1
echo ${cshmode}SDL_DIR=$($sdl --prefix)
echo ${cshmode}SDL_VERSION=$($sdl --version)
fi
#############################################################
# check for pygame
#############################################################
$pyexe <<EOF
try:
import pygame
print "${cshmode}HAS_PYGAME=1"
print "${cshmode}PYGAME_VERSION=%s" % pygame.__version__
except ImportError:
print "${cshmode}HAS_PYGAME=0"
EOF
#############################################################
# check for Numeric
#############################################################
$pyexe <<EOF
try:
import Numeric
print "${cshmode}HAS_NUMERIC=1"
print "${cshmode}NUMERIC_VERSION=%s" % Numeric.__version__
except ImportError:
print "${cshmode}HAS_NUMERIC=0"
EOF
#############################################################
# check for PIL
#############################################################
$pyexe <<EOF
try:
import PIL
print "${cshmode}HAS_PIL=1"
except ImportError:
print "${cshmode}HAS_PIL=0"
EOF
#############################################################
# check for biggles
#############################################################
$pyexe <<EOF
try:
import biggles
print "${cshmode}HAS_BIGGLES=1"
print "${cshmode}BIGGLES_VERSION=%s" % biggles.__version__
except ImportError:
print "${cshmode}HAS_BIGGLES=0"
EOF
#############################################################
# check for grace
#############################################################
grace=$(rpm -q grace | grep 'not installed')
if [ "$grace" = "" ]; then
echo ${cshmode}HAS_GRACE=1
echo ${cshmode}GRACE_VERSION=$grace
else
echo ${cshmode}HAS_GRACE=0
fi
#############################################################
# check for various RPMS (SDL and biggles related)
#############################################################
for x in SDL_ttf SDL_ttf-devel smpeg smpeg-devel plotutils; do
r=$(rpm -q $x)
tag=$(echo $x | tr '[a-z]' '[A-Z]' | tr -d '_' | tr '-' '_')
if rpm -q $x >/dev/null; then
echo ${cshmode}"$tag"_VERSION=$r
echo ${cshmode}HAS_$tag=1
else
echo ${cshmode}HAS_$tag=0
fi
done