]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - samba/samba.nm
Merge remote-tracking branch 'stevee/openvswitch-systemd'
[people/amarx/ipfire-3.x.git] / samba / samba.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = samba
7 version = 3.6.5
8 release = 2
9
10 maintainer = Christian Schmidt <christian.schmidt@ipfire.org>
11 groups = Networking/Daemons
12 url = http://www.samba.org/
13 license = GPLv3+ and LGPLv3+
14 summary = Server and Client software to interoperate with Windows machines.
15
16 description
17 Samba is the suite of programs by which a lot of PC-related machines
18 share files, printers, and other information (such as lists of
19 available files and printers). The Windows NT, OS/2, and Linux
20 operating systems support this natively, and add-on packages can
21 enable the same thing for DOS, Windows, VMS, UNIX of all kinds, MVS,
22 and more. This package provides an SMB/CIFS server that can be used to
23 provide network services to SMB/CIFS clients.
24 Samba uses NetBIOS over TCP/IP (NetBT) protocols and does NOT
25 need the NetBEUI (Microsoft Raw NetBIOS frame) protocol.
26 end
27
28 source_dl = http://www.samba.org/samba/ftp/stable/
29
30 CFLAGS += \
31 -D_FILE_OFFSET_BITS=64 \
32 -D_GNU_SOURCE -DLDAP_DEPRECATED
33
34 build
35 requires
36 autoconf
37 automake
38 avahi-devel
39 cups-devel
40 gettext
41 ncurses-devel
42 libacl-devel
43 libcap-devel
44 openldap-devel
45 openssl-devel
46 pam-devel
47 popt-devel
48 readline-devel
49 which
50 zlib-devel
51 end
52
53 DIR_APP = %{DIR_SRC}/%{thisapp}/source3
54
55 configure_options += \
56 --prefix=%{prefix} \
57 --localstatedir=/var \
58 --with-lockdir=%{sharedstatedir}/samba \
59 --with-piddir=%{rundir} \
60 --with-mandir=%{mandir} \
61 --with-privatedir=%{sharedstatedir}/samba/private \
62 --with-logfilebase=/var/log/samba \
63 --with-modulesdir=%{libdir}/samba \
64 --with-configdir=%{sysconfdir}/samba \
65 --with-pammodulesdir=/%{lib}/security \
66 --with-swatdir=%{datadir}/swat \
67 --with-automount \
68 --with-libsmbclient \
69 --with-libsmbsharemodes \
70 --with-pam \
71 --with-pam_smbpass \
72 --with-quotas \
73 --with-sendfile-support \
74 --with-syslog \
75 --with-utmp \
76 --with-winbind \
77 --with-shared-modules=idmap_ad,idmap_rid,idmap_adex,idmap_hash
78
79 make_build_targets += \
80 pch \
81 all modules
82
83 install_cmds
84 mkdir -pv %{BUILDROOT}%{sysconfdir}/samba
85 echo "127.0.0.1 localhost" > %{BUILDROOT}%{sysconfdir}/samba/lmhosts
86 cp -vf %{DIR_SOURCE}/smb.conf %{BUILDROOT}/%{sysconfdir}/%{name}
87 end
88 end
89
90 packages
91 package %{name}
92 prerequires = systemd-units
93 configfiles = /etc/smb.conf
94 requires += %{name}-libs = %{thisver}
95 end
96
97 package %{name}-libs
98 template LIBS
99 end
100
101 package %{name}-devel
102 template DEVEL
103
104 requires += %{name}-libs = %{thisver}
105 end
106
107 package %{name}-debuginfo
108 template DEBUGINFO
109 end
110 end