blob: 068d05e8071e6a1931fffbbef5a9fe75855b0c23 (
plain)
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ati-drivers-extra/ati-drivers-extra-8.14.13.ebuild,v 1.3 2005/07/07 04:48:15 caleb Exp $
IUSE="qt"
inherit eutils rpm linux-info linux-mod
DESCRIPTION="Ati precompiled drivers extra application"
HOMEPAGE="http://www.ati.com"
SRC_URI="x86? ( http://www2.ati.com/drivers/linux/fglrx_6_8_0-${PV}-1.i386.rpm )
amd64?
( http://www2.ati.com/drivers/linux/64bit/fglrx64_6_8_0-${PV}-1.x86_64.rpm )"
LICENSE="ATI GPL-2 QPL-1.0"
KEYWORDS="~amd64 ~x86" # (~amd64 yet to be fixed)(see bug 95684)
DEPEND="=media-video/ati-drivers-${PV}*
qt? ( =x11-libs/qt-3* )"
ATIBIN="${D}/opt/ati/bin"
RESTRICT="nostrip"
src_unpack() {
local OLDBIN="/usr/X11R6/bin"
cd ${WORKDIR}
rpm_src_unpack
mkdir -p ${WORKDIR}/extra
einfo "Unpacking fglrx_sample_source.tgz..."
tar --no-same-owner -C ${WORKDIR}/extra/ -zxf \
${WORKDIR}/usr/src/ATI/fglrx_sample_source.tgz \
|| die "Failed to unpack fglrx_sample_source.tgz!"
# Defining USE_GLU allows this to compile with NVIDIA headers just fine
sed -e "s:-I/usr/X11R6/include:-D USE_GLU -I/usr/X11R6/include:" \
-i ${WORKDIR}/extra/fgl_glxgears/Makefile.Linux || die
mkdir -p ${WORKDIR}/extra/fglrx_panel
einfo "Unpacking fglrx_panel_sources.tgz..."
tar --no-same-owner -C ${WORKDIR}/extra/fglrx_panel/ -zxf \
${WORKDIR}/usr/src/ATI/fglrx_panel_sources.tgz \
|| die "Failed to unpack fglrx_panel_sources.tgz!"
cd ${WORKDIR}/extra/fglrx_panel
epatch ${FILESDIR}/${P}-improvements.patch.bz2
sed -e "s:"${OLDBIN}":"${ATIBIN}":"\
-i ${WORKDIR}/extra/fglrx_panel/Makefile
}
src_compile() {
einfo "Building the fgl_glxgears sample..."
cd ${WORKDIR}/extra/fgl_glxgears
make -f Makefile.Linux || ewarn "fgl_glxgears sample not build!"
if use qt
then
einfo "Building the QT fglx panel..."
cd ${WORKDIR}/extra/fglrx_panel
emake || die
fi
# Removing unused stuff
rm -rf ${WORKDIR}/usr/X11R6/bin/{*.bz2,fgl_glxgears}
}
src_install() {
local ATI_ROOT="/usr/lib/opengl/ati"
# Apps
exeinto /opt/ati/bin
doexe ${WORKDIR}/extra/fgl_glxgears/fgl_glxgears
rm -f ${WORKDIR}/usr/X11R6/bin/*
if use qt
then
doexe ${WORKDIR}/extra/fglrx_panel/fireglcontrol
insinto /usr/share/applications/
doins ${FILESDIR}/fireglcontrol.desktop
insinto /usr/share/pixmaps/
doins ${WORKDIR}/extra/fglrx_panel/ati.xpm
else
# Removing unused stuff
rm -rf ${WORKDIR}/usr/share/{applnk,gnome,icons,pixmaps}
fi
# not necessary dodoc ${WORKDIR}/usr/share/doc/fglrx/LICENSE.*
# Removing unused stuff
rm -rf ${WORKDIR}/usr/{src,share/doc}
}
|