Magellan Linux

Annotation of /branches/magellan-next/core/mesa-progs/mesa-progs-8.0.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7744 - (hide annotations) (download)
Mon May 30 22:15:37 2011 UTC (13 years ago) by niro
File size: 819 byte(s)
-fixed LDFLAGS
1 niro 7742 # $Id$
2    
3     PNAME="mesa-progs"
4     PVER="8.0.1"
5     PBUILD="r1"
6    
7     STATE="unstable"
8     PCATEGORIE="x11-apps"
9    
10     DESCRIPTION="Mesa3D OpenGL graphics applications."
11     HOMEPAGE="http://mesa3d.sourceforge.net/"
12    
13     DEPEND=">= virtual/glut"
14    
15     SRCFILE="mesa-demos-${PVER}.tar.bz2"
16     SRCDIR="${BUILDDIR}/mesa-demos-${PVER}"
17    
18     sminclude mbuild mtools
19    
20     SRC_URI=(
21 niro 7743 ftp://ftp.freedesktop.org/pub/mesa/demos/${PVER}/${SRCFILE}
22 niro 7742 sourceforge://mesa3d/${SRCFILE}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd ftp://ftp.freedesktop.org/pub/mesa/demos | sed -n 's:.*/\([0-9].*\):\1:;$ p'"
27    
28     src_compile()
29     {
30     cd ${SRCDIR}
31 niro 7744 mmake -C src/xdemos LDLIBS='-lX11 -lGL -lm' glxgears || die
32     mmake -C src/xdemos LDLIBS='-lX11 -lGL -lm' glxinfo || die
33 niro 7742 }
34    
35     src_install()
36     {
37     cd ${SRCDIR}
38     minstallexec src/xdemos/glxgears || die
39     minstallexec src/xdemos/glxinfo || die
40     }