Magellan Linux

Annotation of /branches/R11-unstable/extras/fltk/fltk-1.3.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 23566 - (hide annotations) (download)
Thu Jan 15 12:00:47 2015 UTC (9 years, 4 months ago) by niro
Original Path: trunk/extras/fltk/fltk-1.3.3-r1.smage2
File size: 1540 byte(s)
-fixed PVER
1 niro 23565 # $Id$
2    
3     PNAME="fltk"
4 niro 23566 PVER="1.3.3"
5 niro 23565 PBUILD="r1"
6    
7     PCAT="x11-libs"
8    
9     DESCRIPTION="C++ user interface toolkit for X and OpenGL."
10     HOMEPAGE="http://www.fltk.org/"
11    
12     SRCFILE="${PNAME}-${PVER}-source.tar.gz"
13     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
14    
15     DEPEND=">= sys-libs/libstdc++-4.8
16     >= sys-libs/zlib-1.2
17     >= media-libs/glu-9
18     >= media-libs/fontconfig-2.11
19     >= media-libs/libjpeg-8d
20     >= media-libs/libpng-1.5
21     >= x11-libs/cairo-1.12
22     >= x11-libs/libX11-1.6
23     >= x11-libs/libXext-1.3
24     >= x11-libs/libXft-2.3
25     >= x11-libs/libXinerama-1.1
26     >= x11-libs/pixman-0.32"
27    
28     SDEPEND=">= media-libs/alsa-lib-1.0.28"
29    
30     sminclude mbuild
31    
32     SRC_URI=(
33     http://ftp.easysw.com/pub/${PNAME}/${PVER}/${SRCFILE}
34     mirror://${PNAME}/${SRCFILE}
35     mirror://${PNAME}/${PNAME}-1.3.2-as-needed.patch
36     mirror://${PNAME}/${PNAME}-1.3.2-conf-tests.patch
37     )
38    
39     UP2DATE="updatecmd ${HOMEPAGE}/software.php | grep -- '-source' | sed 's:-source::g' | highesttarball gz"
40    
41     src_prepare()
42     {
43     munpack ${SRCFILE} || die
44     cd ${SRCDIR}
45    
46     # fix linking issues with as-needed (cairo not linked in)
47     mpatch ${PNAME}-1.3.2-as-needed.patch || die
48    
49     # enable make check and remove tests and documentation from install target
50     mpatch ${PNAME}-1.3.2-conf-tests.patch || die
51    
52     mautoreconf || die
53     }
54    
55     src_compile()
56     {
57     cd ${SRCDIR}
58    
59     mconfigure \
60     --disable-debug \
61     --disable-localjpeg \
62     --disable-localpng \
63     --disable-localzlib \
64     --enable-largefile \
65     --enable-threads \
66     --enable-xft \
67     --enable-xdbe \
68     --enable-cairo \
69     --enable-gl \
70     --enable-xft \
71     --enable-xinerama \
72     || die
73    
74     mmake || die
75     }