Magellan Linux

Annotation of /trunk/extras/orbit/orbit-2.14.19-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17331 - (hide annotations) (download)
Mon Jun 10 07:57:21 2013 UTC (11 years ago) by niro
File size: 875 byte(s)
-fixed a typo
1 niro 17329 # $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 niro 17330 mirror://${PNAME}/${PNAME}-${PVER}-allow-deprecated.patch
26 niro 17329 )
27    
28     UP2DATE="updatecmd_gnome ORBit2"
29    
30 niro 17330 src_prepare()
31     {
32 niro 17331 munpack ${SRCFILE} || die
33 niro 17330 cd ${SRCDIR}
34    
35     # fix a ftbfs with newer glib2 (>=2.36)
36     mpatch ${PNAME}-${PVER}-allow-deprecated.patch || die
37     }
38    
39 niro 17329 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     }