| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License, v2 or later |
2 | # Distributed under the terms of the GNU General Public License v2 |
|
|
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/virtualx.eclass,v 1.12 2003/02/18 09:00:45 carpaski Exp $ |
|
|
4 | # |
| 3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/virtualx.eclass,v 1.5 2002/05/05 17:12:35 azarah Exp $ |
6 | # |
| 5 | # 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 | |
| 6 | ECLASS=virtualx |
9 | ECLASS=virtualx |
|
|
10 | INHERITED="$INHERITED $ECLASS" |
| 7 | newdepend virtual/x11 |
11 | newdepend virtual/x11 |
| 8 | |
12 | |
| 9 | DESCRIPTION="Based on the $ECLASS eclass" |
13 | [ -z "$DESCRIPTION" ] && DESCRIPTION="Based on the $ECLASS eclass" |
|
|
14 | |
|
|
15 | [ -z "${SANDBOX_DISABLED}" ] && export SANDBOX_DISABLED="0" || : |
| 10 | |
16 | |
| 11 | virtualmake() { |
17 | virtualmake() { |
| 12 | local retval=0 |
18 | local retval=0 |
|
|
19 | local OLD_SANDBOX_DISABLED="${SANDBOX_DISABLED}" |
| 13 | |
20 | |
| 14 | #If $DISPLAY is not set, or xhost cannot connect to an X |
21 | #If $DISPLAY is not set, or xhost cannot connect to an X |
| 15 | #display, then do the Xvfb hack. |
22 | #display, then do the Xvfb hack. |
| 16 | if [ -z "$DISPLAY" ] || ! (/usr/X11R6/bin/xhost &>/dev/null) |
23 | if [ -z "$DISPLAY" ] || ! (/usr/X11R6/bin/xhost &>/dev/null) |
| 17 | then |
24 | then |
| 18 | export XAUTHORITY= |
25 | export XAUTHORITY= |
| 19 | # The following is derived from Mandrake's hack to allow |
26 | # The following is derived from Mandrake's hack to allow |
| 20 | # compiling without the X display |
27 | # compiling without the X display |
| 21 | |
28 | |
| 22 | echo ">>> Scanning for a open DISPLAY to start Xvfb..." |
29 | einfo "Scanning for a open DISPLAY to start Xvfb..." |
|
|
30 | |
|
|
31 | # We really do not want SANDBOX enabled here |
|
|
32 | export SANDBOX_DISABLED="1" |
| 23 | |
33 | |
| 24 | local i=0 |
34 | local i=0 |
| 25 | XDISPLAY=$(i=0; while [ -f /tmp/.X${i}-lock ] ; do i=$((${i}+1));done; echo ${i}) |
35 | XDISPLAY=$(i=0; while [ -f /tmp/.X${i}-lock ] ; do i=$((${i}+1));done; echo ${i}) |
| 26 | |
36 | |
| 27 | # If we are in a chrooted environment, and there is already a |
37 | # If we are in a chrooted environment, and there is already a |
| … | |
… | |
| 32 | # Azarah - 5 May 2002 |
42 | # Azarah - 5 May 2002 |
| 33 | # |
43 | # |
| 34 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
44 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
| 35 | sleep 2 |
45 | sleep 2 |
| 36 | |
46 | |
|
|
47 | local start=${XDISPLAY} |
| 37 | while [ ! -f /tmp/.X${XDISPLAY}-lock ] |
48 | while [ ! -f /tmp/.X${XDISPLAY}-lock ] |
| 38 | do |
49 | do |
|
|
50 | # Stop trying after 15 tries |
|
|
51 | if [ $((${XDISPLAY} - ${start})) -gt 15 ]; then |
|
|
52 | |
|
|
53 | eerror "" |
|
|
54 | eerror "Unable to start Xvfb." |
|
|
55 | eerror "" |
|
|
56 | eerror "'/usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32' returns:" |
|
|
57 | eerror "" |
|
|
58 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 |
|
|
59 | eerror "" |
|
|
60 | eerror "If possible, correct the above error and try your emerge again." |
|
|
61 | eerror "" |
|
|
62 | die |
|
|
63 | fi |
|
|
64 | |
| 39 | XDISPLAY=$((${XDISPLAY}+1)) |
65 | XDISPLAY=$((${XDISPLAY}+1)) |
| 40 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
66 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
| 41 | sleep 2 |
67 | sleep 2 |
| 42 | done |
68 | done |
| 43 | |
69 | |
|
|
70 | # Now enable SANDBOX again if needed. |
|
|
71 | export SANDBOX_DISABLED="${OLD_SANDBOX_DISABLED}" |
|
|
72 | |
| 44 | echo ">>> Starting Xvfb on \$DISPLAY=${XDISPLAY} ..." |
73 | einfo "Starting Xvfb on \$DISPLAY=${XDISPLAY} ..." |
| 45 | |
74 | |
| 46 | export DISPLAY=:${XDISPLAY} |
75 | export DISPLAY=:${XDISPLAY} |
| 47 | #Do not break on error, but setup $retval, as we need |
76 | #Do not break on error, but setup $retval, as we need |
| 48 | #to kill Xvfb |
77 | #to kill Xvfb |
| 49 | ${maketype} $* |
78 | ${maketype} $* |
| … | |
… | |
| 54 | else |
83 | else |
| 55 | #Normal make if we can connect to an X display |
84 | #Normal make if we can connect to an X display |
| 56 | ${maketype} $* |
85 | ${maketype} $* |
| 57 | retval=$? |
86 | retval=$? |
| 58 | fi |
87 | fi |
|
|
88 | |
| 59 | return $retval |
89 | return $retval |
| 60 | } |
90 | } |
| 61 | |
91 | |
| 62 | #Same as "make", but setup the Xvfb hack if needed |
92 | #Same as "make", but setup the Xvfb hack if needed |
| 63 | Xmake() { |
93 | Xmake() { |