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

Side by Side Diff: x11-base/xorg-server/xorg-server-1.10.1.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 | « no previous file | x11-base/xorg-server/xorg-server-1.9.3-r9.ebuild » ('j') | 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 $(use_enable opengl glx) 172 $(use_enable opengl glx)
173 $(use_enable x86 xaa) 173 $(use_enable x86 xaa)
174 $(use_enable xorg) 174 $(use_enable xorg)
175 $(use_enable nptl glx-tls) 175 $(use_enable nptl glx-tls)
176 $(use_enable udev config-udev) 176 $(use_enable udev config-udev)
177 $(use_with doc doxygen) 177 $(use_with doc doxygen)
178 $(use_with doc xmlto) 178 $(use_with doc xmlto)
179 --sysconfdir=/etc/X11 179 --sysconfdir=/etc/X11
180 --localstatedir=/var 180 --localstatedir=/var
181 --enable-install-setuid 181 --enable-install-setuid
182 --with-fontrootdir=/usr/share/fonts
183 --with-xkb-output=/var/lib/xkb 182 --with-xkb-output=/var/lib/xkb
184 --disable-config-hal 183 --disable-config-hal
185 --without-dtrace 184 --without-dtrace
186 --without-fop 185 --without-fop
187 --with-sha1=libcrypto 186 --with-sha1=libcrypto
188 --disable-xvmc 187 --disable-xvmc
189 --disable-xdmcp 188 --disable-xdmcp
190 --disable-screensaver 189 --disable-screensaver
191 --disable-xdm-auth-1 190 --disable-xdm-auth-1
192 --disable-dbe 191 --disable-dbe
193 --disable-xinerama 192 --disable-xinerama
194 --disable-dga 193 --disable-dga
195 --disable-xace 194 --disable-xace
196 --disable-config-dbus 195 --disable-config-dbus
197 --disable-config-hal 196 --disable-config-hal
198 --disable-clientids 197 --disable-clientids
199 --disable-xf86vidmode 198 --disable-xf86vidmode
200 --disable-registry 199 --disable-registry
201 --disable-xfake 200 --disable-xfake
202 --disable-dmx 201 --disable-dmx
203 --disable-xvfb 202 --disable-xvfb
204 --disable-xnest 203 --disable-xnest
205 --enable-null-root-cursor 204 --enable-null-root-cursor
205 --with-default-font-path=built-ins
206 ${conf_opts}" 206 ${conf_opts}"
207 207
208 # Things we may want to remove later: 208 # Things we may want to remove later:
209 # --disable-xaa (requires dropping all xaa drivers) 209 # --disable-xaa (requires dropping all xaa drivers)
210 # --disable-xv (requires fixing the drivers) 210 # --disable-xv (requires fixing the drivers)
211 # --disable-tcp-transport 211 # --disable-tcp-transport
212 # --disable-ipv6 212 # --disable-ipv6
213 # --disable-secure-rpc 213 # --disable-secure-rpc
214 214
215 # Xorg-server requires includes from OS mesa which are not visible for 215 # Xorg-server requires includes from OS mesa which are not visible for
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 } 323 }
324 324
325 ensure_a_server_is_building() { 325 ensure_a_server_is_building() {
326 for server in ${IUSE_SERVERS}; do 326 for server in ${IUSE_SERVERS}; do
327 use ${server} && return; 327 use ${server} && return;
328 done 328 done
329 eerror "You need to specify at least one server to build." 329 eerror "You need to specify at least one server to build."
330 eerror "Valid servers are: ${IUSE_SERVERS}." 330 eerror "Valid servers are: ${IUSE_SERVERS}."
331 die "No servers were specified to build." 331 die "No servers were specified to build."
332 } 332 }
OLDNEW
« no previous file with comments | « no previous file | x11-base/xorg-server/xorg-server-1.9.3-r9.ebuild » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698