Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/ati-drivers: ati-drivers-8.33.6.ebuild ati-drivers-8.27.10-r1.ebuild ati-drivers-8.33.6-r1.ebuild ChangeLog ati-drivers-8.32.5.ebuild ati-drivers-8.40.4.ebuild ati-drivers-8.28.8.ebuild ati-drivers-8.37.6-r1.ebuild
Date: Tue, 09 Oct 2007 08:21:10
Message-Id: E1IfABd-0007uO-Od@stork.gentoo.org
1 dberkholz 07/10/09 08:11:29
2
3 Modified: ati-drivers-8.33.6.ebuild
4 ati-drivers-8.27.10-r1.ebuild
5 ati-drivers-8.33.6-r1.ebuild ChangeLog
6 ati-drivers-8.32.5.ebuild ati-drivers-8.40.4.ebuild
7 ati-drivers-8.28.8.ebuild
8 ati-drivers-8.37.6-r1.ebuild
9 Log:
10 Fix quoting issues caught by latest repoman.
11 (Portage version: 2.1.3.12)
12
13 Revision Changes Path
14 1.5 x11-drivers/ati-drivers/ati-drivers-8.33.6.ebuild
15
16 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6.ebuild?rev=1.5&view=markup
17 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6.ebuild?rev=1.5&content-type=text/plain
18 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6.ebuild?r1=1.4&r2=1.5
19
20 Index: ati-drivers-8.33.6.ebuild
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6.ebuild,v
23 retrieving revision 1.4
24 retrieving revision 1.5
25 diff -u -r1.4 -r1.5
26 --- ati-drivers-8.33.6.ebuild 22 Jul 2007 02:31:53 -0000 1.4
27 +++ ati-drivers-8.33.6.ebuild 9 Oct 2007 08:11:29 -0000 1.5
28 @@ -1,6 +1,6 @@
29 # Copyright 1999-2007 Gentoo Foundation
30 # Distributed under the terms of the GNU General Public License v2
31 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6.ebuild,v 1.4 2007/07/22 02:31:53 dberkholz Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6.ebuild,v 1.5 2007/10/09 08:11:29 dberkholz Exp $
33
34 IUSE="acpi doc opengl"
35
36 @@ -114,12 +114,12 @@
37 local OLDBIN="/usr/X11R6/bin"
38
39 ebegin "Unpacking Ati drivers"
40 - sh ${DISTDIR}/${A} --extract ${WORKDIR} &> /dev/null
41 + sh "${DISTDIR}"/${A} --extract "${WORKDIR}" &> /dev/null
42 eend $? || die "unpack failed"
43
44 rm -rf ${ARCH_DIR}/usr/X11R6/bin/{fgl_glxgears,fireglcontrolpanel}
45
46 - epatch ${FILESDIR}/${PN}-2.6.20.patch
47 + epatch "${FILESDIR}"/${PN}-2.6.20.patch
48
49 if use acpi
50 then
51 @@ -130,8 +130,8 @@
52 "${WORKDIR}/common/etc/ati/authatieventsd.sh" \
53 || die "sed failed."
54
55 - cd ${WORKDIR}
56 - epatch ${FILESDIR}/ati-powermode.sh.patch
57 + cd "${WORKDIR}"
58 + epatch "${FILESDIR}"/ati-powermode.sh.patch
59 fi
60 }
61
62 @@ -162,7 +162,7 @@
63 # we don't have stale libs floating around ...
64 if [ -d "${ROOT}/usr/lib/opengl/ati" ]
65 then
66 - rm -rf ${ROOT}/usr/lib/opengl/ati/*
67 + rm -rf "${ROOT}"/usr/lib/opengl/ati/*
68 fi
69 }
70
71 @@ -170,7 +170,7 @@
72 local ATI_LIBGL_PATH=""
73 linux-mod_src_install
74
75 - cd ${WORKDIR}
76 + cd "${WORKDIR}"
77
78 local native_dir
79 use x86 && native_dir="lib"
80 @@ -199,44 +199,44 @@
81 doexe ${ARCH_DIR}/usr/sbin/*
82 insinto /opt/ati/man/man8
83 doins common/usr/share/man/man8/*
84 - newinitd ${FILESDIR}/atieventsd.rc6 atieventsd
85 + newinitd "${FILESDIR}"/atieventsd.rc6 atieventsd
86 dodir /etc/conf.d
87 - echo 'ATIEVENTSDOPTS=""' > ${D}/etc/conf.d/atieventsd
88 + echo 'ATIEVENTSDOPTS=""' > "${D}"/etc/conf.d/atieventsd
89 fi
90 #ati custom stuff
91 insinto /usr
92 - doins -r ${WORKDIR}/common/usr/include
93 + doins -r "${WORKDIR}"/common/usr/include
94
95 #documentation
96 if use doc; then
97 dodir /usr/share/doc/fglrx
98 cp -pPR common/usr/share/doc/fglrx/* \
99 - ${D}/usr/share/doc/fglrx
100 + "${D}"/usr/share/doc/fglrx
101 fi
102
103 #env.d entry
104 - cp ${FILESDIR}/09ati ${T}/
105 + cp "${FILESDIR}"/09ati "${T}"/
106
107 if use acpi
108 then
109 local ATIETC="${WORKDIR}/common/usr/share/doc/fglrx/examples/etc/acpi"
110 exeinto /etc/acpi
111 - doexe ${ATIETC}/ati-powermode.sh
112 + doexe "${ATIETC}"/ati-powermode.sh
113 insinto /etc/acpi/events
114 - doins ${ATIETC}/events/a-ac-aticonfig
115 - doins ${ATIETC}/events/a-lid-aticonfig
116 + doins "${ATIETC}"/events/a-ac-aticonfig
117 + doins "${ATIETC}"/events/a-lid-aticonfig
118 fi
119
120 #Work around hardcoded path in 32bit libGL.so on amd64, bug 101539
121 if has_multilib_profile && [ $(get_abi_LIBDIR x86) = "lib32" ] ; then
122 ATI_LIBGL_PATH="/usr/lib/dri:/usr/$(get_libdir)/dri:/usr/lib32/${xlibdir}/modules/dri/:/usr/$(get_libdir)/${xlibdir}/modules/dri"
123 fi
124 - cat >>${T}/09ati <<EOF
125 + cat >>"${T}"/09ati <<EOF
126
127 LIBGL_DRIVERS_PATH="\$LIBGL_DRIVERS_PATH:$ATI_LIBGL_PATH"
128 EOF
129
130 - doenvd ${T}/09ati
131 + doenvd "${T}"/09ati
132 }
133
134 src_install-libs() {
135 @@ -269,7 +269,7 @@
136 if use opengl ; then
137 sed -e "s:libdir=.*:libdir=${ATI_ROOT}/lib:" \
138 /usr/$(get_libdir)/opengl/${X11_IMPLEM}/lib/libGL.la \
139 - > $D/${ATI_ROOT}/lib/libGL.la
140 + > "$D"/${ATI_ROOT}/lib/libGL.la
141 dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include
142 fi
143 # X and DRI driver
144 @@ -304,10 +304,10 @@
145 has_version "x11-base/xorg-server"
146 then
147 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig} \
148 - ${D}/usr/$(get_libdir)
149 + "${D}"/usr/$(get_libdir)
150 else
151 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig.a} \
152 - ${D}/usr/$(get_libdir)
153 + "${D}"/usr/$(get_libdir)
154 fi
155
156 #Not the best place
157 @@ -316,12 +316,12 @@
158
159 # misc ati configuration files for /etc
160 dodir /etc/ati
161 - cp -pP ${COMMON_DIR}/etc/ati/fglrxprofiles.csv ${D}/etc/ati/
162 - cp -pP ${COMMON_DIR}/etc/ati/fglrxrc ${D}/etc/ati/
163 - cp -pP ${COMMON_DIR}/etc/ati/logo* ${D}/etc/ati/
164 + cp -pP ${COMMON_DIR}/etc/ati/fglrxprofiles.csv "${D}"/etc/ati/
165 + cp -pP ${COMMON_DIR}/etc/ati/fglrxrc "${D}"/etc/ati/
166 + cp -pP ${COMMON_DIR}/etc/ati/logo* "${D}"/etc/ati/
167 if use acpi
168 then
169 - cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh ${D}/etc/ati/
170 + cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh "${D}"/etc/ati/
171 fi
172 }
173
174
175
176
177 1.10 x11-drivers/ati-drivers/ati-drivers-8.27.10-r1.ebuild
178
179 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.27.10-r1.ebuild?rev=1.10&view=markup
180 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.27.10-r1.ebuild?rev=1.10&content-type=text/plain
181 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.27.10-r1.ebuild?r1=1.9&r2=1.10
182
183 Index: ati-drivers-8.27.10-r1.ebuild
184 ===================================================================
185 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.27.10-r1.ebuild,v
186 retrieving revision 1.9
187 retrieving revision 1.10
188 diff -u -r1.9 -r1.10
189 --- ati-drivers-8.27.10-r1.ebuild 22 Jul 2007 02:31:53 -0000 1.9
190 +++ ati-drivers-8.27.10-r1.ebuild 9 Oct 2007 08:11:29 -0000 1.10
191 @@ -1,6 +1,6 @@
192 # Copyright 1999-2007 Gentoo Foundation
193 # Distributed under the terms of the GNU General Public License v2
194 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.27.10-r1.ebuild,v 1.9 2007/07/22 02:31:53 dberkholz Exp $
195 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.27.10-r1.ebuild,v 1.10 2007/10/09 08:11:29 dberkholz Exp $
196
197 IUSE="acpi doc opengl"
198
199 @@ -126,7 +126,7 @@
200 local OLDBIN="/usr/X11R6/bin"
201
202 ebegin "Unpacking Ati drivers"
203 - sh ${DISTDIR}/${A} --extract ${WORKDIR} &> /dev/null
204 + sh "${DISTDIR}"/${A} --extract "${WORKDIR}" &> /dev/null
205 eend $? || die "unpack failed"
206
207 rm -rf ${ARCH_DIR}/usr/X11R6/bin/{fgl_glxgears,fireglcontrolpanel}
208 @@ -140,14 +140,14 @@
209 "${WORKDIR}/common/etc/ati/authatieventsd.sh" \
210 || die "sed failed."
211
212 - cd ${WORKDIR}
213 - epatch ${FILESDIR}/ati-powermode.sh.patch
214 + cd "${WORKDIR}"
215 + epatch "${FILESDIR}"/ati-powermode.sh.patch
216 fi
217 }
218
219 src_compile() {
220 einfo "Building the DRM module..."
221 - cd ${WORKDIR}/common/lib/modules/fglrx/build_mod
222 + cd "${WORKDIR}"/common/lib/modules/fglrx/build_mod
223 ln -s \
224 ${ARCH_DIR}/lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC$(gcc-major-version) \
225 || die "cannot find precompiled core"
226 @@ -183,16 +183,16 @@
227 # we don't have stale libs floating around ...
228 if [ -d "${ROOT}/usr/lib/opengl/ati" ]
229 then
230 - rm -rf ${ROOT}/usr/lib/opengl/ati/*
231 + rm -rf "${ROOT}"/usr/lib/opengl/ati/*
232 fi
233 }
234
235 src_install() {
236 local ATI_LIBGL_PATH=""
237 - cd ${WORKDIR}/common/lib/modules/fglrx/build_mod
238 + cd "${WORKDIR}"/common/lib/modules/fglrx/build_mod
239 linux-mod_src_install
240
241 - cd ${WORKDIR}
242 + cd "${WORKDIR}"
243
244 local native_dir
245 use x86 && native_dir="lib"
246 @@ -221,44 +221,44 @@
247 doexe ${ARCH_DIR}/usr/sbin/*
248 insinto /opt/ati/man/man8
249 doins common/usr/share/man/man8/*
250 - newinitd ${FILESDIR}/atieventsd.rc6 atieventsd
251 + newinitd "${FILESDIR}"/atieventsd.rc6 atieventsd
252 dodir /etc/conf.d
253 - echo 'ATIEVENTSDOPTS=""' > ${D}/etc/conf.d/atieventsd
254 + echo 'ATIEVENTSDOPTS=""' > "${D}"/etc/conf.d/atieventsd
255 fi
256 #ati custom stuff
257 insinto /usr
258 - doins -r ${WORKDIR}/common/usr/include
259 + doins -r "${WORKDIR}"/common/usr/include
260
261 #documentation
262 if use doc; then
263 dodir /usr/share/doc/fglrx
264 cp -pPR common/usr/share/doc/fglrx/* \
265 - ${D}/usr/share/doc/fglrx
266 + "${D}"/usr/share/doc/fglrx
267 fi
268
269 #env.d entry
270 - cp ${FILESDIR}/09ati ${T}/
271 + cp "${FILESDIR}"/09ati "${T}"/
272
273 if use acpi
274 then
275 local ATIETC="${WORKDIR}/common/usr/share/doc/fglrx/examples/etc/acpi"
276 exeinto /etc/acpi
277 - doexe ${ATIETC}/ati-powermode.sh
278 + doexe "${ATIETC}"/ati-powermode.sh
279 insinto /etc/acpi/events
280 - doins ${ATIETC}/events/a-ac-aticonfig
281 - doins ${ATIETC}/events/a-lid-aticonfig
282 + doins "${ATIETC}"/events/a-ac-aticonfig
283 + doins "${ATIETC}"/events/a-lid-aticonfig
284 fi
285
286 #Work around hardcoded path in 32bit libGL.so on amd64, bug 101539
287 if has_multilib_profile && [ $(get_abi_LIBDIR x86) = "lib32" ] ; then
288 ATI_LIBGL_PATH="/usr/lib/dri:/usr/$(get_libdir)/dri:/usr/lib32/${xlibdir}/modules/dri/:/usr/$(get_libdir)/${xlibdir}/modules/dri"
289 fi
290 - cat >>${T}/09ati <<EOF
291 + cat >>"${T}"/09ati <<EOF
292
293 LIBGL_DRIVERS_PATH="\$LIBGL_DRIVERS_PATH:$ATI_LIBGL_PATH"
294 EOF
295
296 - doenvd ${T}/09ati
297 + doenvd "${T}"/09ati
298 }
299
300 src_install-libs() {
301 @@ -291,7 +291,7 @@
302 if use opengl ; then
303 sed -e "s:libdir=.*:libdir=${ATI_ROOT}/lib:" \
304 /usr/$(get_libdir)/opengl/${X11_IMPLEM}/lib/libGL.la \
305 - > $D/${ATI_ROOT}/lib/libGL.la
306 + > "$D"/${ATI_ROOT}/lib/libGL.la
307 dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include
308 fi
309 # X and DRI driver
310 @@ -326,10 +326,10 @@
311 has_version "x11-base/xorg-server"
312 then
313 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig} \
314 - ${D}/usr/$(get_libdir)
315 + "${D}"/usr/$(get_libdir)
316 else
317 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig.a} \
318 - ${D}/usr/$(get_libdir)
319 + "${D}"/usr/$(get_libdir)
320 fi
321
322 #Not the best place
323 @@ -338,13 +338,13 @@
324
325 # misc ati configuration files for /etc
326 dodir /etc
327 - cp -pP ${COMMON_DIR}/etc/fglrxprofiles.csv ${D}/etc/
328 - cp -pP ${COMMON_DIR}/etc/fglrxrc ${D}/etc/
329 + cp -pP ${COMMON_DIR}/etc/fglrxprofiles.csv "${D}"/etc/
330 + cp -pP ${COMMON_DIR}/etc/fglrxrc "${D}"/etc/
331 dodir /etc/ati
332 - cp -pP ${COMMON_DIR}/etc/ati/logo* ${D}/etc/ati/
333 + cp -pP ${COMMON_DIR}/etc/ati/logo* "${D}"/etc/ati/
334 if use acpi
335 then
336 - cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh ${D}/etc/ati/
337 + cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh "${D}"/etc/ati/
338 fi
339 }
340
341
342
343
344 1.6 x11-drivers/ati-drivers/ati-drivers-8.33.6-r1.ebuild
345
346 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6-r1.ebuild?rev=1.6&view=markup
347 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6-r1.ebuild?rev=1.6&content-type=text/plain
348 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6-r1.ebuild?r1=1.5&r2=1.6
349
350 Index: ati-drivers-8.33.6-r1.ebuild
351 ===================================================================
352 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6-r1.ebuild,v
353 retrieving revision 1.5
354 retrieving revision 1.6
355 diff -u -r1.5 -r1.6
356 --- ati-drivers-8.33.6-r1.ebuild 22 Jul 2007 02:31:53 -0000 1.5
357 +++ ati-drivers-8.33.6-r1.ebuild 9 Oct 2007 08:11:29 -0000 1.6
358 @@ -1,6 +1,6 @@
359 # Copyright 1999-2007 Gentoo Foundation
360 # Distributed under the terms of the GNU General Public License v2
361 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6-r1.ebuild,v 1.5 2007/07/22 02:31:53 dberkholz Exp $
362 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.33.6-r1.ebuild,v 1.6 2007/10/09 08:11:29 dberkholz Exp $
363
364 IUSE="acpi doc opengl"
365
366 @@ -115,12 +115,12 @@
367 local OLDBIN="/usr/X11R6/bin"
368
369 ebegin "Unpacking Ati drivers"
370 - sh ${DISTDIR}/${A} --extract ${WORKDIR} &> /dev/null
371 + sh "${DISTDIR}"/${A} --extract "${WORKDIR}" &> /dev/null
372 eend $? || die "unpack failed"
373
374 rm -rf ${ARCH_DIR}/usr/X11R6/bin/{fgl_glxgears,fireglcontrolpanel}
375
376 - epatch ${FILESDIR}/${PN}-2.6.20.patch
377 + epatch "${FILESDIR}"/${PN}-2.6.20.patch
378
379 if use acpi
380 then
381 @@ -131,8 +131,8 @@
382 "${WORKDIR}/common/etc/ati/authatieventsd.sh" \
383 || die "sed failed."
384
385 - cd ${WORKDIR}
386 - epatch ${FILESDIR}/ati-powermode.sh.patch
387 + cd "${WORKDIR}"
388 + epatch "${FILESDIR}"/ati-powermode.sh.patch
389 fi
390 }
391
392 @@ -163,7 +163,7 @@
393 # we don't have stale libs floating around ...
394 if [ -d "${ROOT}/usr/lib/opengl/ati" ]
395 then
396 - rm -rf ${ROOT}/usr/lib/opengl/ati/*
397 + rm -rf "${ROOT}"/usr/lib/opengl/ati/*
398 fi
399 }
400
401 @@ -171,7 +171,7 @@
402 local ATI_LIBGL_PATH=""
403 linux-mod_src_install
404
405 - cd ${WORKDIR}
406 + cd "${WORKDIR}"
407
408 local native_dir
409 use x86 && native_dir="lib"
410 @@ -200,44 +200,44 @@
411 doexe ${ARCH_DIR}/usr/sbin/*
412 insinto /opt/ati/man/man8
413 doins common/usr/share/man/man8/*
414 - newinitd ${FILESDIR}/atieventsd.rc6 atieventsd
415 + newinitd "${FILESDIR}"/atieventsd.rc6 atieventsd
416 dodir /etc/conf.d
417 - echo 'ATIEVENTSDOPTS=""' > ${D}/etc/conf.d/atieventsd
418 + echo 'ATIEVENTSDOPTS=""' > "${D}"/etc/conf.d/atieventsd
419 fi
420 #ati custom stuff
421 insinto /usr
422 - doins -r ${WORKDIR}/common/usr/include
423 + doins -r "${WORKDIR}"/common/usr/include
424
425 #documentation
426 if use doc; then
427 dodir /usr/share/doc/fglrx
428 cp -pPR common/usr/share/doc/fglrx/* \
429 - ${D}/usr/share/doc/fglrx
430 + "${D}"/usr/share/doc/fglrx
431 fi
432
433 #env.d entry
434 - cp ${FILESDIR}/09ati ${T}/
435 + cp "${FILESDIR}"/09ati "${T}"/
436
437 if use acpi
438 then
439 local ATIETC="${WORKDIR}/common/usr/share/doc/fglrx/examples/etc/acpi"
440 exeinto /etc/acpi
441 - doexe ${ATIETC}/ati-powermode.sh
442 + doexe "${ATIETC}"/ati-powermode.sh
443 insinto /etc/acpi/events
444 - doins ${ATIETC}/events/a-ac-aticonfig
445 - doins ${ATIETC}/events/a-lid-aticonfig
446 + doins "${ATIETC}"/events/a-ac-aticonfig
447 + doins "${ATIETC}"/events/a-lid-aticonfig
448 fi
449
450 #Work around hardcoded path in 32bit libGL.so on amd64, bug 101539
451 if has_multilib_profile && [ $(get_abi_LIBDIR x86) = "lib32" ] ; then
452 ATI_LIBGL_PATH="/usr/lib/dri:/usr/$(get_libdir)/dri:/usr/lib32/${xlibdir}/modules/dri/:/usr/$(get_libdir)/${xlibdir}/modules/dri"
453 fi
454 - cat >>${T}/09ati <<EOF
455 + cat >>"${T}"/09ati <<EOF
456
457 LIBGL_DRIVERS_PATH="\$LIBGL_DRIVERS_PATH:$ATI_LIBGL_PATH"
458 EOF
459
460 - doenvd ${T}/09ati
461 + doenvd "${T}"/09ati
462 }
463
464 src_install-libs() {
465 @@ -270,7 +270,7 @@
466 if use opengl ; then
467 sed -e "s:libdir=.*:libdir=${ATI_ROOT}/lib:" \
468 /usr/$(get_libdir)/opengl/${X11_IMPLEM}/lib/libGL.la \
469 - > $D/${ATI_ROOT}/lib/libGL.la
470 + > "$D"/${ATI_ROOT}/lib/libGL.la
471 dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include
472 fi
473 # X and DRI driver
474 @@ -305,10 +305,10 @@
475 has_version "x11-base/xorg-server"
476 then
477 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig} \
478 - ${D}/usr/$(get_libdir)
479 + "${D}"/usr/$(get_libdir)
480 else
481 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig.a} \
482 - ${D}/usr/$(get_libdir)
483 + "${D}"/usr/$(get_libdir)
484 fi
485
486 #Not the best place
487 @@ -317,12 +317,12 @@
488
489 # misc ati configuration files for /etc
490 dodir /etc/ati
491 - cp -pP ${COMMON_DIR}/etc/ati/fglrxprofiles.csv ${D}/etc/ati/
492 - cp -pP ${COMMON_DIR}/etc/ati/fglrxrc ${D}/etc/ati/
493 - cp -pP ${COMMON_DIR}/etc/ati/logo* ${D}/etc/ati/
494 + cp -pP ${COMMON_DIR}/etc/ati/fglrxprofiles.csv "${D}"/etc/ati/
495 + cp -pP ${COMMON_DIR}/etc/ati/fglrxrc "${D}"/etc/ati/
496 + cp -pP ${COMMON_DIR}/etc/ati/logo* "${D}"/etc/ati/
497 if use acpi
498 then
499 - cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh ${D}/etc/ati/
500 + cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh "${D}"/etc/ati/
501 fi
502 }
503
504
505
506
507 1.92 x11-drivers/ati-drivers/ChangeLog
508
509 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.92&view=markup
510 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.92&content-type=text/plain
511 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?r1=1.91&r2=1.92
512
513 Index: ChangeLog
514 ===================================================================
515 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v
516 retrieving revision 1.91
517 retrieving revision 1.92
518 diff -u -r1.91 -r1.92
519 --- ChangeLog 8 Sep 2007 18:40:29 -0000 1.91
520 +++ ChangeLog 9 Oct 2007 08:11:29 -0000 1.92
521 @@ -1,6 +1,13 @@
522 # ChangeLog for x11-drivers/ati-drivers
523 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
524 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.91 2007/09/08 18:40:29 angelos Exp $
525 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.92 2007/10/09 08:11:29 dberkholz Exp $
526 +
527 + 09 Oct 2007; Donnie Berkholz <dberkholz@g.o>;
528 + ati-drivers-8.27.10-r1.ebuild, ati-drivers-8.28.8.ebuild,
529 + ati-drivers-8.32.5.ebuild, ati-drivers-8.33.6.ebuild,
530 + ati-drivers-8.33.6-r1.ebuild, ati-drivers-8.37.6-r1.ebuild,
531 + ati-drivers-8.40.4.ebuild:
532 + Fix quoting issues caught by latest repoman.
533
534 08 Sep 2007; Christoph Mende <angelos@g.o>
535 ati-drivers-8.39.4.ebuild:
536
537
538
539 1.10 x11-drivers/ati-drivers/ati-drivers-8.32.5.ebuild
540
541 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.32.5.ebuild?rev=1.10&view=markup
542 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.32.5.ebuild?rev=1.10&content-type=text/plain
543 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.32.5.ebuild?r1=1.9&r2=1.10
544
545 Index: ati-drivers-8.32.5.ebuild
546 ===================================================================
547 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.32.5.ebuild,v
548 retrieving revision 1.9
549 retrieving revision 1.10
550 diff -u -r1.9 -r1.10
551 --- ati-drivers-8.32.5.ebuild 22 Jul 2007 02:31:53 -0000 1.9
552 +++ ati-drivers-8.32.5.ebuild 9 Oct 2007 08:11:29 -0000 1.10
553 @@ -1,6 +1,6 @@
554 # Copyright 1999-2007 Gentoo Foundation
555 # Distributed under the terms of the GNU General Public License v2
556 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.32.5.ebuild,v 1.9 2007/07/22 02:31:53 dberkholz Exp $
557 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.32.5.ebuild,v 1.10 2007/10/09 08:11:29 dberkholz Exp $
558
559 IUSE="acpi doc opengl"
560
561 @@ -110,12 +110,12 @@
562 local OLDBIN="/usr/X11R6/bin"
563
564 ebegin "Unpacking Ati drivers"
565 - sh ${DISTDIR}/${A} --extract ${WORKDIR} &> /dev/null
566 + sh "${DISTDIR}"/${A} --extract "${WORKDIR}" &> /dev/null
567 eend $? || die "unpack failed"
568
569 rm -rf ${ARCH_DIR}/usr/X11R6/bin/{fgl_glxgears,fireglcontrolpanel}
570
571 - epatch ${FILESDIR}/${PN}-2.6.19.patch
572 + epatch "${FILESDIR}"/${PN}-2.6.19.patch
573
574 if use acpi
575 then
576 @@ -126,8 +126,8 @@
577 "${WORKDIR}/common/etc/ati/authatieventsd.sh" \
578 || die "sed failed."
579
580 - cd ${WORKDIR}
581 - epatch ${FILESDIR}/ati-powermode.sh.patch
582 + cd "${WORKDIR}"
583 + epatch "${FILESDIR}"/ati-powermode.sh.patch
584 fi
585 }
586
587 @@ -158,7 +158,7 @@
588 # we don't have stale libs floating around ...
589 if [ -d "${ROOT}/usr/lib/opengl/ati" ]
590 then
591 - rm -rf ${ROOT}/usr/lib/opengl/ati/*
592 + rm -rf "${ROOT}"/usr/lib/opengl/ati/*
593 fi
594 }
595
596 @@ -166,7 +166,7 @@
597 local ATI_LIBGL_PATH=""
598 linux-mod_src_install
599
600 - cd ${WORKDIR}
601 + cd "${WORKDIR}"
602
603 local native_dir
604 use x86 && native_dir="lib"
605 @@ -195,44 +195,44 @@
606 doexe ${ARCH_DIR}/usr/sbin/*
607 insinto /opt/ati/man/man8
608 doins common/usr/share/man/man8/*
609 - newinitd ${FILESDIR}/atieventsd.rc6 atieventsd
610 + newinitd "${FILESDIR}"/atieventsd.rc6 atieventsd
611 dodir /etc/conf.d
612 - echo 'ATIEVENTSDOPTS=""' > ${D}/etc/conf.d/atieventsd
613 + echo 'ATIEVENTSDOPTS=""' > "${D}"/etc/conf.d/atieventsd
614 fi
615 #ati custom stuff
616 insinto /usr
617 - doins -r ${WORKDIR}/common/usr/include
618 + doins -r "${WORKDIR}"/common/usr/include
619
620 #documentation
621 if use doc; then
622 dodir /usr/share/doc/fglrx
623 cp -pPR common/usr/share/doc/fglrx/* \
624 - ${D}/usr/share/doc/fglrx
625 + "${D}"/usr/share/doc/fglrx
626 fi
627
628 #env.d entry
629 - cp ${FILESDIR}/09ati ${T}/
630 + cp "${FILESDIR}"/09ati "${T}"/
631
632 if use acpi
633 then
634 local ATIETC="${WORKDIR}/common/usr/share/doc/fglrx/examples/etc/acpi"
635 exeinto /etc/acpi
636 - doexe ${ATIETC}/ati-powermode.sh
637 + doexe "${ATIETC}"/ati-powermode.sh
638 insinto /etc/acpi/events
639 - doins ${ATIETC}/events/a-ac-aticonfig
640 - doins ${ATIETC}/events/a-lid-aticonfig
641 + doins "${ATIETC}"/events/a-ac-aticonfig
642 + doins "${ATIETC}"/events/a-lid-aticonfig
643 fi
644
645 #Work around hardcoded path in 32bit libGL.so on amd64, bug 101539
646 if has_multilib_profile && [ $(get_abi_LIBDIR x86) = "lib32" ] ; then
647 ATI_LIBGL_PATH="/usr/lib/dri:/usr/$(get_libdir)/dri:/usr/lib32/${xlibdir}/modules/dri/:/usr/$(get_libdir)/${xlibdir}/modules/dri"
648 fi
649 - cat >>${T}/09ati <<EOF
650 + cat >>"${T}"/09ati <<EOF
651
652 LIBGL_DRIVERS_PATH="\$LIBGL_DRIVERS_PATH:$ATI_LIBGL_PATH"
653 EOF
654
655 - doenvd ${T}/09ati
656 + doenvd "${T}"/09ati
657 }
658
659 src_install-libs() {
660 @@ -265,7 +265,7 @@
661 if use opengl ; then
662 sed -e "s:libdir=.*:libdir=${ATI_ROOT}/lib:" \
663 /usr/$(get_libdir)/opengl/${X11_IMPLEM}/lib/libGL.la \
664 - > $D/${ATI_ROOT}/lib/libGL.la
665 + > "$D"/${ATI_ROOT}/lib/libGL.la
666 dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include
667 fi
668 # X and DRI driver
669 @@ -300,10 +300,10 @@
670 has_version "x11-base/xorg-server"
671 then
672 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig} \
673 - ${D}/usr/$(get_libdir)
674 + "${D}"/usr/$(get_libdir)
675 else
676 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig.a} \
677 - ${D}/usr/$(get_libdir)
678 + "${D}"/usr/$(get_libdir)
679 fi
680
681 #Not the best place
682 @@ -312,12 +312,12 @@
683
684 # misc ati configuration files for /etc
685 dodir /etc/ati
686 - cp -pP ${COMMON_DIR}/etc/ati/fglrxprofiles.csv ${D}/etc/ati/
687 - cp -pP ${COMMON_DIR}/etc/ati/fglrxrc ${D}/etc/ati/
688 - cp -pP ${COMMON_DIR}/etc/ati/logo* ${D}/etc/ati/
689 + cp -pP ${COMMON_DIR}/etc/ati/fglrxprofiles.csv "${D}"/etc/ati/
690 + cp -pP ${COMMON_DIR}/etc/ati/fglrxrc "${D}"/etc/ati/
691 + cp -pP ${COMMON_DIR}/etc/ati/logo* "${D}"/etc/ati/
692 if use acpi
693 then
694 - cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh ${D}/etc/ati/
695 + cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh "${D}"/etc/ati/
696 fi
697 }
698
699
700
701
702 1.3 x11-drivers/ati-drivers/ati-drivers-8.40.4.ebuild
703
704 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.40.4.ebuild?rev=1.3&view=markup
705 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.40.4.ebuild?rev=1.3&content-type=text/plain
706 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.40.4.ebuild?r1=1.2&r2=1.3
707
708 Index: ati-drivers-8.40.4.ebuild
709 ===================================================================
710 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.40.4.ebuild,v
711 retrieving revision 1.2
712 retrieving revision 1.3
713 diff -u -r1.2 -r1.3
714 --- ati-drivers-8.40.4.ebuild 14 Aug 2007 18:10:08 -0000 1.2
715 +++ ati-drivers-8.40.4.ebuild 9 Oct 2007 08:11:29 -0000 1.3
716 @@ -1,6 +1,6 @@
717 # Copyright 1999-2007 Gentoo Foundation
718 # Distributed under the terms of the GNU General Public License v2
719 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.40.4.ebuild,v 1.2 2007/08/14 18:10:08 je_fro Exp $
720 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.40.4.ebuild,v 1.3 2007/10/09 08:11:29 dberkholz Exp $
721
722 IUSE="acpi multilib"
723
724 @@ -166,10 +166,10 @@
725 cd ..
726
727 # Misc. patches.
728 - epatch ${FILESDIR}/${PV}/${P}-warnings.patch
729 + epatch "${FILESDIR}"/${PV}/${P}-warnings.patch
730
731 if kernel_is ge 2 6 23; then
732 - epatch ${FILESDIR}/${PV}/${PN}-2.6.23.patch
733 + epatch "${FILESDIR}"/${PV}/${PN}-2.6.23.patch
734 fi
735 }
736
737
738
739
740 1.10 x11-drivers/ati-drivers/ati-drivers-8.28.8.ebuild
741
742 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.28.8.ebuild?rev=1.10&view=markup
743 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.28.8.ebuild?rev=1.10&content-type=text/plain
744 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.28.8.ebuild?r1=1.9&r2=1.10
745
746 Index: ati-drivers-8.28.8.ebuild
747 ===================================================================
748 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.28.8.ebuild,v
749 retrieving revision 1.9
750 retrieving revision 1.10
751 diff -u -r1.9 -r1.10
752 --- ati-drivers-8.28.8.ebuild 14 Aug 2007 18:10:08 -0000 1.9
753 +++ ati-drivers-8.28.8.ebuild 9 Oct 2007 08:11:29 -0000 1.10
754 @@ -1,6 +1,6 @@
755 # Copyright 1999-2007 Gentoo Foundation
756 # Distributed under the terms of the GNU General Public License v2
757 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.28.8.ebuild,v 1.9 2007/08/14 18:10:08 je_fro Exp $
758 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.28.8.ebuild,v 1.10 2007/10/09 08:11:29 dberkholz Exp $
759
760 IUSE="acpi doc opengl"
761
762 @@ -125,7 +125,7 @@
763 local OLDBIN="/usr/X11R6/bin"
764
765 ebegin "Unpacking Ati drivers"
766 - sh ${DISTDIR}/${A} --extract ${WORKDIR} &> /dev/null
767 + sh "${DISTDIR}"/${A} --extract "${WORKDIR}" &> /dev/null
768 eend $? || die "unpack failed"
769
770 rm -rf ${ARCH_DIR}/usr/X11R6/bin/{fgl_glxgears,fireglcontrolpanel}
771 @@ -139,14 +139,14 @@
772 "${WORKDIR}/common/etc/ati/authatieventsd.sh" \
773 || die "sed failed."
774
775 - cd ${WORKDIR}
776 - epatch ${FILESDIR}/ati-powermode.sh.patch
777 + cd "${WORKDIR}"
778 + epatch "${FILESDIR}"/ati-powermode.sh.patch
779 fi
780 }
781
782 src_compile() {
783 einfo "Building the DRM module..."
784 - cd ${WORKDIR}/common/lib/modules/fglrx/build_mod
785 + cd "${WORKDIR}"/common/lib/modules/fglrx/build_mod
786 ln -s \
787 ${ARCH_DIR}/lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC$(gcc-major-version) \
788 || die "cannot find precompiled core"
789 @@ -182,16 +182,16 @@
790 # we don't have stale libs floating around ...
791 if [ -d "${ROOT}/usr/lib/opengl/ati" ]
792 then
793 - rm -rf ${ROOT}/usr/lib/opengl/ati/*
794 + rm -rf "${ROOT}"/usr/lib/opengl/ati/*
795 fi
796 }
797
798 src_install() {
799 local ATI_LIBGL_PATH=""
800 - cd ${WORKDIR}/common/lib/modules/fglrx/build_mod
801 + cd "${WORKDIR}"/common/lib/modules/fglrx/build_mod
802 linux-mod_src_install
803
804 - cd ${WORKDIR}
805 + cd "${WORKDIR}"
806
807 local native_dir
808 use x86 && native_dir="lib"
809 @@ -220,44 +220,44 @@
810 doexe ${ARCH_DIR}/usr/sbin/*
811 insinto /opt/ati/man/man8
812 doins common/usr/share/man/man8/*
813 - newinitd ${FILESDIR}/atieventsd.rc6 atieventsd
814 + newinitd "${FILESDIR}"/atieventsd.rc6 atieventsd
815 dodir /etc/conf.d
816 - echo 'ATIEVENTSDOPTS=""' > ${D}/etc/conf.d/atieventsd
817 + echo 'ATIEVENTSDOPTS=""' > "${D}"/etc/conf.d/atieventsd
818 fi
819 #ati custom stuff
820 insinto /usr
821 - doins -r ${WORKDIR}/common/usr/include
822 + doins -r "${WORKDIR}"/common/usr/include
823
824 #documentation
825 if use doc; then
826 dodir /usr/share/doc/fglrx
827 cp -pPR common/usr/share/doc/fglrx/* \
828 - ${D}/usr/share/doc/fglrx
829 + "${D}"/usr/share/doc/fglrx
830 fi
831
832 #env.d entry
833 - cp ${FILESDIR}/09ati ${T}/
834 + cp "${FILESDIR}"/09ati "${T}"/
835
836 if use acpi
837 then
838 local ATIETC="${WORKDIR}/common/usr/share/doc/fglrx/examples/etc/acpi"
839 exeinto /etc/acpi
840 - doexe ${ATIETC}/ati-powermode.sh
841 + doexe "${ATIETC}"/ati-powermode.sh
842 insinto /etc/acpi/events
843 - doins ${ATIETC}/events/a-ac-aticonfig
844 - doins ${ATIETC}/events/a-lid-aticonfig
845 + doins "${ATIETC}"/events/a-ac-aticonfig
846 + doins "${ATIETC}"/events/a-lid-aticonfig
847 fi
848
849 #Work around hardcoded path in 32bit libGL.so on amd64, bug 101539
850 if has_multilib_profile && [ $(get_abi_LIBDIR x86) = "lib32" ] ; then
851 ATI_LIBGL_PATH="/usr/lib/dri:/usr/$(get_libdir)/dri:/usr/lib32/${xlibdir}/modules/dri/:/usr/$(get_libdir)/${xlibdir}/modules/dri"
852 fi
853 - cat >>${T}/09ati <<EOF
854 + cat >>"${T}"/09ati <<EOF
855
856 LIBGL_DRIVERS_PATH="\$LIBGL_DRIVERS_PATH:$ATI_LIBGL_PATH"
857 EOF
858
859 - doenvd ${T}/09ati
860 + doenvd "${T}"/09ati
861 }
862
863 src_install-libs() {
864 @@ -290,7 +290,7 @@
865 if use opengl ; then
866 sed -e "s:libdir=.*:libdir=${ATI_ROOT}/lib:" \
867 /usr/$(get_libdir)/opengl/${X11_IMPLEM}/lib/libGL.la \
868 - > $D/${ATI_ROOT}/lib/libGL.la
869 + > "$D"/${ATI_ROOT}/lib/libGL.la
870 dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include
871 fi
872 # X and DRI driver
873 @@ -325,10 +325,10 @@
874 has_version "x11-base/xorg-server"
875 then
876 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig} \
877 - ${D}/usr/$(get_libdir)
878 + "${D}"/usr/$(get_libdir)
879 else
880 cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig.a} \
881 - ${D}/usr/$(get_libdir)
882 + "${D}"/usr/$(get_libdir)
883 fi
884
885 #Not the best place
886 @@ -337,13 +337,13 @@
887
888 # misc ati configuration files for /etc
889 dodir /etc
890 - cp -pP ${COMMON_DIR}/etc/fglrxprofiles.csv ${D}/etc/
891 - cp -pP ${COMMON_DIR}/etc/fglrxrc ${D}/etc/
892 + cp -pP ${COMMON_DIR}/etc/fglrxprofiles.csv "${D}"/etc/
893 + cp -pP ${COMMON_DIR}/etc/fglrxrc "${D}"/etc/
894 dodir /etc/ati
895 - cp -pP ${COMMON_DIR}/etc/ati/logo* ${D}/etc/ati/
896 + cp -pP ${COMMON_DIR}/etc/ati/logo* "${D}"/etc/ati/
897 if use acpi
898 then
899 - cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh ${D}/etc/ati/
900 + cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh "${D}"/etc/ati/
901 fi
902 }
903
904
905
906
907 1.6 x11-drivers/ati-drivers/ati-drivers-8.37.6-r1.ebuild
908
909 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.37.6-r1.ebuild?rev=1.6&view=markup
910 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.37.6-r1.ebuild?rev=1.6&content-type=text/plain
911 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.37.6-r1.ebuild?r1=1.5&r2=1.6
912
913 Index: ati-drivers-8.37.6-r1.ebuild
914 ===================================================================
915 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.37.6-r1.ebuild,v
916 retrieving revision 1.5
917 retrieving revision 1.6
918 diff -u -r1.5 -r1.6
919 --- ati-drivers-8.37.6-r1.ebuild 1 Aug 2007 22:48:37 -0000 1.5
920 +++ ati-drivers-8.37.6-r1.ebuild 9 Oct 2007 08:11:29 -0000 1.6
921 @@ -1,6 +1,6 @@
922 # Copyright 1999-2007 Gentoo Foundation
923 # Distributed under the terms of the GNU General Public License v2
924 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.37.6-r1.ebuild,v 1.5 2007/08/01 22:48:37 je_fro Exp $
925 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.37.6-r1.ebuild,v 1.6 2007/10/09 08:11:29 dberkholz Exp $
926
927 IUSE="acpi qt3 multilib"
928
929 @@ -172,7 +172,7 @@
930 Add the following to fix bug #182597
931 if kernel_is 2 6 22; then
932 cd "${S}"
933 - epatch ${FILESDIR}/${PV}/fix-ioctl-for-2.6.22.patch || die "Failed to patch for 2.6.22 kernel."
934 + epatch "${FILESDIR}"/${PV}/fix-ioctl-for-2.6.22.patch || die "Failed to patch for 2.6.22 kernel."
935 fi
936 }
937
938
939
940
941 --
942 gentoo-commits@g.o mailing list