Magellan Linux

Contents of /smage/trunk/core/libdrm/libdrm-2.4.26-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3067 - (show annotations) (download)
Thu Sep 8 00:20:22 2011 UTC (12 years, 8 months ago) by niro
File size: 743 byte(s)
-dropped gallium as it needs cairo
1 # $Id$
2
3 PNAME="libdrm"
4 PVER="2.4.26"
5 PBUILD="r3"
6
7 PCATEGORIE="x11-libs"
8
9 DESCRIPTION="Xorg drm library."
10 HOMEPAGE="http://dri.freedesktop.org/"
11
12 sminclude xorg multilib alx-split
13
14 DEPEND=">= sys-fs/udev-173
15 >= x11-libs/libpciaccess-0.12"
16 SDEPEND=">= dev-libs/libpthread-stubs-0.3"
17
18 SRCFILE="${PNAME}-${PVER}.tar.bz2"
19
20 SRC_URI=(
21 http://dri.freedesktop.org/${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd http://dri.freedesktop.org/${PNAME}/ | lasttarball"
26
27 src_compile()
28 {
29 # add march=native to cflags to fix compile issues
30 # see http://bugs.freedesktop.org/show_bug.cgi?id=24381
31 export CFLAGS="${CFLAGS} -march=native"
32 export CXXFLAGS="${CXXFLAGS} -march=native"
33
34 mconfigure --enable-udev || die
35 mmake || die
36 }