| 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.15 2004/04/11 05:46:09 mr_bones_ 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.8 2002/09/11 17:22:02 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 |
| 7 | INHERITED="$INHERITED $ECLASS" |
10 | INHERITED="$INHERITED $ECLASS" |
| 8 | newdepend virtual/x11 |
11 | DEPEND="virtual/x11" |
| 9 | |
12 | |
| 10 | DESCRIPTION="Based on the $ECLASS eclass" |
13 | DESCRIPTION="Based on the $ECLASS eclass" |
| 11 | |
14 | |
| 12 | [ -z "${SANDBOX_DISABLED}" ] && export SANDBOX_DISABLED="0" || : |
15 | [ -z "${SANDBOX_DISABLED}" ] && export SANDBOX_DISABLED="0" || : |
| 13 | |
16 | |
| … | |
… | |
| 39 | # Azarah - 5 May 2002 |
42 | # Azarah - 5 May 2002 |
| 40 | # |
43 | # |
| 41 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
44 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
| 42 | sleep 2 |
45 | sleep 2 |
| 43 | |
46 | |
|
|
47 | local start=${XDISPLAY} |
| 44 | while [ ! -f /tmp/.X${XDISPLAY}-lock ] |
48 | while [ ! -f /tmp/.X${XDISPLAY}-lock ] |
| 45 | 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 | |
| 46 | XDISPLAY=$((${XDISPLAY}+1)) |
65 | XDISPLAY=$((${XDISPLAY}+1)) |
| 47 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
66 | /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & |
| 48 | sleep 2 |
67 | sleep 2 |
| 49 | done |
68 | done |
| 50 | |
69 | |
| … | |
… | |
| 80 | Xemake() { |
99 | Xemake() { |
| 81 | export maketype="emake" |
100 | export maketype="emake" |
| 82 | virtualmake "$*" |
101 | virtualmake "$*" |
| 83 | } |
102 | } |
| 84 | |
103 | |
|
|
104 | #Same as "econf", but setup the Xvfb hack if needed |
|
|
105 | Xeconf() { |
|
|
106 | export maketype="econf" |
|
|
107 | virtualmake "$*" |
|
|
108 | } |