blob: ca3ef4160a2455be3ec30456a37d7ce1e75cf25b (
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
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-base/x11-drm/x11-drm-20040827-r1.ebuild,v 1.2 2004/12/23 20:42:10 battousai Exp $
inherit eutils x11 linux-mod
IUSE="gatos"
IUSE_VIDEO_CARDS="3dfx ffb i810 i830 i915 mach64 matrox rage128 radeon savage sis via"
# Make sure Portage does _NOT_ strip symbols. We will do it later and make sure
# that only we only strip stuff that are safe to strip ...
RESTRICT="nostrip"
GATOSSNAP="20031202"
PATCHVER="0.2"
PATCHDIR="${WORKDIR}/patch"
EXCLUDED="${WORKDIR}/excluded"
S="${WORKDIR}/drm"
DESCRIPTION="DRM Kernel Modules for X11"
HOMEPAGE="http://dri.sf.net"
SRC_URI="mirror://gentoo/${P}-gentoo-${PATCHVER}.tar.bz2
mirror://gentoo/linux-drm-${PV}-kernelsource.tar.bz2
gatos? ( mirror://gentoo/linux-drm-gatos-${GATOSSNAP}-kernelsource.tar.bz2 )"
SLOT="${KV}"
LICENSE="X11"
KEYWORDS="~x86 ~alpha ~ia64 ~ppc ~amd64"
DEPEND="virtual/x11
virtual/linux-sources
>=sys-apps/portage-2.0.49-r13"
PROVIDE="virtual/drm"
pkg_setup() {
# Require at least one video card
if [ -z "${VIDEO_CARDS}" ]
then
die "Please set at least one video card in VIDEO_CARDS in make.conf or the environment. Possible VIDEO_CARDS values are: ${IUSE_VIDEO_CARDS}."
fi
if [ "${ARCH}" != "sparc" ] && use video_cards_ffb
then
die "The ffb driver is for sparc-specific hardware. Please remove it from your VIDEO_CARDS."
fi
# GATOS only works with radeon, rage128. mach64 is provided by drm trunk.
if use gatos
then
if ! use video_cards_radeon && ! use video_cards_rage128
then
die "Remove gatos from your USE flags. It does not work with cards other than radeon and rage128."
fi
kernel_is 2 6 && die "GATOS does not work with 2.6 kernels. Only 2.4 is supported at this time."
fi
ewarn "Using koutput kernels is now deprecated. If you use a koutput kernel, please"
ewarn "switch to kernel >=2.6.6 with a normal build system."
# Set video cards to build for.
set_vidcards
return 0
}
src_unpack() {
if use gatos
then
unpack linux-drm-gatos-${GATOSSNAP}-kernelsource.tar.bz2
else
unpack linux-drm-${PV}-kernelsource.tar.bz2
fi
unpack ${P}-gentoo-${PATCHVER}.tar.bz2
cd ${S}
cp ${PATCHDIR}/Makefile ${S}
patch_prepare
# Apply patches
EPATCH_SUFFIX="patch" epatch ${PATCHDIR}
# Substitute new directory under /lib/modules/${KV}
sed -ie "s:/kernel/drivers/char/drm:/${PN}:g" Makefile
sed -ie "s:xfree-drm:${PN}:g" Makefile
}
src_compile() {
einfo "Building DRM..."
# This now uses an M= build system. Makefile does most of the work.
unset ARCH
make M="${S}" \
LINUXDIR="${ROOT}/usr/src/linux" \
DRM_MODULES="${VIDCARDS}" \
DRMSRCDIR="${S}" \
modules || die_error
# dristat in GATOS seems busted.
if ! use gatos
then
make dristat || die "Building dristat failed."
fi
}
src_install() {
einfo "Installing DRM..."
unset ARCH
make KV="${KV}" \
LINUXDIR="${ROOT}/usr/src/linux" \
DRM_MODULES="${VIDCARDS}" \
DESTDIR="${D}" \
install || die "Install failed."
dodoc README*
if ! use gatos
then
exeinto /usr/X11R6/bin
doexe dristat
# Strip binaries, leaving /lib/modules untouched (bug #24415)
strip_bins \/lib\/modules
fi
# Yoinked from the sys-apps/touchpad ebuild. Thanks to whoever made this.
keepdir /etc/modules.d
sed 's:%PN%:'${PN}':g' ${FILESDIR}/modules.d-${PN} > ${D}/etc/modules.d/${PN}
sed -i 's:%KV%:'${KV}':g' ${D}/etc/modules.d/${PN}
}
pkg_postinst() {
if use video_cards_sis
then
einfo "SiS direct rendering only works on 300 series chipsets."
einfo "SiS framebuffer also needs to be enabled in the kernel."
fi
if use video_cards_mach64
then
einfo "The Mach64 DRI driver is insecure."
einfo "Malicious clients can write to system memory."
einfo "For more information, see:"
einfo "http://dri.sourceforge.net/cgi-bin/moin.cgi/ATIMach64?value=CategoryHardwareChipset."
fi
einfo "Checking kernel module dependencies"
update_modules
update_depmod
}
# Functions used above are defined below:
set_vidcards() {
set_kvobj
VIDCARDS=""
use video_cards_matrox && \
VIDCARDS="${VIDCARDS} mga.${KV_OBJ}"
use video_cards_3dfx && \
VIDCARDS="${VIDCARDS} tdfx.${KV_OBJ}"
use video_cards_rage128 && \
VIDCARDS="${VIDCARDS} r128.${KV_OBJ}"
use video_cards_radeon && \
VIDCARDS="${VIDCARDS} radeon.${KV_OBJ}"
use video_cards_i810 && \
VIDCARDS="${VIDCARDS} i810.${KV_OBJ}"
use video_cards_i830 && \
VIDCARDS="${VIDCARDS} i830.${KV_OBJ}"
use video_cards_i915 && \
VIDCARDS="${VIDCARDS} i915.${KV_OBJ}"
# use video_cards_gamma && \
# VIDCARDS="${VIDCARDS} gamma.${KV_OBJ}"
use video_cards_mach64 && \
VIDCARDS="${VIDCARDS} mach64.${KV_OBJ}"
use video_cards_savage && \
VIDCARDS="${VIDCARDS} savage.${KV_OBJ}"
use video_cards_sis && \
VIDCARDS="${VIDCARDS} sis.${KV_OBJ}"
use video_cards_via && \
VIDCARDS="${VIDCARDS} via.${KV_OBJ}"
use video_cards_ffb && \
VIDCARDS="${VIDCARDS} ffb.${KV_OBJ}"
}
patch_prepare() {
# Handle exclusions based on the following...
# GATOS (2xx*) vs. Standard trees (1xx*)
# 2.4 vs. 2.6 kernels
kernel_is 2 4 && mv -f ${PATCHDIR}/*kernel-2.6* ${EXCLUDED}
kernel_is 2 6 && mv -f ${PATCHDIR}/*kernel-2.4* ${EXCLUDED}
if use gatos
then
einfo "Updating for GATOS build..."
mv -f ${PATCHDIR}/1* ${EXCLUDED}
# Don't bother with dristat, it's broken
mv -f ${PATCHDIR}/*dristat* ${EXCLUDED}
else
einfo "Updating for standard build..."
mv -f ${PATCHDIR}/2* ${EXCLUDED}
fi
}
die_error() {
eerror "Portage could not build the DRM modules. If you see an ACCESS DENIED error,"
eerror "this could mean that you were using an unsupported kernel build system. All"
eerror "2.4 kernels are supported, but only 2.6 kernels at least as new as 2.6.6"
eerror "are supported."
die "Unable to build DRM modules."
}
|