| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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/x-modular.eclass,v 1.51 2006/04/03 02:03:04 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.63 2006/06/30 03:52:57 spyderous Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
7 | # This eclass is designed to reduce code duplication in the modularized X11 |
| 8 | # ebuilds. |
8 | # ebuilds. |
| … | |
… | |
| 41 | IUSE="" |
41 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | |
43 | |
| 44 | # Set up SRC_URI for individual modular releases |
44 | # Set up SRC_URI for individual modular releases |
| 45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 46 | if [[ ${CATEGORY} = x11-apps ]]; then |
46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 47 | SRC_URI="${SRC_URI} |
47 | SRC_URI="${SRC_URI} |
| 48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
| 49 | elif [[ ${CATEGORY} = app-doc ]]; then |
49 | elif [[ ${CATEGORY} = app-doc ]]; then |
| 50 | SRC_URI="${SRC_URI} |
50 | SRC_URI="${SRC_URI} |
| 51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
| … | |
… | |
| 68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
| 69 | elif [[ ${CATEGORY} = x11-base ]]; then |
69 | elif [[ ${CATEGORY} = x11-base ]]; then |
| 70 | SRC_URI="${SRC_URI} |
70 | SRC_URI="${SRC_URI} |
| 71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
| 72 | fi |
72 | fi |
| 73 | |
|
|
| 74 | # SRC_URI for full releases |
|
|
| 75 | SRC_URI="${SRC_URI} |
|
|
| 76 | http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2" |
|
|
| 77 | |
73 | |
| 78 | SLOT="0" |
74 | SLOT="0" |
| 79 | |
75 | |
| 80 | # Set the license for the package. This can be overridden by setting |
76 | # Set the license for the package. This can be overridden by setting |
| 81 | # LICENSE after the inherit. |
77 | # LICENSE after the inherit. |
| … | |
… | |
| 159 | fi |
155 | fi |
| 160 | fi |
156 | fi |
| 161 | fi |
157 | fi |
| 162 | |
158 | |
| 163 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 164 | >=dev-util/pkgconfig-0.18" |
160 | >=dev-util/pkgconfig-0.18 |
|
|
161 | >=sys-devel/binutils-2.16.1-r3" |
| 165 | |
162 | |
| 166 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
163 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 167 | DEPEND="${DEPEND} |
164 | DEPEND="${DEPEND} |
| 168 | >=x11-misc/util-macros-0.99.2" |
165 | >=x11-misc/util-macros-0.99.2" |
| 169 | fi |
166 | fi |
| 170 | |
167 | |
| 171 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 172 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
| 173 | !<=x11-base/xorg-x11-6.9 |
169 | !<=x11-base/xorg-x11-6.9" |
| 174 | >=sys-apps/man-1.6b-r2" |
|
|
| 175 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # Provides virtual/x11 for temporary use until packages are ported |
| 176 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
|
|
172 | |
|
|
173 | x-modular_specs_check() { |
|
|
174 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
175 | append-ldflags -Wl,-z,lazy |
|
|
176 | # (#116698) breaks loading |
|
|
177 | filter-ldflags -Wl,-z,now |
|
|
178 | fi |
|
|
179 | } |
|
|
180 | |
|
|
181 | x-modular_dri_check() { |
|
|
182 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
183 | # support for it |
|
|
184 | if [[ -n "${DRIVER}" ]]; then |
|
|
185 | if has dri ${IUSE} && use dri; then |
|
|
186 | einfo "Checking for direct rendering capabilities ..." |
|
|
187 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
188 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
189 | fi |
|
|
190 | fi |
|
|
191 | fi |
|
|
192 | } |
|
|
193 | |
|
|
194 | x-modular_server_supports_drivers_check() { |
|
|
195 | # (#135873) Only certain servers will actually use or be capable of |
|
|
196 | # building external drivers, including binary drivers. |
|
|
197 | if [[ -n "${DRIVER}" ]]; then |
|
|
198 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
199 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
200 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
201 | fi |
|
|
202 | fi |
|
|
203 | } |
| 177 | |
204 | |
| 178 | x-modular_unpack_source() { |
205 | x-modular_unpack_source() { |
| 179 | unpack ${A} |
206 | unpack ${A} |
| 180 | cd ${S} |
207 | cd ${S} |
| 181 | |
208 | |
| … | |
… | |
| 223 | then |
250 | then |
| 224 | eautoreconf |
251 | eautoreconf |
| 225 | fi |
252 | fi |
| 226 | fi |
253 | fi |
| 227 | |
254 | |
|
|
255 | # Joshua Baergen - October 23, 2005 |
|
|
256 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
257 | elibtoolize |
| 228 | } |
258 | } |
| 229 | |
259 | |
| 230 | x-modular_src_unpack() { |
260 | x-modular_src_unpack() { |
| 231 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
261 | x-modular_specs_check |
| 232 | if gcc-specs-now; then |
262 | x-modular_server_supports_drivers_check |
| 233 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
263 | x-modular_dri_check |
| 234 | eerror "$msg" |
|
|
| 235 | die "$msg" |
|
|
| 236 | fi |
|
|
| 237 | fi |
|
|
| 238 | |
|
|
| 239 | x-modular_unpack_source |
264 | x-modular_unpack_source |
| 240 | x-modular_patch_source |
265 | x-modular_patch_source |
| 241 | x-modular_reconf_source |
266 | x-modular_reconf_source |
| 242 | |
|
|
| 243 | # Joshua Baergen - October 23, 2005 |
|
|
| 244 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 245 | elibtoolize |
|
|
| 246 | } |
267 | } |
| 247 | |
268 | |
| 248 | x-modular_font_configure() { |
269 | x-modular_font_configure() { |
| 249 | if [[ -n "${FONT}" ]]; then |
270 | if [[ -n "${FONT}" ]]; then |
| 250 | # Might be worth adding an option to configure your desired font |
271 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 311 | install |
332 | install |
| 312 | # Shouldn't be necessary in XDIR=/usr |
333 | # Shouldn't be necessary in XDIR=/usr |
| 313 | # einstall forces datadir, so we need to re-force it |
334 | # einstall forces datadir, so we need to re-force it |
| 314 | # datadir=${XDIR}/share \ |
335 | # datadir=${XDIR}/share \ |
| 315 | # mandir=${XDIR}/share/man \ |
336 | # mandir=${XDIR}/share/man \ |
|
|
337 | |
|
|
338 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
339 | dodoc ${S}/ChangeLog |
|
|
340 | fi |
|
|
341 | |
|
|
342 | # Make sure docs get compressed |
|
|
343 | prepalldocs |
| 316 | |
344 | |
| 317 | # Don't install libtool archives for server modules |
345 | # Don't install libtool archives for server modules |
| 318 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
346 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 319 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
347 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 320 | | xargs rm -f |
348 | | xargs rm -f |