| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2009 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/virtualx.eclass,v 1.21 2005/07/06 19:58:37 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/virtualx.eclass,v 1.33 2009/12/21 17:27:28 abcd Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass can be used for packages that needs a working X environment to build |
7 | # This eclass can be used for packages that needs a working X environment to build |
| 8 | |
8 | |
| 9 | ECLASS=virtualx |
9 | # Is a dependency on xorg-server and xhost needed? |
| 10 | DEPEND="X? ( virtual/x11 )" |
10 | # Valid values are "always", "optional", and "manual" |
| 11 | IUSE="X" |
11 | # "tests" is treated as a synonym for "optional" |
|
|
12 | : ${VIRTUALX_REQUIRED:=optional} |
|
|
13 | |
|
|
14 | # If VIRTUALX_REQUIRED=optional, what use flag should control |
|
|
15 | # the dependency? Default is "test" |
|
|
16 | : ${VIRTUALX_USE:=test} |
|
|
17 | |
|
|
18 | # Dep string available for use outside of eclass, in case a more |
|
|
19 | # complicated dep is needed |
|
|
20 | VIRTUALX_DEPEND="x11-base/xorg-server |
|
|
21 | x11-apps/xhost" |
|
|
22 | |
|
|
23 | case ${VIRTUALX_REQUIRED} in |
|
|
24 | always) |
|
|
25 | DEPEND="${VIRTUALX_DEPEND}" |
|
|
26 | RDEPEND="" |
|
|
27 | ;; |
|
|
28 | optional|tests) |
|
|
29 | DEPEND="${VIRTUALX_USE}? ( ${VIRTUALX_DEPEND} )" |
|
|
30 | RDEPEND="" |
|
|
31 | IUSE="${VIRTUALX_USE}" |
|
|
32 | ;; |
|
|
33 | manual) |
|
|
34 | ;; |
|
|
35 | *) |
|
|
36 | eerror "Invalid value (${VIRTUALX_REQUIRED}) for VIRTUALX_REQUIRED" |
|
|
37 | eerror "Valid values are:" |
|
|
38 | eerror " always" |
|
|
39 | eerror " optional (default if unset)" |
|
|
40 | eerror " manual" |
|
|
41 | die "Invalid value (${VIRTUALX_REQUIRED}) for VIRTUALX_REQUIRED" |
|
|
42 | ;; |
|
|
43 | esac |
| 12 | |
44 | |
| 13 | DESCRIPTION="Based on the $ECLASS eclass" |
45 | DESCRIPTION="Based on the $ECLASS eclass" |
| 14 | |
46 | |
| 15 | # |
|
|
| 16 | # Brian Harring <ferringb@gentoo.org> 11/04/2004 |
|
|
| 17 | # do not disable the sandbox during the depend phase. |
|
|
| 18 | # ebuilds shouldn't touch the fs during depend phase, nor screw with the sandbox. |
|
|
| 19 | # |
|
|
| 20 | if [[ ${EBUILD_PHASE/depend} == "${EBUILD_PHASE}" ]] ; then |
|
|
| 21 | [[ -z ${SANDBOX_DISABLED} ]] && export SANDBOX_DISABLED="0" || : |
|
|
| 22 | fi |
|
|
| 23 | |
|
|
| 24 | virtualmake() { |
47 | virtualmake() { |
| 25 | local retval=0 |
48 | local retval=0 |
| 26 | local OLD_SANDBOX_DISABLED="${SANDBOX_DISABLED}" |
49 | local OLD_SANDBOX_ON="${SANDBOX_ON}" |
| 27 | local XVFB=$(type -p Xvfb) |
50 | local XVFB=$(type -p Xvfb) |
| 28 | local XHOST=$(type -p xhost) |
51 | local XHOST=$(type -p xhost) |
| 29 | |
52 | |
| 30 | # If $DISPLAY is not set, or xhost cannot connect to an X |
53 | # If $DISPLAY is not set, or xhost cannot connect to an X |
| 31 | # display, then do the Xvfb hack. |
54 | # display, then do the Xvfb hack. |
| … | |
… | |
| 33 | ( [[ -z ${DISPLAY} ]] || ! (${XHOST} &>/dev/null) ) ; then |
56 | ( [[ -z ${DISPLAY} ]] || ! (${XHOST} &>/dev/null) ) ; then |
| 34 | export XAUTHORITY= |
57 | export XAUTHORITY= |
| 35 | # The following is derived from Mandrake's hack to allow |
58 | # The following is derived from Mandrake's hack to allow |
| 36 | # compiling without the X display |
59 | # compiling without the X display |
| 37 | |
60 | |
| 38 | einfo "Scanning for a open DISPLAY to start Xvfb ..." |
61 | einfo "Scanning for an open DISPLAY to start Xvfb ..." |
| 39 | |
62 | |
| 40 | # We really do not want SANDBOX enabled here |
63 | # We really do not want SANDBOX enabled here |
| 41 | export SANDBOX_DISABLED="1" |
64 | export SANDBOX_ON="0" |
| 42 | |
65 | |
| 43 | local i=0 |
66 | local i=0 |
| 44 | XDISPLAY=$(i=0; while [[ -f /tmp/.X${i}-lock ]] ; do i=$((${i}+1));done; echo ${i}) |
67 | XDISPLAY=$(i=0; while [[ -f /tmp/.X${i}-lock ]] ; do ((i++));done; echo ${i}) |
| 45 | |
68 | |
| 46 | # If we are in a chrooted environment, and there is already a |
69 | # If we are in a chrooted environment, and there is already a |
| 47 | # X server started outside of the chroot, Xvfb will fail to start |
70 | # X server started outside of the chroot, Xvfb will fail to start |
| 48 | # on the same display (most cases this is :0 ), so make sure |
71 | # on the same display (most cases this is :0 ), so make sure |
| 49 | # Xvfb is started, else bump the display number |
72 | # Xvfb is started, else bump the display number |
| 50 | # |
73 | # |
| … | |
… | |
| 54 | # support has been dropped in Xvfb in the xorg-x11 pre-releases. |
77 | # support has been dropped in Xvfb in the xorg-x11 pre-releases. |
| 55 | # For now only depths up to 24-bit are supported. |
78 | # For now only depths up to 24-bit are supported. |
| 56 | # |
79 | # |
| 57 | # Sven Wegener <swegener@gentoo.org> - 22 Aug 2004 |
80 | # Sven Wegener <swegener@gentoo.org> - 22 Aug 2004 |
| 58 | # |
81 | # |
|
|
82 | # Use "-fp built-ins" because it's only part of the default font path |
|
|
83 | # for Xorg but not the other DDXs (Xvfb, Kdrive, etc). Temporarily fixes |
|
|
84 | # bug 278487 until xorg-server is properly patched |
|
|
85 | # |
|
|
86 | # Rémi Cardona <remi@gentoo.org> (10 Aug 2009) |
| 59 | ${XVFB} :${XDISPLAY} -screen 0 800x600x24 &>/dev/null & |
87 | ${XVFB} :${XDISPLAY} -fp built-ins -screen 0 800x600x24 &>/dev/null & |
| 60 | sleep 2 |
88 | sleep 2 |
| 61 | |
89 | |
| 62 | local start=${XDISPLAY} |
90 | local start=${XDISPLAY} |
| 63 | while [[ ! -f /tmp/.X${XDISPLAY}-lock ]] ; do |
91 | while [[ ! -f /tmp/.X${XDISPLAY}-lock ]] ; do |
| 64 | # Stop trying after 15 tries |
92 | # Stop trying after 15 tries |
| 65 | if [[ $((${XDISPLAY} - ${start})) -gt 15 ]] ; then |
93 | if ((XDISPLAY - start > 15)) ; then |
| 66 | |
94 | |
| 67 | eerror "" |
95 | eerror "" |
| 68 | eerror "Unable to start Xvfb." |
96 | eerror "Unable to start Xvfb." |
| 69 | eerror "" |
97 | eerror "" |
| 70 | eerror "'/usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x24' returns:" |
98 | eerror "'${XVFB} :${XDISPLAY} -fp built-ins -screen 0 800x600x24' returns:" |
| 71 | eerror "" |
99 | eerror "" |
| 72 | ${XVFB} :${XDISPLAY} -screen 0 800x600x24 |
100 | ${XVFB} :${XDISPLAY} -fp built-ins -screen 0 800x600x24 |
| 73 | eerror "" |
101 | eerror "" |
| 74 | eerror "If possible, correct the above error and try your emerge again." |
102 | eerror "If possible, correct the above error and try your emerge again." |
| 75 | eerror "" |
103 | eerror "" |
| 76 | die |
104 | die |
| 77 | fi |
105 | fi |
| 78 | |
106 | |
| 79 | XDISPLAY=$((${XDISPLAY}+1)) |
107 | ((XDISPLAY++)) |
| 80 | ${XVFB} :${XDISPLAY} -screen 0 800x600x24 &>/dev/null & |
108 | ${XVFB} :${XDISPLAY} -fp built-ins -screen 0 800x600x24 &>/dev/null & |
| 81 | sleep 2 |
109 | sleep 2 |
| 82 | done |
110 | done |
| 83 | |
111 | |
| 84 | # Now enable SANDBOX again if needed. |
112 | # Now enable SANDBOX again if needed. |
| 85 | export SANDBOX_DISABLED="${OLD_SANDBOX_DISABLED}" |
113 | export SANDBOX_ON="${OLD_SANDBOX_ON}" |
| 86 | |
114 | |
| 87 | einfo "Starting Xvfb on \$DISPLAY=${XDISPLAY} ..." |
115 | einfo "Starting Xvfb on \$DISPLAY=${XDISPLAY} ..." |
| 88 | |
116 | |
| 89 | export DISPLAY=:${XDISPLAY} |
117 | export DISPLAY=:${XDISPLAY} |
| 90 | #Do not break on error, but setup $retval, as we need |
118 | #Do not break on error, but setup $retval, as we need |
| 91 | #to kill Xvfb |
119 | #to kill Xvfb |
| 92 | ${maketype} $* |
120 | ${maketype} "$@" |
| 93 | retval=$? |
121 | retval=$? |
| 94 | |
122 | |
| 95 | #Now kill Xvfb |
123 | #Now kill Xvfb |
| 96 | kill $(cat /tmp/.X${XDISPLAY}-lock) |
124 | kill $(cat /tmp/.X${XDISPLAY}-lock) |
| 97 | else |
125 | else |
| 98 | #Normal make if we can connect to an X display |
126 | #Normal make if we can connect to an X display |
| 99 | ${maketype} $* |
127 | ${maketype} "$@" |
| 100 | retval=$? |
128 | retval=$? |
| 101 | fi |
129 | fi |
| 102 | |
130 | |
| 103 | return ${retval} |
131 | return ${retval} |
| 104 | } |
132 | } |
| 105 | |
133 | |
| 106 | #Same as "make", but setup the Xvfb hack if needed |
134 | #Same as "make", but setup the Xvfb hack if needed |
| 107 | Xmake() { |
135 | Xmake() { |
| 108 | export maketype="make" |
136 | export maketype="make" |
| 109 | virtualmake "$*" |
137 | virtualmake "$@" |
| 110 | } |
138 | } |
| 111 | |
139 | |
| 112 | #Same as "emake", but setup the Xvfb hack if needed |
140 | #Same as "emake", but setup the Xvfb hack if needed |
| 113 | Xemake() { |
141 | Xemake() { |
| 114 | export maketype="emake" |
142 | export maketype="emake" |
| 115 | virtualmake "$*" |
143 | virtualmake "$@" |
| 116 | } |
144 | } |
| 117 | |
145 | |
| 118 | #Same as "econf", but setup the Xvfb hack if needed |
146 | #Same as "econf", but setup the Xvfb hack if needed |
| 119 | Xeconf() { |
147 | Xeconf() { |
| 120 | export maketype="econf" |
148 | export maketype="econf" |
| 121 | virtualmake "$*" |
149 | virtualmake "$@" |
| 122 | } |
150 | } |