Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9325 - (hide annotations) (download)
Tue Mar 28 14:40:08 2017 UTC (7 years, 1 month ago) by niro
File size: 1203 byte(s)
auto added: ver bump to 2.4.75-r1
1 niro 9325 # $Id$
2    
3     PNAME="libdrm"
4     PVER="2.4.75"
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.13
13     >= sys-fs/libudev-220"
14    
15     SDEPEND=">= dev-libs/libpthread-stubs-0.1
16     >= x11-libs/libpciaccess-dev-0.13
17     >= sys-fs/libudev-dev-220
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 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     }