Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28620 - (show annotations) (download)
Mon Mar 13 14:12:51 2017 UTC (7 years, 2 months ago) by niro
File size: 913 byte(s)
auto added: ver bump to 6.7-r1
1 # $Id$
2
3 PNAME="cifs-utils"
4 PVER="6.7"
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 mautoreconf || die
33
34 # fix compilation with -Werror=unused-but-set-variable
35 sed -i 's:-Werror::g' Makefile.{in,am} || die
36 }
37
38 src_compile()
39 {
40 cd ${SRCDIR}
41
42 ROOTSBINDIR="/usr/sbin" \
43 mconfigure \
44 --with-libcap-ng=no \
45 --with-libcap \
46 --disable-cifsupcall \
47 --disable-cifsidmap \
48 --disable-cifsacl \
49 || die
50
51 mmake || die
52 }