Magellan Linux

Contents of /trunk/core/cifs-utils/cifs-utils-5.4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11860 - (show annotations) (download)
Tue Apr 24 11:32:27 2012 UTC (12 years, 1 month ago) by niro
File size: 906 byte(s)
-ftbfs fix
1 # $Id$
2
3 PNAME="cifs-utils"
4 PVER="5.4"
5 PBUILD="r1"
6
7 PCAT="net-fs"
8
9 DESCRIPTION="Tools for Managing Linux CIFS Client Filesystems."
10 HOMEPAGE="http://wiki.samba.org/index.php/LinuxCIFS_utils"
11
12 DEPEND=">= virtual/glibc
13 >= sys-libs/libcap-2.22"
14
15 SRCFILE="${PNAME}-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mbuild
19
20 SRC_URI=(
21 http://ftp.samba.org/pub/linux-cifs/${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd http://ftp.samba.org/pub/linux-cifs/cifs-utils/ | lasttarball"
26
27 src_prepare()
28 {
29 munpack ${SRCFILE} || die
30 cd ${SRCDIR}
31
32 # fix compilation with -Werror=unused-but-set-variable
33 # delete line 551 -> int rc;
34 sed -i '551d' mount.cifs.c || die
35 }
36
37 src_compile()
38 {
39 cd ${SRCDIR}
40
41 mconfigure \
42 --with-libcap-ng=no \
43 --with-libcap \
44 --disable-cifsupcall \
45 --disable-cifscred \
46 --disable-cifsidmap \
47 --disable-cifsacl \
48 || die
49
50 mmake || die
51 }