1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $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 $
IUSE="acpi doc opengl"
inherit eutils rpm multilib linux-mod toolchain-funcs
DESCRIPTION="Ati precompiled drivers for r350, r300, r250 and r200 chipsets"
HOMEPAGE="http://www.ati.com"
ATI_URL="https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/linux/"
SRC_URI="${ATI_URL}/ati-driver-installer-${PV}-x86.x86_64.run"
LICENSE="ATI"
KEYWORDS="-* amd64 x86"
RDEPEND="x11-base/xorg-server
app-admin/eselect-opengl
|| ( sys-libs/libstdc++-v3 =sys-devel/gcc-3.3* )
acpi? (
x11-apps/xauth
sys-power/acpid
)
x11-libs/libXrandr"
DEPEND=">=virtual/linux-sources-2.4
${RDEPEND}"
PROVIDE="virtual/opengl"
S="${WORKDIR}/common/lib/modules/fglrx/build_mod"
ATIBIN="${D}/opt/ati/bin"
RESTRICT="strip test"
EMULTILIB_PKG="true"
QA_EXECSTACK_x86="usr/lib/xorg/modules/dri/fglrx_dri.so"
QA_EXECSTACK_amd64="usr/lib64/xorg/modules/dri/fglrx_dri.so usr/lib32/xorg/modules/dri/fglrx_dri.so"
QA_TEXTRELS_x86="usr/lib/xorg/modules/dri/fglrx_dri.so usr/lib/opengl/ati/lib/libGL.so.1.2"
QA_TEXTRELS_amd64="usr/lib64/xorg/modules/dri/fglrx_dri.so usr/lib32/opengl/ati/lib/libGL.so.1.2 usr/lib32/xorg/modules/dri/fglrx_dri.so usr/lib32/xorg/modules/dri/atiogl_a_dri.so"
choose_driver_paths() {
ARCH_DIR="${WORKDIR}/arch"
COMMON_DIR="${WORKDIR}/common"
#new modular X paths, 0 is a workaround.
if has_version "x11-base/xorg-server"; then
if [ "$(get_version_component_range 1 ${X11_IMPLEM_V})" = 1 ] &&
[ "$(get_version_component_range 2 ${X11_IMPLEM_V})" = 0 ] &&
[ "$(get_version_component_range 3 ${X11_IMPLEM_V})" = 99 ] ||
[ "$(get_version_component_range 2 ${X11_IMPLEM_V})" != 0 ]
then
BASE_DIR="${WORKDIR}/x710"
else
BASE_DIR="${WORKDIR}/x690"
fi
xlibdir="xorg"
else
BASE_DIR="${WORKDIR}/x$(get_version_component_range 1 ${X11_IMPLEM_V})"
xlibdir=""
# Determine if we are facing X.org 6.8.99 aka 6.9
if [ "$(get_version_component_range 1 ${X11_IMPLEM_V})" = 6 ] &&
[ "$(get_version_component_range 2 ${X11_IMPLEM_V})" = 8 ] &&
[ "$(get_version_component_range 3 ${X11_IMPLEM_V})" = 99 ]
then
BASE_DIR="${BASE_DIR}90"
else
BASE_DIR="${BASE_DIR}$(get_version_component_range 2 ${X11_IMPLEM_V})0"
fi
fi
if use amd64 ; then
BASE_DIR="${BASE_DIR}_64a"
ARCH_DIR="${ARCH_DIR}/x86_64"
else
ARCH_DIR="${ARCH_DIR}/x86"
fi
}
pkg_setup() {
#check kernel and sets up KV_OBJ
MODULE_NAMES="fglrx(video)"
BUILD_TARGETS="kmod_build"
linux-mod_pkg_setup
BUILD_PARAMS="GCC_VER_MAJ=$(gcc-major-version) KVER=${KV_FULL} KDIR=${KV_DIR}"
if ! linux_chkconfig_present MTRR; then
ewarn "You don't have MTRR support enabled, the direct rendering will not work."
fi
if linux_chkconfig_builtin DRM; then
ewarn "You have DRM support enabled builtin, the direct rendering will not work."
fi
if ! linux_chkconfig_present AGP && ! linux_chkconfig_present PCIEPORTBUS ;then
ewarn "If you don't have either AGP or PCI Express support enabled, direct rendering"
ewarn "could work only using the internal support."
fi
# Set up X11 implementation
X11_IMPLEM=xorg-x11
X11_IMPLEM_V="$(best_version x11-base/xorg-server)"
X11_IMPLEM_V="${X11_IMPLEM_V/x11-base\/xorg-server-/}"
einfo "X11 implementation is ${X11_IMPLEM}."
choose_driver_paths
}
src_unpack() {
local OLDBIN="/usr/X11R6/bin"
ebegin "Unpacking Ati drivers"
sh ${DISTDIR}/${A} --extract ${WORKDIR} &> /dev/null
eend $? || die "unpack failed"
rm -rf ${ARCH_DIR}/usr/X11R6/bin/{fgl_glxgears,fireglcontrolpanel}
epatch ${FILESDIR}/${PN}-2.6.19.patch
if use acpi
then
sed -i \
-e "s/\/var\/lib\/xdm\/authdir/\/etc\/X11\/xdm\/authdir/" \
-e "s/\/var\/lib\/gdm/\/var\/gdm/" \
-e "s/#ffff#/#ffff##:.*MIT-MAGIC-COOKIE/" \
"${WORKDIR}/common/etc/ati/authatieventsd.sh" \
|| die "sed failed."
cd ${WORKDIR}
epatch ${FILESDIR}/ati-powermode.sh.patch
fi
}
src_compile() {
einfo "Building the DRM module..."
ln -s \
${ARCH_DIR}/lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC$(gcc-major-version) \
|| die "cannot find precompiled core"
export _POSIX2_VERSION="199209"
if kernel_is 2 6; then
cp 2.6.x/Makefile .
convert_to_m Makefile
linux-mod_src_compile
else
# That is the dirty way to avoid the id -u check
sed -e 's:`id -u`:0:' \
-e "s:\`uname -r\`:${KV_FULL}:" \
-i make.sh
chmod +x make.sh
./make.sh || ewarn "DRM module not built"
fi
}
pkg_preinst() {
# Clean the dynamic libGL stuff's home to ensure
# we don't have stale libs floating around ...
if [ -d "${ROOT}/usr/lib/opengl/ati" ]
then
rm -rf ${ROOT}/usr/lib/opengl/ati/*
fi
}
src_install() {
local ATI_LIBGL_PATH=""
linux-mod_src_install
cd ${WORKDIR}
local native_dir
use x86 && native_dir="lib"
use amd64 && native_dir="lib64"
if has_multilib_profile; then
local OABI=${ABI}
for ABI in $(get_install_abis); do
src_install-libs
done
ABI=${OABI}
unset OABI
elif use amd64; then
src_install-libs lib $(get_multilibdir)
src_install-libs lib64 $(get_libdir)
else
src_install-libs
fi &> /dev/null
#apps, man pages, and conf files
exeinto /opt/ati/bin
doexe ${ARCH_DIR}/usr/X11R6/bin/*
if use acpi
then
exeinto /opt/ati/sbin
doexe ${ARCH_DIR}/usr/sbin/*
insinto /opt/ati/man/man8
doins common/usr/share/man/man8/*
newinitd ${FILESDIR}/atieventsd.rc6 atieventsd
dodir /etc/conf.d
echo 'ATIEVENTSDOPTS=""' > ${D}/etc/conf.d/atieventsd
fi
#ati custom stuff
insinto /usr
doins -r ${WORKDIR}/common/usr/include
#documentation
if use doc; then
dodir /usr/share/doc/fglrx
cp -pPR common/usr/share/doc/fglrx/* \
${D}/usr/share/doc/fglrx
fi
#env.d entry
cp ${FILESDIR}/09ati ${T}/
if use acpi
then
local ATIETC="${WORKDIR}/common/usr/share/doc/fglrx/examples/etc/acpi"
exeinto /etc/acpi
doexe ${ATIETC}/ati-powermode.sh
insinto /etc/acpi/events
doins ${ATIETC}/events/a-ac-aticonfig
doins ${ATIETC}/events/a-lid-aticonfig
fi
#Work around hardcoded path in 32bit libGL.so on amd64, bug 101539
if has_multilib_profile && [ $(get_abi_LIBDIR x86) = "lib32" ] ; then
ATI_LIBGL_PATH="/usr/lib/dri:/usr/$(get_libdir)/dri:/usr/lib32/${xlibdir}/modules/dri/:/usr/$(get_libdir)/${xlibdir}/modules/dri"
fi
cat >>${T}/09ati <<EOF
LIBGL_DRIVERS_PATH="\$LIBGL_DRIVERS_PATH:$ATI_LIBGL_PATH"
EOF
doenvd ${T}/09ati
}
src_install-libs() {
local pkglibdir=lib
local inslibdir="$(get_libdir)/${xlibdir}"
ATI_LIBGL_PATH="${ATI_LIBGL_PATH}:/usr/$(get_libdir)/${xlibdir}/modules/dri"
if [ ${#} -eq 2 ]; then
pkglibdir=${1}
inslibdir=${2}
elif has_multilib_profile && [ "${ABI}" == "amd64" ]; then
pkglibdir=lib64
fi
einfo "${pkglibdir} -> ${inslibdir}"
local ATI_ROOT="/usr/$(get_libdir)/opengl/ati"
# The GLX libraries
exeinto ${ATI_ROOT}/lib
doexe ${ARCH_DIR}/usr/X11R6/${pkglibdir}/libGL.so.1.2
dosym libGL.so.1.2 ${ATI_ROOT}/lib/libGL.so.1
dosym libGL.so.1.2 ${ATI_ROOT}/lib/libGL.so
# Don't do this... see bug #47598
#dosym libGL.so.1.2 ${ATI_ROOT}/lib/libMesaGL.so
# same as the xorg implementation
dosym ../${X11_IMPLEM}/extensions ${ATI_ROOT}/extensions
#Workaround
if use opengl ; then
sed -e "s:libdir=.*:libdir=${ATI_ROOT}/lib:" \
/usr/$(get_libdir)/opengl/${X11_IMPLEM}/lib/libGL.la \
> $D/${ATI_ROOT}/lib/libGL.la
dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include
fi
# X and DRI driver
if has_version "<x11-base/xorg-x11-6.8.0-r4"
then
local X11_DIR="/usr/X11R6/"
else
local X11_DIR="/usr/"
fi
local X11_LIB_DIR="${X11_DIR}${inslibdir}"
exeinto ${X11_LIB_DIR}/modules/drivers
# In X.org 6.8.99 / 6.9 this is a .so
doexe ${BASE_DIR}/usr/X11R6/${pkglibdir}/modules/drivers/fglrx_drv.*o
exeinto ${X11_LIB_DIR}/modules/dri
doexe ${ARCH_DIR}/usr/X11R6/${pkglibdir}/modules/dri/fglrx_dri.so
doexe ${ARCH_DIR}/usr/X11R6/${pkglibdir}/modules/dri/atiogl_a_dri.so
exeinto ${X11_LIB_DIR}/modules/linux
# In X.org 6.8.99 / 6.9 this is a .so
if has_version ">=x11-base/xorg-x11-6.8.99" || \
has_version "x11-base/xorg-server"
then
doexe ${BASE_DIR}/usr/X11R6/${pkglibdir}/modules/linux/libfglrxdrm.so
else
doexe ${BASE_DIR}/usr/X11R6/${pkglibdir}/modules/linux/libfglrxdrm.a
fi
if has_version ">=x11-base/xorg-x11-6.8.99" || \
has_version "x11-base/xorg-server"
then
cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig} \
${D}/usr/$(get_libdir)
else
cp -pPR ${ARCH_DIR}/usr/X11R6/${pkglibdir}/lib{fglrx_*,aticonfig.a} \
${D}/usr/$(get_libdir)
fi
#Not the best place
insinto ${X11_DIR}/include/X11/extensions
doins ${COMMON_DIR}/usr/X11R6/include/X11/extensions/fglrx_gamma.h
# misc ati configuration files for /etc
dodir /etc/ati
cp -pP ${COMMON_DIR}/etc/ati/fglrxprofiles.csv ${D}/etc/ati/
cp -pP ${COMMON_DIR}/etc/ati/fglrxrc ${D}/etc/ati/
cp -pP ${COMMON_DIR}/etc/ati/logo* ${D}/etc/ati/
if use acpi
then
cp -pP ${COMMON_DIR}/etc/ati/authatieventsd.sh ${D}/etc/ati/
fi
}
pkg_postinst() {
/usr/bin/eselect opengl set --use-old ati
echo
einfo "To switch to ATI OpenGL, run \"eselect opengl set ati\""
einfo "To change your xorg.conf you can use the bundled \"aticonfig\""
if use !opengl ; then
ewarn "You don't have the opengl useflag enabled, you won't be able to build"
ewarn "opengl applications nor use opengl driver features, if that isn't"
ewarn "the intended behaviour please add opengl to your useflag and issue"
ewarn "# emerge -Nu ati-drivers"
fi
echo
einfo "If you experience unexplained segmentation faults and kernel crashes"
einfo "with this driver and multi-threaded applications such as wine,"
einfo "set UseFastTLS in xorg.conf to either 0 or 1, but not 2."
# DRM module
linux-mod_pkg_postinst
}
pkg_postrm() {
linux-mod_pkg_postrm
/usr/bin/eselect opengl set --use-old xorg-x11
}
|