aboutsummaryrefslogtreecommitdiffstats
path: root/meta-emenlow/packages/xpsb-glx/xpsb-glx_0.18.bb
blob: 41b15890fafd525c753fddc367d0cd6ba9cd58f1 (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
DESCRIPTION = "X11 drivers for Poulsbo (psb) 3D acceleration"

# There's a mesa implementation in this package, which is presumably
# not Intel proprietary, but it has no obvious license attached to it.
LICENSE = "Intel-binary-only"
LIC_FILES_CHKSUM = "file://${WORKDIR}/${PN}-${PV}/COPYING;md5=02c597a2f082b4581596065bb5a521a8"
PR = "r1"

inherit autotools

PROVIDES = "virtual/libgl mesa-dri"

SRC_URI="https://launchpad.net/~gma500/+archive/ppa/+files/xpsb-glx_0.18-0ubuntu1netbook2~1004um1ubuntu1.tar.gz \
	file://cross-compile.patch;patch=1"

do_configure () {
	chmod +x autogen.sh && ./autogen.sh && make realclean
}

do_install() {
	make DESTDIR=${D} install
	install -d -m 0755 ${D}/${libdir}/xorg/modules/dri \
		${D}/${libdir}/xorg/modules/drivers
	install -m 0644 ${WORKDIR}/${PN}-${PV}/dri/* \
		${D}/${libdir}/xorg/modules/dri
	install -m 0644 ${WORKDIR}/${PN}-${PV}/drivers/* \
		${D}/${libdir}/xorg/modules/drivers
}

S = "${WORKDIR}/${PN}-${PV}/mesa"

EXTRA_OEMAKE = "linux-dri-x86"

DEPENDS += "libdrm-poulsbo libxxf86vm dri2proto libxmu libxi glproto"

FILES_${PN} = "${libdir}/* ${libdir}/xorg/modules/dri/* \
	    ${libdir}/xorg/modules/drivers/*"

# Multiple virtual/gl providers being built breaks staging
EXCLUDE_FROM_WORLD = "1"