Magellan Linux

Annotation of /smage/trunk/core/talloc/talloc-2.0.5-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1909 - (hide annotations) (download)
Wed Nov 9 12:20:48 2011 UTC (12 years, 6 months ago) by niro
File size: 644 byte(s)
auto added: ver bump to 2.0.5-r3
1 niro 1909 # $Id$
2    
3     PNAME="talloc"
4     PVER="2.0.5"
5     PBUILD="r3"
6    
7     PCATEGORIE="sys-libs"
8    
9     DESCRIPTION="talloc is a hierarchical, reference counted memory pool system with destructors."
10     HOMEPAGE="http://talloc.samba.org/"
11    
12     DEPEND=">= virtual/glibc"
13    
14     SRCFILE="${PNAME}-${PVER}.tar.gz"
15     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16    
17     sminclude mbuild mcore-split
18    
19     SRC_URI=(
20     http://samba.org/ftp/${PNAME}/${SRCFILE}
21     mirror://${PNAME}/${SRCFILE}
22     )
23    
24     UP2DATE="updatecmd http://samba.org/ftp/talloc/ | lasttarball gz"
25    
26     src_compile()
27     {
28     cd ${SRCDIR}
29    
30     # do not add --disable-nls, configure complains
31     MCORE_NO_DISABLE_NLS=1 \
32     mconfigure --disable-python || die
33     mmake || die
34     }