Magellan Linux

Annotation of /smage/trunk/core/libdrm/libdrm-2.4.99-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13224 - (hide annotations) (download)
Thu Jul 4 14:52:06 2019 UTC (4 years, 10 months ago) by niro
File size: 1210 byte(s)
auto added: ver bump to 2.4.99-r1
1 niro 13224 # $Id$
2    
3     PNAME="libdrm"
4     PVER="2.4.99"
5     PBUILD="r1"
6    
7     PCAT="x11-libs"
8    
9     DESCRIPTION="Xorg drm library."
10     HOMEPAGE="http://dri.freedesktop.org/"
11    
12     DEPEND=">= x11-libs/libpciaccess-0.14
13     >= sys-fs/libudev-230"
14    
15     SDEPEND=">= dev-libs/libpthread-stubs-0.1
16     >= x11-libs/libpciaccess-dev-0.14
17     >= sys-fs/libudev-dev-230
18     >= virtual/x11-protos"
19    
20     if mqueryfeature "check"
21     then
22     SDEPEND+="
23     >= x11-libs/cairo-1.14
24     >= x11-libs/cairo-dev-1.14"
25     fi
26    
27     SRCFILE="${PNAME}-${PVER}.tar.bz2"
28    
29     sminclude xorg multilib mbuild alx-split
30    
31     SRC_URI=(
32     http://dri.freedesktop.org/${PNAME}/${SRCFILE}
33     mirror://${PNAME}/${SRCFILE}
34     )
35    
36     UP2DATE="updatecmd http://dri.freedesktop.org/${PNAME}/ | lasttarball"
37    
38     src_compile()
39     {
40     # disabled, seems to break libdrm (oslookupcolor issue) with newer gcc (>=6.1)
41     # # add march=native to cflags to fix compile issues
42     # # see http://bugs.freedesktop.org/show_bug.cgi?id=24381
43     # export CFLAGS="${CFLAGS} -march=native"
44     # export CXXFLAGS="${CXXFLAGS} -march=native"
45    
46     # always enable *all* required features
47     mconfigure \
48     --enable-udev \
49     --enable-libkms \
50     --enable-intel \
51     --enable-nouveau \
52     --enable-amdgpu \
53     --enable-radeon \
54     --enable-vmwgfx \
55     --disable-valgrind \
56     || die
57    
58     mmake || die
59     }