# Copyright 1999-2006 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.23.7.ebuild,v 1.7 2006/06/03 05:29:33 joshuabaergen Exp $ IUSE="opengl" inherit eutils rpm multilib linux-mod linux-info toolchain-funcs DESCRIPTION="Ati precompiled drivers for r350, r300, r250 and r200 chipsets" HOMEPAGE="http://www.ati.com" SRC_URI="x86? ( mirror://gentoo/ati-driver-installer-${PV}-i386.run ) amd64? ( mirror://gentoo/ati-driver-installer-${PV}-x86_64.run )" LICENSE="ATI" KEYWORDS="~amd64 ~x86" RDEPEND="|| ( /dev/null eend $? || die "unpack failed" rm -rf ${ARCH_DIR}/usr/X11R6/bin/{fgl_glxgears,fireglcontrolpanel} cd ${WORKDIR}/common/lib/modules/fglrx/build_mod # remove intermodule calls for 2.6.16 if kernel_is ge 2 6 16; then epatch ${FILESDIR}/${PN}-8.22.5-intermodule.patch epatch ${FILESDIR}/${P}-noiommu.patch epatch ${FILESDIR}/${P}-gcc41.patch fi } src_compile() { einfo "Building the DRM module..." cd ${WORKDIR}/common/lib/modules/fglrx/build_mod ln -s \ ${ARCH_DIR}/lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC$(gcc-major-version) \ || die "cannot find precompiled core" if kernel_is 2 6 then set_arch_to_kernel addwrite "/usr/src/${FK}" cp 2.6.x/Makefile . export _POSIX2_VERSION="199209" if use_m ; then make -C ${KV_DIR} M="`pwd`" GCC_VER_MAJ=$(gcc-major-version) \ modules || ewarn "DRM module not built" else make -C ${KV_DIR} SUBDIRS="`pwd`" GCC_VER_MAJ=$(gcc-major-version) \ modules || ewarn "DRM module not built" fi set_arch_to_portage else export _POSIX2_VERSION="199209" # 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="" cd ${WORKDIR}/common/lib/modules/fglrx/build_mod linux-mod_src_install cd ${WORKDIR} local native_dir use x86 && native_dir="lib" use amd64 && native_dir="lib64" # Install the libs # MULTILIB-CLEANUP: Fix this when FEATURES=multilib-pkg is in portage local MLTEST=$(type dyn_unpack) if [ "${MLTEST/set_abi/}" = "${MLTEST}" ] && has_multilib_profile; then local OABI=${ABI} for ABI in $(get_install_abis); do src_install-libs done ABI=${OABI} unset OABI elif has_multilib_profile; then src_install-libs elif use amd64; then src_install-libs lib $(get_multilibdir) src_install-libs lib64 $(get_libdir) else src_install-libs fi &> /dev/null #apps exeinto /opt/ati/bin doexe ${ARCH_DIR}/usr/X11R6/bin/* #ati custom stuff insinto /usr doins -r ${WORKDIR}/common/usr/include #env.d entry cp ${FILESDIR}/09ati ${T}/ #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/lib32/${xlibdir}/modules/dri/:/usr/$(get_libdir)/${xlibdir}/modules/dri" fi cat >>${T}/09ati < ${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.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 dodir /etc cp -pPR ${COMMON_DIR}/etc/* ${D}/etc/ } 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 }