Magellan Linux

Contents of /branches/R11-unstable/include/xorg.sminc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 20668 - (show annotations) (download)
Mon Feb 3 10:29:49 2014 UTC (10 years, 3 months ago) by niro
Original Path: trunk/include/xorg.sminc
File size: 4148 byte(s)
-fixed glamor-egl download URI
1 # $Id$
2 # xorg global smage2 functions
3
4 # must: X11_dir (defaults to /usr in sminc)
5 # optional:
6 # X11_FONT_DIR
7 # SRCFILE
8 # SRCDIR
9 # SRC_URI
10 # DEPEND
11 # SDEPEND
12
13 # global xorg functions needed in the sminc
14
15 # checks if ${PNAME} is a font package
16 is_xorg_font()
17 {
18 if [[ ${PNAME/#font-/} != ${PNAME} ]] &&
19 [[ ${PNAME} != font-alias ]] &&
20 [[ ${PNAME} != font-util ]]
21 then
22 return 0
23 fi
24
25 return 1
26 }
27
28 # checks if ${PNAME} is a video driver package
29 is_xorg_video_driver()
30 {
31 [[ ${PNAME/#xf86-video/} != ${PNAME} ]] && return 0
32 return 1
33
34 }
35
36 # checks if ${PNAME} is a input driver package
37 is_xorg_input_driver()
38 {
39 [[ ${PNAME/#xf86-input/} != ${PNAME} ]] && return 0
40 return 1
41 }
42
43 # checks for general driver packages
44 is_xorg_driver()
45 {
46 if is_xorg_video_driver ||
47 is_xorg_input_driver
48 then
49 return 0
50 fi
51
52 return 1
53 }
54
55 # default vars
56 X11_DIR="/usr"
57
58 # satisfy mage with preinstall
59 INHERITS="${INHERITS} xorg"
60
61 # pkg setup
62 : ${SRCFILE="${PNAME}-${PVER}.tar.bz2"}
63 : ${SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"}
64
65 #XORG_MIRROR="http://ftp.x.org/pub"
66 XORG_MIRROR="http://xorg.freedesktop.org/archive"
67
68 if [[ -n ${PCATEGORIE} ]] && [[ -z ${PCAT} ]]
69 then
70 PCAT="${PCATEGORIE}"
71 fi
72
73 # get the right subdir
74 case ${PCAT} in
75 app-doc) URISUBDIR="doc" ;;
76 media-fonts) URISUBDIR="font" ;;
77 x11-apps) URISUBDIR="app" ;;
78 x11-base) URISUBDIR="xserver" ;;
79 x11-drivers) URISUBDIR="driver" ;;
80 x11-libs)
81 case ${PNAME} in
82 glamor-egl) URISUBDIR="driver" ;;
83 *) URISUBDIR="lib" ;;
84 esac
85 ;;
86 x11-misc) case ${PNAME} in
87 xbitmaps|xkbdata) URISUBDIR="data" ;;
88 xkeyboard-config) URISUBDIR="data/xkeyboard-config" ;;
89 *) URISUBDIR="util" ;;
90 esac
91 ;;
92 x11-proto) URISUBDIR="proto" ;;
93 x11-themes) URISUBDIR="data" ;;
94 x11-wm) URISUBDIR="app" ;;
95 esac
96
97 SRC_URI=(
98 ${SRC_URI[*]}
99 ${XORG_MIRROR}/individual/${URISUBDIR}/${SRCFILE}
100 mirror://${PNAME}/${SRCFILE}
101 )
102
103 # add default deps
104 DEPEND="${DEPEND}
105 >= virtual/man"
106
107 SDEPEND="${SDEPEND}
108 >= dev-util/pkgconfig-0.20
109 >= x11-misc/util-macros-1"
110
111 # font dependencies
112 if is_xorg_font
113 then
114 DEPEND="${DEPEND}
115 >= x11-apps/mkfontscale-1
116 >= x11-apps/mkfontdir-1
117 >= media-fonts/font-alias-1"
118
119 # encodings are run-time needed to rebuild the font.dirs files !!
120 # so don't use SDEPEND but DEPEND here!
121 DEPEND="${DEPEND}
122 >= media-fonts/encodings-1"
123
124 XORG_FONT_PKG=yes
125 SPECIAL_VARS="${SPECIAL_VARS} XORG_FONT_PKG"
126 #INHERITS="${INHERITS} xorg"
127 fi
128
129 # default input driver dependencies
130 if is_xorg_input_driver
131 then
132 DEPEND="${DEPEND}
133 >= x11-base/xorg-server-1"
134
135 SDEPEND="${SDEPEND}
136 >= x11-proto/inputproto-1
137 >= x11-proto/randrproto-1
138 >= x11-proto/xproto-7"
139 fi
140
141 # default video driver dependencies
142 if is_xorg_video_driver
143 then
144 DEPEND="${DEPEND}
145 >= x11-base/xorg-server-1"
146
147 SDEPEND="${SDEPEND}
148 >= x11-proto/fontsproto-2
149 >= x11-proto/randrproto-1
150 >= x11-proto/renderproto-0.9
151 >= x11-proto/xextproto-7
152 >= x11-proto/xproto-7
153 >= x11-proto/videoproto-2"
154 fi
155
156 xorg_src_prepare()
157 {
158 munpack ${SRCFILE} || die
159 }
160
161 xorg_src_configure()
162 {
163 cd ${SRCDIR}
164
165 # abort if configure script is not found
166 [ ! -x ./configure ] && return
167
168 local conf_opts="$@"
169
170 # setup fonts
171 if is_xorg_font
172 then
173 # setup default font dir
174 : ${XORG_FONT_DIR=${PNAME##*-}}
175
176 # fix case of font directories
177 XORG_FONT_DIR=${XORG_FONT_DIR/ttf/TTF}
178 XORG_FONT_DIR=${XORG_FONT_DIR/otf/OTF}
179 XORG_FONT_DIR=${XORG_FONT_DIR/type1/Type1}
180 XORG_FONT_DIR=${XORG_FONT_DIR/speedo/Speedo}
181
182 conf_opts="${conf_opts} --with-fontdir=/usr/share/fonts/${XORG_FONT_DIR}"
183 fi
184
185 # setup drivers
186 if is_xorg_driver
187 then
188 # don't build static driver modules
189 conf_opts="${conf_opts} --disable-static"
190 fi
191
192 mconfigure \
193 --prefix=${X11_DIR} \
194 ${conf_opts} \
195 || die
196 }
197
198 xorg_src_compile()
199 {
200 cd ${SRCDIR}
201 xorg_src_configure || die
202 mmake || die
203 }
204
205 xorg_src_check()
206 {
207 cd ${SRCDIR}
208 mmake -k check || die
209 }
210
211 xorg_src_install()
212 {
213 cd ${SRCDIR}
214 make DESTDIR=${BINDIR} install || die
215
216 # remove libtool files for server modules
217 if [ -e ${BINDIR}/usr/$(mlibdir)/xorg/modules ]
218 then
219 find ${BINDIR}/usr/$(mlibdir)/xorg/modules -name '*.la' | xargs rm -f
220 fi
221 }
222
223 export_inherits xorg src_prepare src_compile src_check src_install