Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: x11-base/xorg-server/xorg-server-1.9.3-r9.ebuild

Issue 6896013: Setup the font path to built-ins only. (Closed) Base URL: ssh://gitrw.chromium.org:9222/chromiumos-overlay.git@master
Patch Set: Uprev the ebuild. Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « x11-base/xorg-server/xorg-server-1.10.1.ebuild ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/x11-base/xorg-server/xorg-server-1.9.2.ebuild ,v 1.3 2010/12/19 13:07:34 ssuominen Exp $ 3 # $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/xorg-server-1.9.2.ebuild ,v 1.3 2010/12/19 13:07:34 ssuominen Exp $
4 4
5 EAPI=3 5 EAPI=3
6 # They generate the configure.ac with wrong version of util-macros 6 # They generate the configure.ac with wrong version of util-macros
7 # see bug #339988 7 # see bug #339988
8 XORG_EAUTORECONF="yes" 8 XORG_EAUTORECONF="yes"
9 inherit xorg-2 multilib versionator 9 inherit xorg-2 multilib versionator
10 10
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 $(use_enable opengl glx) 171 $(use_enable opengl glx)
172 $(use_enable x86 xaa) 172 $(use_enable x86 xaa)
173 $(use_enable xorg) 173 $(use_enable xorg)
174 $(use_enable nptl glx-tls) 174 $(use_enable nptl glx-tls)
175 $(use_enable udev config-udev) 175 $(use_enable udev config-udev)
176 $(use_with doc doxygen) 176 $(use_with doc doxygen)
177 $(use_with doc xmlto) 177 $(use_with doc xmlto)
178 --sysconfdir=/etc/X11 178 --sysconfdir=/etc/X11
179 --localstatedir=/var 179 --localstatedir=/var
180 --enable-install-setuid 180 --enable-install-setuid
181 --with-fontrootdir=/usr/share/fonts
182 --with-xkb-output=/var/lib/xkb 181 --with-xkb-output=/var/lib/xkb
183 --disable-config-hal 182 --disable-config-hal
184 --without-dtrace 183 --without-dtrace
185 --without-fop 184 --without-fop
186 --with-sha1=libcrypto 185 --with-sha1=libcrypto
187 --disable-xvmc 186 --disable-xvmc
188 --disable-xdmcp 187 --disable-xdmcp
189 --disable-screensaver 188 --disable-screensaver
190 --disable-xdm-auth-1 189 --disable-xdm-auth-1
191 --disable-dbe 190 --disable-dbe
192 --disable-xinerama 191 --disable-xinerama
193 --disable-dga 192 --disable-dga
194 --disable-xace 193 --disable-xace
195 --disable-config-dbus 194 --disable-config-dbus
196 --disable-config-hal 195 --disable-config-hal
197 --disable-clientids 196 --disable-clientids
198 --disable-xf86vidmode 197 --disable-xf86vidmode
199 --disable-registry 198 --disable-registry
200 --disable-xfake 199 --disable-xfake
201 --disable-dmx 200 --disable-dmx
202 --disable-xvfb 201 --disable-xvfb
203 --disable-xnest 202 --disable-xnest
204 --enable-null-root-cursor 203 --enable-null-root-cursor
204 --with-default-font-path=built-ins
205 ${conf_opts}" 205 ${conf_opts}"
206 206
207 # Things we may want to remove later: 207 # Things we may want to remove later:
208 # --disable-xaa (requires dropping all xaa drivers) 208 # --disable-xaa (requires dropping all xaa drivers)
209 # --disable-xv (requires fixing the drivers) 209 # --disable-xv (requires fixing the drivers)
210 # --disable-tcp-transport 210 # --disable-tcp-transport
211 # --disable-ipv6 211 # --disable-ipv6
212 # --disable-secure-rpc 212 # --disable-secure-rpc
213 213
214 # Xorg-server requires includes from OS mesa which are not visible for 214 # Xorg-server requires includes from OS mesa which are not visible for
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 } 322 }
323 323
324 ensure_a_server_is_building() { 324 ensure_a_server_is_building() {
325 for server in ${IUSE_SERVERS}; do 325 for server in ${IUSE_SERVERS}; do
326 use ${server} && return; 326 use ${server} && return;
327 done 327 done
328 eerror "You need to specify at least one server to build." 328 eerror "You need to specify at least one server to build."
329 eerror "Valid servers are: ${IUSE_SERVERS}." 329 eerror "Valid servers are: ${IUSE_SERVERS}."
330 die "No servers were specified to build." 330 die "No servers were specified to build."
331 } 331 }
OLDNEW
« no previous file with comments | « x11-base/xorg-server/xorg-server-1.10.1.ebuild ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698