Magellan Linux

Contents of /trunk/extras/meanwhile/meanwhile-1.0.2-r5.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12457 - (show annotations) (download)
Tue May 22 14:24:57 2012 UTC (12 years ago) by niro
File size: 823 byte(s)
-fix build against newer glib
1 # $Id$
2
3 PNAME="meanwhile"
4 PVER="1.0.2"
5 PBUILD="r5"
6
7 PCAT="net-libs"
8
9 DESCRIPTION="Meanwhile is an open implementation of the Lotus Sametime Community Client protocol."
10 HOMEPAGE="http://meanwhile.sourceforge.net/"
11
12 DEPEND=">= dev-libs/glib2-2.32"
13
14 SDEPEND=">= dev-libs/gmp-5
15 >= dev-util/pkgconfig-0.25"
16
17 SRCFILE="${PNAME}-${PVER}.tar.gz"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 sminclude mbuild
21
22 SRC_URI=(
23 sourceforge://${PNAME}/${SRCFILE}
24 mirror://${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${PNAME}-${PVER}-fix-glib-headers.patch
26 )
27
28 UP2DATE="updatecmd_sourceforge ${PNAME}"
29
30 src_prepare()
31 {
32 munpack ${SRCFILE} || die
33 cd ${SRCDIR}
34
35 # fix build with glib >= 2.32
36 mpatch ${PNAME}-${PVER}-fix-glib-headers.patch || die
37 }
38
39 src_compile()
40 {
41 cd ${SRCDIR}
42
43 mconfigure --enable-doxygen=no --disable-debug || die
44 mmake || die
45 }