8bf9202c95e6356800a135da3983e12884dd3bca
[openwrt.git] / package / network / services / samba36 / Makefile
1 #
2 # Copyright (C) 2007-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=samba
11 PKG_VERSION:=3.6.24
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_URL:=http://ftp.samba.org/pub/samba \
15         http://ftp.samba.org/pub/samba/stable
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_MD5SUM:=d98425c0c2b73e08f048d31ffc727fb0
18
19 PKG_LICENSE:=GPL-3.0+
20 PKG_LICENSE_FILES:=COPYING
21
22 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
23
24 PKG_BUILD_PARALLEL:=1
25
26 include $(INCLUDE_DIR)/package.mk
27
28 MAKE_PATH:=source3
29 CONFIGURE_PATH:=source3
30
31 PKG_BUILD_BIN:=$(PKG_BUILD_DIR)/$(MAKE_PATH)/bin
32
33 define Package/samba36-server
34   SECTION:=net
35   CATEGORY:=Network
36   TITLE:=Samba 3.6 SMB/CIFS server
37   URL:=http://www.samba.org/
38   DEPENDS:=+USE_EGLIBC:librt
39 endef
40
41 define Package/samba36-client
42   SECTION:=net
43   CATEGORY:=Network
44   TITLE:=Samba 3.6 SMB/CIFS client
45   URL:=http://www.samba.org/
46   DEPENDS:=+libreadline +libncurses
47 endef
48
49 define Package/samba36-server/config
50         config PACKAGE_SAMBA_MAX_DEBUG_LEVEL
51                 int "Maximum level of compiled-in debug messages"
52                 depends on PACKAGE_samba36-server || PACKAGE_samba36-client
53                 default -1
54
55 endef
56
57 define Package/samba36-server/description
58  The Samba software suite is a collection of programs that implements the
59  SMB protocol for UNIX systems, allowing you to serve files and printers to
60  Windows, NT, OS/2 and DOS clients. This protocol is sometimes also referred
61  to as the LanManager or Netbios protocol.
62 endef
63
64 TARGET_CFLAGS += -DMAX_DEBUG_LEVEL=$(CONFIG_PACKAGE_SAMBA_MAX_DEBUG_LEVEL) -D__location__=\\\"\\\" -ffunction-sections -fdata-sections
65 TARGET_LDFLAGS += -Wl,--gc-sections
66
67 CONFIGURE_VARS += \
68         ac_cv_lib_attr_getxattr=no \
69         ac_cv_search_getxattr=no \
70         ac_cv_file__proc_sys_kernel_core_pattern=yes \
71         libreplace_cv_HAVE_C99_VSNPRINTF=yes \
72         libreplace_cv_HAVE_GETADDRINFO=yes \
73         libreplace_cv_HAVE_IFACE_IFCONF=yes \
74         LINUX_LFS_SUPPORT=yes \
75         samba_cv_CC_NEGATIVE_ENUM_VALUES=yes \
76         samba_cv_HAVE_GETTIMEOFDAY_TZ=yes \
77         samba_cv_HAVE_IFACE_IFCONF=yes \
78         samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes \
79         samba_cv_HAVE_SECURE_MKSTEMP=yes \
80         samba_cv_HAVE_WRFILE_KEYTAB=no \
81         samba_cv_USE_SETREUID=yes \
82         samba_cv_USE_SETRESUID=yes \
83         samba_cv_have_setreuid=yes \
84         samba_cv_have_setresuid=yes \
85         ac_cv_header_zlib_h=no \
86         samba_cv_zlib_1_2_3=no
87
88 CONFIGURE_ARGS += \
89         --exec-prefix=/usr \
90         --prefix=/ \
91         --disable-avahi \
92         --disable-cups \
93         --disable-pie \
94         --disable-relro \
95         --disable-static \
96         --disable-swat \
97         --disable-shared-libs \
98         --with-codepagedir=/etc/samba \
99         --with-configdir=/etc/samba \
100         --with-included-iniparser \
101         --with-included-popt \
102         --with-lockdir=/var/lock \
103         --with-logfilebase=/var/log \
104         --with-nmbdsocketdir=/var/nmbd \
105         --with-piddir=/var/run \
106         --with-privatedir=/etc/samba \
107         --with-sendfile-support \
108         --without-acl-support \
109         --without-cluster-support \
110         --without-ads \
111         --without-krb5 \
112         --without-ldap \
113         --without-pam \
114         --without-winbind \
115         --without-libtdb \
116         --without-libtalloc \
117         --without-libnetapi \
118         --without-libsmbclient \
119         --without-libsmbsharemodes \
120         --without-libtevent \
121         --without-libaddns \
122         --with-shared-modules=pdb_tdbsam,pdb_wbc_sam,idmap_nss,nss_info_template,auth_winbind,auth_wbc,auth_domain
123
124 MAKE_FLAGS += DYNEXP= PICFLAG= MODULES=
125
126 define Package/samba36-server/install
127         $(INSTALL_DIR) $(1)/etc/config
128         $(INSTALL_DATA) ./files/samba.config $(1)/etc/config/samba
129         $(INSTALL_DIR) $(1)/etc/samba
130         $(INSTALL_DATA) ./files/smb.conf.template $(1)/etc/samba
131         $(INSTALL_DATA) $(PKG_BUILD_DIR)/codepages/lowcase.dat $(1)/etc/samba
132         $(INSTALL_DATA) $(PKG_BUILD_DIR)/codepages/upcase.dat $(1)/etc/samba
133         $(INSTALL_DATA) $(PKG_BUILD_DIR)/codepages/valid.dat $(1)/etc/samba
134         $(INSTALL_DIR) $(1)/etc/init.d
135         $(INSTALL_BIN) ./files/samba.init $(1)/etc/init.d/samba
136         $(INSTALL_DIR) $(1)/usr/sbin
137         $(INSTALL_BIN) $(PKG_BUILD_BIN)/samba_multicall $(1)/usr/sbin
138         ln -sf samba_multicall $(1)/usr/sbin/smbd
139         ln -sf samba_multicall $(1)/usr/sbin/nmbd
140         ln -sf samba_multicall $(1)/usr/sbin/smbpasswd
141 endef
142
143 define Package/samba36-client/install
144         $(INSTALL_DIR) $(1)/usr/sbin
145         $(INSTALL_BIN) $(PKG_BUILD_BIN)/smbclient $(1)/usr/sbin
146         $(INSTALL_BIN) $(PKG_BUILD_BIN)/nmblookup $(1)/usr/sbin
147 endef
148
149 $(eval $(call BuildPackage,samba36-client))
150 $(eval $(call BuildPackage,samba36-server))
151