Magellan Linux

Contents of /branches/R11-unstable/extras/orbit/orbit-2.14.19-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25696 - (show annotations) (download)
Tue Nov 25 04:10:58 2014 UTC (9 years, 5 months ago) by niro
File size: 875 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="orbit"
4 PVER="2.14.19"
5 PBUILD="r3"
6
7 PCAT="gnome-base"
8
9 DESCRIPTION="A high-performance CORBA ORB (object request broker)."
10 HOMEPAGE="http://www.gnome.org/"
11
12 DEPEND=">= dev-libs/glib2-2.36
13 >= dev-libs/libidl-0.8.14"
14
15 SDEPEND=">= dev-util/pkgconfig-0.25"
16
17 SRCFILE="ORBit2-${PVER}.tar.bz2"
18 SRCDIR="${BUILDDIR}/ORBit2-${PVER}"
19
20 sminclude gnome2
21
22 SRC_URI=(
23 gnome://ORBit2/${PVER%.*}/${SRCFILE}
24 mirror://${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${PNAME}-${PVER}-allow-deprecated.patch
26 )
27
28 UP2DATE="updatecmd_gnome ORBit2"
29
30 src_prepare()
31 {
32 munpack ${SRCFILE} || die
33 cd ${SRCDIR}
34
35 # fix a ftbfs with newer glib2 (>=2.36)
36 mpatch ${PNAME}-${PVER}-allow-deprecated.patch || die
37 }
38
39 src_compile()
40 {
41 cd ${SRCDIR}
42
43 gn2_configure || die
44 # do not use parallelmake, compilations takes a long time
45 # with high cpu usage and it seems it comes to no end
46 mmake -j1 || die
47 }