| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.8 2010/08/06 20:46:08 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.32 2011/03/16 16:12:32 scarabeus Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: xorg-2.eclass |
5 | # @ECLASS: xorg-2.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # x11@gentoo.org |
7 | # x11@gentoo.org |
| 8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
| … | |
… | |
| 22 | |
22 | |
| 23 | GIT_ECLASS="" |
23 | GIT_ECLASS="" |
| 24 | if [[ ${PV} == *9999* ]]; then |
24 | if [[ ${PV} == *9999* ]]; then |
| 25 | GIT_ECLASS="git" |
25 | GIT_ECLASS="git" |
| 26 | XORG_EAUTORECONF="yes" |
26 | XORG_EAUTORECONF="yes" |
| 27 | SRC_URI="" |
|
|
| 28 | fi |
27 | fi |
| 29 | |
28 | |
| 30 | # If we're a font package, but not the font.alias one |
29 | # If we're a font package, but not the font.alias one |
| 31 | FONT_ECLASS="" |
30 | FONT_ECLASS="" |
| 32 | if [[ ${PN} == font* \ |
31 | if [[ ${PN} == font* \ |
| … | |
… | |
| 36 | # Activate font code in the rest of the eclass |
35 | # Activate font code in the rest of the eclass |
| 37 | FONT="yes" |
36 | FONT="yes" |
| 38 | FONT_ECLASS="font" |
37 | FONT_ECLASS="font" |
| 39 | fi |
38 | fi |
| 40 | |
39 | |
| 41 | inherit eutils base libtool multilib toolchain-funcs flag-o-matic autotools \ |
40 | inherit autotools-utils eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
| 42 | ${FONT_ECLASS} ${GIT_ECLASS} |
41 | ${FONT_ECLASS} ${GIT_ECLASS} |
| 43 | |
42 | |
| 44 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
43 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
| 45 | case "${EAPI:-0}" in |
44 | case "${EAPI:-0}" in |
| 46 | 3) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
45 | 3|4) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
| 47 | *) DEPEND="EAPI-UNSUPPORTED" ;; |
46 | *) die "EAPI-UNSUPPORTED" ;; |
| 48 | esac |
47 | esac |
| 49 | |
48 | |
| 50 | # exports must be ALWAYS after inherit |
49 | # exports must be ALWAYS after inherit |
| 51 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
50 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
| 52 | |
51 | |
| … | |
… | |
| 57 | # @DESCRIPTION: |
56 | # @DESCRIPTION: |
| 58 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
57 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
| 59 | # before inheriting this eclass. |
58 | # before inheriting this eclass. |
| 60 | : ${XORG_EAUTORECONF:="no"} |
59 | : ${XORG_EAUTORECONF:="no"} |
| 61 | |
60 | |
|
|
61 | # @ECLASS-VARIABLE: XORG_BASE_INDIVIDUAL_URI |
|
|
62 | # @DESCRIPTION: |
| 62 | # Set up SRC_URI for individual modular releases |
63 | # Set up SRC_URI for individual modular releases. If set to an empty |
|
|
64 | # string, no SRC_URI will be provided by the eclass. |
| 63 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
65 | : ${XORG_BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual"} |
|
|
66 | |
| 64 | # @ECLASS-VARIABLE: MODULE |
67 | # @ECLASS-VARIABLE: XORG_MODULE |
| 65 | # @DESCRIPTION: |
68 | # @DESCRIPTION: |
| 66 | # The subdirectory to download source from. Possible settings are app, |
69 | # The subdirectory to download source from. Possible settings are app, |
| 67 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
70 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
| 68 | # inherit to override the default autoconfigured module. |
71 | # inherit to override the default autoconfigured module. |
| 69 | if [[ -z ${MODULE} ]]; then |
72 | if [[ -z ${XORG_MODULE} ]]; then |
| 70 | MODULE="" |
|
|
| 71 | case ${CATEGORY} in |
73 | case ${CATEGORY} in |
| 72 | app-doc) MODULE="doc" ;; |
74 | app-doc) XORG_MODULE=doc/ ;; |
| 73 | media-fonts) MODULE="font" ;; |
75 | media-fonts) XORG_MODULE=font/ ;; |
| 74 | x11-apps|x11-wm) MODULE="app" ;; |
76 | x11-apps|x11-wm) XORG_MODULE=app/ ;; |
| 75 | x11-misc|x11-themes) MODULE="util" ;; |
77 | x11-misc|x11-themes) XORG_MODULE=util/ ;; |
| 76 | x11-drivers) MODULE="driver" ;; |
|
|
| 77 | x11-base) MODULE="xserver" ;; |
78 | x11-base) XORG_MODULE=xserver/ ;; |
|
|
79 | x11-drivers) XORG_MODULE=driver/ ;; |
| 78 | x11-proto) MODULE="proto" ;; |
80 | x11-proto) XORG_MODULE=proto/ ;; |
| 79 | x11-libs) MODULE="lib" ;; |
81 | x11-libs) XORG_MODULE=lib/ ;; |
|
|
82 | *) XORG_MODULE= ;; |
| 80 | esac |
83 | esac |
| 81 | fi |
84 | fi |
| 82 | |
85 | |
|
|
86 | # backcompat, remove when everything in main tree fixed |
|
|
87 | [[ -n ${MODULE} ]] && XORG_MODULE=${MODULE} && ewarn "Your ebuild is using MODULE variable, please migrate to XORG_MODULE to preserve namespace." |
|
|
88 | |
|
|
89 | # @ECLASS-VARIABLE: XORG_PACKAGE_NAME |
|
|
90 | # @DESCRIPTION: |
|
|
91 | # For git checkout the git repository might differ from package name. |
|
|
92 | # This variable can be used for proper directory specification |
|
|
93 | : ${XORG_PACKAGE_NAME:=${PN}} |
|
|
94 | |
| 83 | if [[ -n ${GIT_ECLASS} ]]; then |
95 | if [[ -n ${GIT_ECLASS} ]]; then |
| 84 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
96 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${XORG_MODULE}${PACKAGE_NAME}" |
| 85 | else |
97 | elif [[ -n ${XORG_BASE_INDIVIDUAL_URI} ]]; then |
| 86 | SRC_URI+=" ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
98 | SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${P}.tar.bz2" |
| 87 | fi |
99 | fi |
| 88 | |
100 | |
| 89 | : ${SLOT:=0} |
101 | : ${SLOT:=0} |
| 90 | |
102 | |
| 91 | # Set the license for the package. This can be overridden by setting |
103 | # Set the license for the package. This can be overridden by setting |
| 92 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
104 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
| 93 | # are under the MIT license. (This is what Red Hat does in their rpms) |
105 | # are under the MIT license. (This is what Red Hat does in their rpms) |
| 94 | : ${LICENSE:=MIT} |
106 | : ${LICENSE:=MIT} |
| 95 | |
107 | |
| 96 | # Set up shared dependencies |
108 | # Set up autotools shared dependencies |
| 97 | if [[ ${XORG_EAUTORECONF} != no ]]; then |
109 | # Remember that all versions here MUST be stable |
| 98 | DEPEND+=" |
110 | XORG_EAUTORECONF_ARCHES="x86-interix ppc-aix x86-winnt" |
|
|
111 | EAUTORECONF_DEPEND+=" |
| 99 | >=sys-devel/libtool-2.2.6a |
112 | >=sys-devel/libtool-2.2.6a |
| 100 | sys-devel/m4" |
113 | sys-devel/m4" |
| 101 | # This MUST BE STABLE |
|
|
| 102 | if [[ ${PN} != util-macros ]] ; then |
114 | if [[ ${PN} != util-macros ]] ; then |
| 103 | DEPEND+=" >=x11-misc/util-macros-1.8.0" |
115 | EAUTORECONF_DEPEND+=" >=x11-misc/util-macros-1.12.0" |
| 104 | # Required even by xorg-server |
116 | # Required even by xorg-server |
| 105 | [[ ${PN} == "font-util" ]] || DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
117 | [[ ${PN} == "font-util" ]] || EAUTORECONF_DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
| 106 | fi |
118 | fi |
| 107 | WANT_AUTOCONF="latest" |
119 | WANT_AUTOCONF="latest" |
| 108 | WANT_AUTOMAKE="latest" |
120 | WANT_AUTOMAKE="latest" |
| 109 | fi |
121 | for arch in ${XORG_EAUTORECONF_ARCHES}; do |
|
|
122 | EAUTORECONF_DEPENDS+=" ${arch}? ( ${EAUTORECONF_DEPEND} )" |
|
|
123 | done |
|
|
124 | DEPEND+=" ${EAUTORECONF_DEPENDS}" |
|
|
125 | [[ ${XORG_EAUTORECONF} != no ]] && DEPEND+=" ${EAUTORECONF_DEPEND}" |
|
|
126 | unset EAUTORECONF_DEPENDS |
|
|
127 | unset EAUTORECONF_DEPEND |
| 110 | |
128 | |
| 111 | if [[ ${FONT} == yes ]]; then |
129 | if [[ ${FONT} == yes ]]; then |
| 112 | RDEPEND+=" media-fonts/encodings |
130 | RDEPEND+=" media-fonts/encodings |
| 113 | x11-apps/mkfontscale |
131 | x11-apps/mkfontscale |
| 114 | x11-apps/mkfontdir" |
132 | x11-apps/mkfontdir" |
| 115 | PDEPEND+=" media-fonts/font-alias" |
133 | PDEPEND+=" media-fonts/font-alias" |
|
|
134 | DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
| 116 | |
135 | |
| 117 | # @ECLASS-VARIABLE: FONT_DIR |
136 | # @ECLASS-VARIABLE: FONT_DIR |
| 118 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
| 119 | # If you're creating a font package and the suffix of PN is not equal to |
138 | # If you're creating a font package and the suffix of PN is not equal to |
| 120 | # the subdirectory of /usr/share/fonts/ it should install into, set |
139 | # the subdirectory of /usr/share/fonts/ it should install into, set |
| … | |
… | |
| 146 | |
165 | |
| 147 | # Add static-libs useflag where usefull. |
166 | # Add static-libs useflag where usefull. |
| 148 | if [[ ${XORG_STATIC} == yes \ |
167 | if [[ ${XORG_STATIC} == yes \ |
| 149 | && ${FONT} != yes \ |
168 | && ${FONT} != yes \ |
| 150 | && ${CATEGORY} != app-doc \ |
169 | && ${CATEGORY} != app-doc \ |
|
|
170 | && ${CATEGORY} != x11-apps \ |
| 151 | && ${CATEGORY} != x11-proto \ |
171 | && ${CATEGORY} != x11-proto \ |
| 152 | && ${CATEGORY} != x11-drivers \ |
172 | && ${CATEGORY} != x11-drivers \ |
| 153 | && ${CATEGORY} != media-fonts \ |
173 | && ${CATEGORY} != media-fonts \ |
| 154 | && ${PN} != util-macros \ |
174 | && ${PN} != util-macros \ |
| 155 | && ${PN} != xbitmaps \ |
175 | && ${PN} != xbitmaps \ |
| … | |
… | |
| 158 | IUSE+=" static-libs" |
178 | IUSE+=" static-libs" |
| 159 | fi |
179 | fi |
| 160 | |
180 | |
| 161 | DEPEND+=" >=dev-util/pkgconfig-0.23" |
181 | DEPEND+=" >=dev-util/pkgconfig-0.23" |
| 162 | |
182 | |
| 163 | # Check deps on xorg-server |
183 | # @ECLASS-VARIABLE: XORG_DRI |
| 164 | has dri ${IUSE//+} && DEPEND+=" dri? ( >=x11-base/xorg-server-1.6.3.901-r2[-minimal] )" |
184 | # @DESCRIPTION: |
| 165 | [[ -n "${DRIVER}" ]] && DEPEND+=" x11-base/xorg-server[xorg]" |
185 | # Possible values are "always" or the value of the useflag DRI capabilities |
|
|
186 | # are required for. Default value is "no" |
|
|
187 | # |
|
|
188 | # Eg. XORG_DRI="opengl" will pull all dri dependant deps for opengl useflag |
|
|
189 | : ${XORG_DRI:="no"} |
|
|
190 | |
|
|
191 | DRI_COMMON_DEPEND=" |
|
|
192 | x11-base/xorg-server[-minimal] |
|
|
193 | x11-libs/libdrm |
|
|
194 | " |
|
|
195 | DRI_DEPEND=" |
|
|
196 | x11-proto/xf86driproto |
|
|
197 | x11-proto/glproto |
|
|
198 | x11-proto/dri2proto |
|
|
199 | " |
|
|
200 | case ${XORG_DRI} in |
|
|
201 | no) |
|
|
202 | ;; |
|
|
203 | always) |
|
|
204 | COMMON_DEPEND+=" ${DRI_COMMON_DEPEND}" |
|
|
205 | DEPEND+=" ${DRI_DEPEND}" |
|
|
206 | ;; |
|
|
207 | *) |
|
|
208 | COMMON_DEPEND+=" ${XORG_DRI}? ( ${DRI_COMMON_DEPEND} )" |
|
|
209 | DEPEND+=" ${XORG_DRI}? ( ${DRI_DEPEND} )" |
|
|
210 | IUSE="${XORG_DRI}" |
|
|
211 | ;; |
|
|
212 | esac |
|
|
213 | unset DRI_DEPEND |
|
|
214 | unset DRI_COMMONDEPEND |
|
|
215 | |
|
|
216 | if [[ -n "${DRIVER}" ]]; then |
|
|
217 | COMMON_DEPEND+=" |
|
|
218 | x11-base/xorg-server[xorg] |
|
|
219 | " |
|
|
220 | fi |
|
|
221 | if [[ -n "${DRIVER}" && ${PN} == xf86-video-* ]]; then |
|
|
222 | COMMON_DEPEND+=" |
|
|
223 | x11-libs/libpciaccess |
|
|
224 | " |
|
|
225 | # we also needs some protos and libs in all cases |
|
|
226 | DEPEND+=" |
|
|
227 | x11-proto/fontsproto |
|
|
228 | x11-proto/randrproto |
|
|
229 | x11-proto/renderproto |
|
|
230 | x11-proto/videoproto |
|
|
231 | x11-proto/xextproto |
|
|
232 | x11-proto/xineramaproto |
|
|
233 | x11-proto/xproto |
|
|
234 | " |
|
|
235 | fi |
|
|
236 | |
|
|
237 | # @ECLASS-VARIABLE: XORG_DOC |
|
|
238 | # @DESCRIPTION: |
|
|
239 | # Possible values are "always" or the value of the useflag doc packages |
|
|
240 | # are required for. Default value is "no" |
|
|
241 | # |
|
|
242 | # Eg. XORG_DOC="manual" will pull all doc dependant deps for manual useflag |
|
|
243 | : ${XORG_DOC:="no"} |
|
|
244 | |
|
|
245 | DOC_DEPEND=" |
|
|
246 | doc? ( |
|
|
247 | app-text/asciidoc |
|
|
248 | app-text/xmlto |
|
|
249 | app-doc/doxygen |
|
|
250 | app-text/docbook-xml-dtd:4.1 |
|
|
251 | app-text/docbook-xml-dtd:4.2 |
|
|
252 | app-text/docbook-xml-dtd:4.3 |
|
|
253 | ) |
|
|
254 | " |
|
|
255 | case ${XORG_DOC} in |
|
|
256 | no) |
|
|
257 | ;; |
|
|
258 | always) |
|
|
259 | DEPEND+=" ${DOC_DEPEND}" |
|
|
260 | ;; |
|
|
261 | *) |
|
|
262 | DEPEND+=" ${XORG_DOC}? ( ${DOC_DEPEND} )" |
|
|
263 | IUSE="${XORG_DOC}" |
|
|
264 | ;; |
|
|
265 | esac |
|
|
266 | unset DOC_DEPEND |
|
|
267 | |
|
|
268 | DEPEND+=" ${COMMON_DEPEND}" |
|
|
269 | RDEPEND+=" ${COMMON_DEPEND}" |
|
|
270 | unset COMMON_DEPEND |
|
|
271 | |
|
|
272 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND=${DEPEND}" |
|
|
273 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND=${RDEPEND}" |
|
|
274 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: PDEPEND=${PDEPEND}" |
| 166 | |
275 | |
| 167 | # @FUNCTION: xorg-2_pkg_setup |
276 | # @FUNCTION: xorg-2_pkg_setup |
| 168 | # @USAGE: |
|
|
| 169 | # @DESCRIPTION: |
277 | # @DESCRIPTION: |
| 170 | # Setup prefix compat |
278 | # Setup prefix compat |
| 171 | xorg-2_pkg_setup() { |
279 | xorg-2_pkg_setup() { |
|
|
280 | debug-print-function ${FUNCNAME} "$@" |
|
|
281 | |
| 172 | [[ ${FONT} == yes ]] && font_pkg_setup |
282 | [[ ${FONT} == yes ]] && font_pkg_setup "$@" |
| 173 | } |
283 | } |
| 174 | |
284 | |
| 175 | # @FUNCTION: xorg-2_src_unpack |
285 | # @FUNCTION: xorg-2_src_unpack |
| 176 | # @USAGE: |
|
|
| 177 | # @DESCRIPTION: |
286 | # @DESCRIPTION: |
| 178 | # Simply unpack source code. |
287 | # Simply unpack source code. |
| 179 | xorg-2_src_unpack() { |
288 | xorg-2_src_unpack() { |
|
|
289 | debug-print-function ${FUNCNAME} "$@" |
|
|
290 | |
| 180 | if [[ -n ${GIT_ECLASS} ]]; then |
291 | if [[ -n ${GIT_ECLASS} ]]; then |
| 181 | git_src_unpack |
292 | git_src_unpack |
| 182 | else |
293 | else |
| 183 | unpack ${A} |
294 | unpack ${A} |
| 184 | fi |
295 | fi |
| 185 | |
296 | |
| 186 | [[ -n ${FONT_OPTIONS} ]] && einfo "Detected font directory: ${FONT_DIR}" |
297 | [[ -n ${FONT_OPTIONS} ]] && einfo "Detected font directory: ${FONT_DIR}" |
| 187 | } |
298 | } |
| 188 | |
299 | |
| 189 | # @FUNCTION: xorg-2_patch_source |
300 | # @FUNCTION: xorg-2_patch_source |
| 190 | # @USAGE: |
|
|
| 191 | # @DESCRIPTION: |
301 | # @DESCRIPTION: |
| 192 | # Apply all patches |
302 | # Apply all patches |
| 193 | xorg-2_patch_source() { |
303 | xorg-2_patch_source() { |
|
|
304 | debug-print-function ${FUNCNAME} "$@" |
|
|
305 | |
| 194 | # Use standardized names and locations with bulk patching |
306 | # Use standardized names and locations with bulk patching |
| 195 | # Patch directory is ${WORKDIR}/patch |
307 | # Patch directory is ${WORKDIR}/patch |
| 196 | # See epatch() in eutils.eclass for more documentation |
308 | # See epatch() in eutils.eclass for more documentation |
| 197 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
309 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
| 198 | |
310 | |
| 199 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
311 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
| 200 | base_src_prepare |
312 | autotools-utils_src_prepare "$@" |
| 201 | } |
313 | } |
| 202 | |
314 | |
| 203 | # @FUNCTION: xorg-2_reconf_source |
315 | # @FUNCTION: xorg-2_reconf_source |
| 204 | # @USAGE: |
|
|
| 205 | # @DESCRIPTION: |
316 | # @DESCRIPTION: |
| 206 | # Run eautoreconf if necessary, and run elibtoolize. |
317 | # Run eautoreconf if necessary, and run elibtoolize. |
| 207 | xorg-2_reconf_source() { |
318 | xorg-2_reconf_source() { |
|
|
319 | debug-print-function ${FUNCNAME} "$@" |
|
|
320 | |
| 208 | case ${CHOST} in |
321 | case ${CHOST} in |
| 209 | *-interix* | *-aix* | *-winnt*) |
322 | *-interix* | *-aix* | *-winnt*) |
| 210 | # some hosts need full eautoreconf |
323 | # some hosts need full eautoreconf |
| 211 | [[ -e "./configure.ac" || -e "./configure.in" ]] && eautoreconf || ewarn "Unable to autoreconf the configure script. Things may fail." |
324 | [[ -e "./configure.ac" || -e "./configure.in" ]] && eautoreconf || ewarn "Unable to autoreconf the configure script. Things may fail." |
| 212 | ;; |
325 | ;; |
| … | |
… | |
| 216 | ;; |
329 | ;; |
| 217 | esac |
330 | esac |
| 218 | } |
331 | } |
| 219 | |
332 | |
| 220 | # @FUNCTION: xorg-2_src_prepare |
333 | # @FUNCTION: xorg-2_src_prepare |
| 221 | # @USAGE: |
|
|
| 222 | # @DESCRIPTION: |
334 | # @DESCRIPTION: |
| 223 | # Prepare a package after unpacking, performing all X-related tasks. |
335 | # Prepare a package after unpacking, performing all X-related tasks. |
| 224 | xorg-2_src_prepare() { |
336 | xorg-2_src_prepare() { |
|
|
337 | debug-print-function ${FUNCNAME} "$@" |
|
|
338 | |
| 225 | [[ -n ${GIT_ECLASS} ]] && git_src_prepare |
339 | [[ -n ${GIT_ECLASS} ]] && git_src_prepare |
| 226 | xorg-2_patch_source |
340 | xorg-2_patch_source |
| 227 | xorg-2_reconf_source |
341 | xorg-2_reconf_source |
| 228 | } |
342 | } |
| 229 | |
343 | |
| 230 | # @FUNCTION: xorg-2_font_configure |
344 | # @FUNCTION: xorg-2_font_configure |
| 231 | # @USAGE: |
|
|
| 232 | # @DESCRIPTION: |
345 | # @DESCRIPTION: |
| 233 | # If a font package, perform any necessary configuration steps |
346 | # If a font package, perform any necessary configuration steps |
| 234 | xorg-2_font_configure() { |
347 | xorg-2_font_configure() { |
|
|
348 | debug-print-function ${FUNCNAME} "$@" |
|
|
349 | |
| 235 | if has nls ${IUSE//+} && ! use nls; then |
350 | if has nls ${IUSE//+} && ! use nls; then |
|
|
351 | if grep -q -s "disable-all-encodings" ${ECONF_SOURCE:-.}/configure; then |
| 236 | FONT_OPTIONS+=" |
352 | FONT_OPTIONS+=" |
|
|
353 | --disable-all-encodings" |
|
|
354 | else |
|
|
355 | FONT_OPTIONS+=" |
| 237 | --disable-iso8859-2 |
356 | --disable-iso8859-2 |
| 238 | --disable-iso8859-3 |
357 | --disable-iso8859-3 |
| 239 | --disable-iso8859-4 |
358 | --disable-iso8859-4 |
| 240 | --disable-iso8859-5 |
359 | --disable-iso8859-5 |
| 241 | --disable-iso8859-6 |
360 | --disable-iso8859-6 |
| 242 | --disable-iso8859-7 |
361 | --disable-iso8859-7 |
| 243 | --disable-iso8859-8 |
362 | --disable-iso8859-8 |
| 244 | --disable-iso8859-9 |
363 | --disable-iso8859-9 |
| 245 | --disable-iso8859-10 |
364 | --disable-iso8859-10 |
| 246 | --disable-iso8859-11 |
365 | --disable-iso8859-11 |
| 247 | --disable-iso8859-12 |
366 | --disable-iso8859-12 |
| 248 | --disable-iso8859-13 |
367 | --disable-iso8859-13 |
| 249 | --disable-iso8859-14 |
368 | --disable-iso8859-14 |
| 250 | --disable-iso8859-15 |
369 | --disable-iso8859-15 |
| 251 | --disable-iso8859-16 |
370 | --disable-iso8859-16 |
| 252 | --disable-jisx0201 |
371 | --disable-jisx0201 |
| 253 | --disable-koi8-r" |
372 | --disable-koi8-r" |
| 254 | fi |
373 | fi |
|
|
374 | fi |
| 255 | } |
375 | } |
| 256 | |
376 | |
| 257 | # @FUNCTION: x-modular_flags_setup |
377 | # @FUNCTION: xorg-2_flags_setup |
| 258 | # @USAGE: |
|
|
| 259 | # @DESCRIPTION: |
378 | # @DESCRIPTION: |
| 260 | # Set up CFLAGS for a debug build |
379 | # Set up CFLAGS for a debug build |
| 261 | xorg-2_flags_setup() { |
380 | xorg-2_flags_setup() { |
|
|
381 | debug-print-function ${FUNCNAME} "$@" |
|
|
382 | |
| 262 | # Win32 require special define |
383 | # Win32 require special define |
| 263 | [[ ${CHOST} == *-winnt* ]] && append-cppflags -DWIN32 -D__STDC__ |
384 | [[ ${CHOST} == *-winnt* ]] && append-cppflags -DWIN32 -D__STDC__ |
| 264 | # hardened ldflags |
385 | # hardened ldflags |
| 265 | [[ ${PN} = xorg-server || -n ${DRIVER} ]] && append-ldflags -Wl,-z,lazy |
386 | [[ ${PN} = xorg-server || -n ${DRIVER} ]] && append-ldflags -Wl,-z,lazy |
|
|
387 | |
|
|
388 | # Quite few libraries fail on runtime without these: |
|
|
389 | if has static-libs ${IUSE//+}; then |
|
|
390 | filter-flags -Wl,-Bdirect |
|
|
391 | filter-ldflags -Bdirect |
|
|
392 | filter-ldflags -Wl,-Bdirect |
|
|
393 | fi |
| 266 | } |
394 | } |
| 267 | |
395 | |
| 268 | # @FUNCTION: xorg-2_src_configure |
396 | # @FUNCTION: xorg-2_src_configure |
| 269 | # @USAGE: |
|
|
| 270 | # @DESCRIPTION: |
397 | # @DESCRIPTION: |
| 271 | # Perform any necessary pre-configuration steps, then run configure |
398 | # Perform any necessary pre-configuration steps, then run configure |
| 272 | xorg-2_src_configure() { |
399 | xorg-2_src_configure() { |
| 273 | local myopts="" |
400 | debug-print-function ${FUNCNAME} "$@" |
| 274 | |
401 | |
| 275 | xorg-2_flags_setup |
402 | xorg-2_flags_setup |
|
|
403 | |
|
|
404 | # @VARIABLE: CONFIGURE_OPTIONS |
|
|
405 | # @DESCRIPTION: |
|
|
406 | # Any options to pass to configure |
|
|
407 | # @DEFAULT_UNSET |
|
|
408 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
|
|
409 | |
| 276 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
410 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
| 277 | |
411 | local myeconfargs=( |
| 278 | # @VARIABLE: CONFIGURE_OPTIONS |
412 | --disable-dependency-tracking |
| 279 | # @DESCRIPTION: |
|
|
| 280 | # Any options to pass to configure |
|
|
| 281 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
|
|
| 282 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
|
|
| 283 | if has static-libs ${IUSE//+}; then |
|
|
| 284 | myopts+=" $(use_enable static-libs static)" |
|
|
| 285 | fi |
|
|
| 286 | econf \ |
|
|
| 287 | ${FONT_OPTIONS} \ |
|
|
| 288 | ${CONFIGURE_OPTIONS} \ |
413 | ${CONFIGURE_OPTIONS} |
| 289 | ${myopts} |
414 | ${FONT_OPTIONS} |
| 290 | fi |
415 | ) |
|
|
416 | |
|
|
417 | autotools-utils_src_configure "$@" |
| 291 | } |
418 | } |
| 292 | |
419 | |
| 293 | # @FUNCTION: xorg-2_src_compile |
420 | # @FUNCTION: xorg-2_src_compile |
| 294 | # @USAGE: |
|
|
| 295 | # @DESCRIPTION: |
421 | # @DESCRIPTION: |
| 296 | # Compile a package, performing all X-related tasks. |
422 | # Compile a package, performing all X-related tasks. |
| 297 | xorg-2_src_compile() { |
423 | xorg-2_src_compile() { |
| 298 | base_src_compile |
424 | debug-print-function ${FUNCNAME} "$@" |
|
|
425 | |
|
|
426 | autotools-utils_src_compile "$@" |
| 299 | } |
427 | } |
| 300 | |
428 | |
| 301 | # @FUNCTION: xorg-2_src_install |
429 | # @FUNCTION: xorg-2_src_install |
| 302 | # @USAGE: |
|
|
| 303 | # @DESCRIPTION: |
430 | # @DESCRIPTION: |
| 304 | # Install a built package to ${D}, performing any necessary steps. |
431 | # Install a built package to ${D}, performing any necessary steps. |
| 305 | # Creates a ChangeLog from git if using live ebuilds. |
432 | # Creates a ChangeLog from git if using live ebuilds. |
| 306 | xorg-2_src_install() { |
433 | xorg-2_src_install() { |
|
|
434 | debug-print-function ${FUNCNAME} "$@" |
|
|
435 | |
| 307 | if [[ ${CATEGORY} == x11-proto ]]; then |
436 | if [[ ${CATEGORY} == x11-proto ]]; then |
| 308 | emake \ |
437 | autotools-utils_src_install \ |
| 309 | ${PN/proto/}docdir=${EPREFIX}/usr/share/doc/${PF} \ |
438 | ${PN/proto/}docdir="${EPREFIX}/usr/share/doc/${PF}" \ |
| 310 | DESTDIR="${D}" \ |
439 | docdir="${EPREFIX}/usr/share/doc/${PF}" |
| 311 | install || die "emake install failed" |
|
|
| 312 | else |
440 | else |
| 313 | emake \ |
441 | autotools-utils_src_install \ |
| 314 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
442 | docdir="${EPREFIX}/usr/share/doc/${PF}" |
| 315 | DESTDIR="${D}" \ |
|
|
| 316 | install || die "emake install failed" |
|
|
| 317 | fi |
443 | fi |
| 318 | |
444 | |
| 319 | if [[ -n ${GIT_ECLASS} ]]; then |
445 | if [[ -n ${GIT_ECLASS} ]]; then |
| 320 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
446 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
| 321 | git log ${GIT_TREE} > "${S}"/ChangeLog |
447 | git log ${EGIT_COMMIT} > "${S}"/ChangeLog |
| 322 | popd > /dev/null |
448 | popd > /dev/null |
| 323 | fi |
449 | fi |
| 324 | |
450 | |
| 325 | if [[ -e "${S}"/ChangeLog ]]; then |
451 | if [[ -e "${S}"/ChangeLog ]]; then |
| 326 | dodoc "${S}"/ChangeLog |
|
|
| 327 | fi |
|
|
| 328 | # @VARIABLE: DOCS |
|
|
| 329 | # @DESCRIPTION: |
|
|
| 330 | # Any documentation to install |
|
|
| 331 | if [[ -n ${DOCS} ]]; then |
|
|
| 332 | dodoc ${DOCS} || die "dodoc failed" |
452 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
| 333 | fi |
453 | fi |
| 334 | |
454 | |
| 335 | # Don't install libtool archives for server modules |
455 | # Don't install libtool archives (even with static-libs) |
| 336 | if [[ -e "${D%/}${EPREFIX}/usr/$(get_libdir)/xorg/modules" ]]; then |
456 | remove_libtool_files all |
| 337 | find "${D%/}${EPREFIX}/usr/$(get_libdir)/xorg/modules" -name '*.la' \ |
|
|
| 338 | -exec rm -f {} ';' |
|
|
| 339 | fi |
|
|
| 340 | |
457 | |
| 341 | [[ -n ${FONT} ]] && remove_font_metadata |
458 | [[ -n ${FONT} ]] && remove_font_metadata |
| 342 | } |
459 | } |
| 343 | |
460 | |
| 344 | # @FUNCTION: xorg-2_pkg_postinst |
461 | # @FUNCTION: xorg-2_pkg_postinst |
| 345 | # @USAGE: |
|
|
| 346 | # @DESCRIPTION: |
462 | # @DESCRIPTION: |
| 347 | # Run X-specific post-installation tasks on the live filesystem. The |
463 | # Run X-specific post-installation tasks on the live filesystem. The |
| 348 | # only task right now is some setup for font packages. |
464 | # only task right now is some setup for font packages. |
| 349 | xorg-2_pkg_postinst() { |
465 | xorg-2_pkg_postinst() { |
|
|
466 | debug-print-function ${FUNCNAME} "$@" |
|
|
467 | |
| 350 | [[ -n ${FONT} ]] && setup_fonts |
468 | [[ -n ${FONT} ]] && setup_fonts "$@" |
| 351 | } |
469 | } |
| 352 | |
470 | |
| 353 | # @FUNCTION: xorg-2_pkg_postrm |
471 | # @FUNCTION: xorg-2_pkg_postrm |
| 354 | # @USAGE: |
|
|
| 355 | # @DESCRIPTION: |
472 | # @DESCRIPTION: |
| 356 | # Run X-specific post-removal tasks on the live filesystem. The only |
473 | # Run X-specific post-removal tasks on the live filesystem. The only |
| 357 | # task right now is some cleanup for font packages. |
474 | # task right now is some cleanup for font packages. |
| 358 | xorg-2_pkg_postrm() { |
475 | xorg-2_pkg_postrm() { |
| 359 | if [[ -n ${FONT} ]]; then |
476 | debug-print-function ${FUNCNAME} "$@" |
| 360 | font_pkg_postrm |
477 | |
| 361 | fi |
478 | [[ -n ${FONT} ]] && font_pkg_postrm "$@" |
| 362 | } |
479 | } |
| 363 | |
480 | |
| 364 | # @FUNCTION: setup_fonts |
481 | # @FUNCTION: setup_fonts |
| 365 | # @USAGE: |
|
|
| 366 | # @DESCRIPTION: |
482 | # @DESCRIPTION: |
| 367 | # Generates needed files for fonts and fixes font permissions |
483 | # Generates needed files for fonts and fixes font permissions |
| 368 | setup_fonts() { |
484 | setup_fonts() { |
|
|
485 | debug-print-function ${FUNCNAME} "$@" |
|
|
486 | |
| 369 | create_fonts_scale |
487 | create_fonts_scale |
| 370 | create_fonts_dir |
488 | create_fonts_dir |
| 371 | font_pkg_postinst |
489 | font_pkg_postinst |
| 372 | } |
490 | } |
| 373 | |
491 | |
| 374 | # @FUNCTION: remove_font_metadata |
492 | # @FUNCTION: remove_font_metadata |
| 375 | # @USAGE: |
|
|
| 376 | # @DESCRIPTION: |
493 | # @DESCRIPTION: |
| 377 | # Don't let the package install generated font files that may overlap |
494 | # Don't let the package install generated font files that may overlap |
| 378 | # with other packages. Instead, they're generated in pkg_postinst(). |
495 | # with other packages. Instead, they're generated in pkg_postinst(). |
| 379 | remove_font_metadata() { |
496 | remove_font_metadata() { |
|
|
497 | debug-print-function ${FUNCNAME} "$@" |
|
|
498 | |
| 380 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
499 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
| 381 | einfo "Removing font metadata" |
500 | einfo "Removing font metadata" |
| 382 | rm -rf "${ED}"/usr/share/fonts/${FONT_DIR}/fonts.{scale,dir,cache-1} |
501 | rm -rf "${ED}"/usr/share/fonts/${FONT_DIR}/fonts.{scale,dir,cache-1} |
| 383 | fi |
502 | fi |
| 384 | } |
503 | } |
| 385 | |
504 | |
| 386 | # @FUNCTION: create_fonts_scale |
505 | # @FUNCTION: create_fonts_scale |
| 387 | # @USAGE: |
|
|
| 388 | # @DESCRIPTION: |
506 | # @DESCRIPTION: |
| 389 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
507 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 390 | create_fonts_scale() { |
508 | create_fonts_scale() { |
|
|
509 | debug-print-function ${FUNCNAME} "$@" |
|
|
510 | |
| 391 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
511 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
| 392 | ebegin "Generating font.scale" |
512 | ebegin "Generating font.scale" |
| 393 | mkfontscale \ |
513 | mkfontscale \ |
| 394 | -a "${EROOT}/usr/share/fonts/encodings/encodings.dir" \ |
514 | -a "${EROOT}/usr/share/fonts/encodings/encodings.dir" \ |
| 395 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |
515 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |
| 396 | eend $? |
516 | eend $? |
| 397 | fi |
517 | fi |
| 398 | } |
518 | } |
| 399 | |
519 | |
| 400 | # @FUNCTION: create_fonts_dir |
520 | # @FUNCTION: create_fonts_dir |
| 401 | # @USAGE: |
|
|
| 402 | # @DESCRIPTION: |
521 | # @DESCRIPTION: |
| 403 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
522 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
| 404 | create_fonts_dir() { |
523 | create_fonts_dir() { |
|
|
524 | debug-print-function ${FUNCNAME} "$@" |
|
|
525 | |
| 405 | ebegin "Generating fonts.dir" |
526 | ebegin "Generating fonts.dir" |
| 406 | mkfontdir \ |
527 | mkfontdir \ |
| 407 | -e "${EROOT}"/usr/share/fonts/encodings \ |
528 | -e "${EROOT}"/usr/share/fonts/encodings \ |
| 408 | -e "${EROOT}"/usr/share/fonts/encodings/large \ |
529 | -e "${EROOT}"/usr/share/fonts/encodings/large \ |
| 409 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |
530 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |