blob: 93ac7f0b0e2d28a20f4001ddcc00a2145ce55bd9 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-base/xfree-drm/xfree-drm-4.3.0-r2.ebuild,v 1.7 2004/01/19 07:20:22 spyderous Exp $
# Small note: we should prob consider using a DRM only tarball, as it will ease
# some of the overhead on older systems, and will enable us to
# update DRM if there are fixes not already in XFree86 tarballs ...
IUSE="3dfx gamma i8x0 matrox rage128 radeon sis"
inherit eutils
# 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"
SNAPSHOT="20030306"
S="${WORKDIR}/drm"
DESCRIPTION="Xfree86 Kernel DRM modules"
HOMEPAGE="http://dri.sf.net"
SRC_URI="mirror://gentoo/linux-drm-${PV}-kernelsource-${SNAPSHOT}.tar.gz
mirror://gentoo/${PF}-gentoo.tar.bz2"
# Latest tarball of DRM sources can be found here:
#
# http://www.xfree86.org/~alanh/
#
LICENSE="X11"
SLOT="${KV}"
KEYWORDS="x86 ppc ~alpha amd64"
DEPEND=">=x11-base/xfree-${PV}
virtual/linux-sources"
PROVIDE="virtual/drm"
VIDCARDS=""
if [ "`use matrox`" ]
then
VIDCARDS="${VIDCARDS} mga.o"
fi
if [ "`use 3dfx`" ]
then
VIDCARDS="${VIDCARDS} tdfx.o"
fi
if [ "`use rage128`" ]
then
VIDCARDS="${VIDCARDS} r128.o"
fi
if [ "`use radeon`" ]
then
VIDCARDS="${VIDCARDS} radeon.o"
fi
if [ "`use sis`" ]
then
VIDCARDS="${VIDCARDS} sis.o"
fi
if [ "`use i8x0`" ]
then
VIDCARDS="${VIDCARDS} i810.o i830.o"
fi
if [ "`use gamma`" ]
then
VIDCARDS="${VIDCARDS} gamma.o"
fi
if [ -z "${VIDCARDS}" -a "${ARCH}" = "ppc" ]
then
VIDCARDS="r128.o radeon.o"
fi
src_unpack() {
unpack ${A}
cd ${S}
local PATCHDIR=${WORKDIR}/patch
epatch ${PATCHDIR}/${PF}-gentoo-Makefile-fixup.patch
epatch ${PATCHDIR}/${PF}-drm-ioremap.patch
epatch ${PATCHDIR}/${PF}-radeon-resume-v8.patch
epatch ${PATCHDIR}/${PF}-dristat.patch
}
src_compile() {
check_KV
ln -sf Makefile.linux Makefile
einfo "Building DRM..."
if [ -z "${VIDCARDS}" ]
then
make \
TREE="/usr/src/linux/include" KV="${KV}"
else
make ${VIDCARDS} \
TREE="/usr/src/linux/include" KV="${KV}"
fi
make dristat || die
}
src_install() {
einfo "installing DRM..."
if [ -z "${VIDCARDS}" ]
then
make \
TREE="/usr/src/linux/include" \
KV="${KV}" \
DESTDIR="${D}" \
install || die
else
make \
TREE="/usr/src/linux/include" \
KV="${KV}" \
DESTDIR="${D}" \
MODS="${VIDCARDS}" \
install || die
fi
dodoc README*
exeinto /usr/X11R6/bin
doexe dristat
}
pkg_postinst() {
if [ "${ROOT}" = "/" ]
then
/sbin/modules-update
fi
}
|