Magellan Linux

Contents of /smage/trunk/core/talloc/talloc-2.0.5-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


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