Magellan Linux

Annotation of /branches/R11-stable/extras/talloc/talloc-2.0.8-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 16187 - (hide annotations) (download)
Mon Jan 28 15:17:07 2013 UTC (11 years, 4 months ago) by niro
Original Path: trunk/extras/talloc/talloc-2.0.8-r2.smage2
File size: 718 byte(s)
-fixed typos
1 niro 16184 # $Id$
2    
3     PNAME="talloc"
4     PVER="2.0.8"
5     PBUILD="r2"
6    
7     PCAT="dev-libs"
8    
9     DESCRIPTION="A hierarchical pool based memory allocator with destructors."
10     HOMEPAGE="http://talloc.samba.org/"
11    
12     DEPEND=">= dev-libs/libxslt-1.1.26"
13    
14     SRCFILE="${PNAME}-${PVER}.tar.gz"
15     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16    
17     sminclude multilib
18    
19     SRC_URI=(
20     http://www.samba.org/ftp/${PNAME}/${SRCFILE}
21     mirror://${PNAME}/${SRCFILE}
22     )
23    
24     UP2DATE="updatecmd 'http://www.samba.org/ftp/${PNAME}/?C=M;O=A' | lasttarball gz"
25    
26     src_compile()
27     {
28     mconfigure --disable-rpath --disable-rpath-install --enable-talloc-compat1 --disable-python || die
29     mmake || die
30     }
31 niro 16185
32     src_check()
33     {
34 niro 16187 all-abis 'cd ${SRCDIR}-$(mabi); LD_LIBRARY_PATH=$(pwd)/bin/shared make -k check || die'
35 niro 16185 }