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