Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 23570 - (show annotations) (download)
Thu Jan 15 12:26:13 2015 UTC (9 years, 4 months ago) by niro
Original Path: trunk/extras/fltk/fltk-1.3.3-r1.smage2
File size: 1709 byte(s)
-do not use mautoreconf, autoheader will fail
1 # $Id$
2
3 PNAME="fltk"
4 PVER="1.3.3"
5 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://fltk.org/pub/${PNAME}/${PVER}/${SRCFILE}
34 #http://ftp.easysw.com/pub/${PNAME}/${PVER}/${SRCFILE}
35 mirror://${PNAME}/${SRCFILE}
36 mirror://${PNAME}/${PNAME}-1.3.3-as-needed.patch
37 mirror://${PNAME}/${PNAME}-1.3.3-conf-tests.patch
38 )
39
40 UP2DATE="updatecmd ${HOMEPAGE}/software.php | grep -- '-source' | sed 's:-source::g' | highesttarball gz"
41
42 src_prepare()
43 {
44 munpack ${SRCFILE} || die
45 cd ${SRCDIR}
46
47 # fix linking issues with as-needed (cairo not linked in)
48 mpatch ${PNAME}-1.3.3-as-needed.patch || die
49
50 # enable make check and remove tests and documentation from install target
51 mpatch ${PNAME}-1.3.3-conf-tests.patch || die
52
53 # broken usage of autotools in the pkg, autoheader will fail
54 #mautoreconf || die
55 autoconf --force || die
56 automake --add-missing || die
57 }
58
59 src_compile()
60 {
61 cd ${SRCDIR}
62
63 mconfigure \
64 --disable-debug \
65 --disable-localjpeg \
66 --disable-localpng \
67 --disable-localzlib \
68 --enable-largefile \
69 --enable-threads \
70 --enable-xft \
71 --enable-xdbe \
72 --enable-cairo \
73 --enable-gl \
74 --enable-xft \
75 --enable-xinerama \
76 || die
77
78 mmake || die
79 }