dfdcb19ac34ba6a7753709223f4175b8b9f7cd0f
[packages.git] / net / samba3 / Makefile
1 #
2 # Copyright (C) 2008-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=samba3
10 PKG_VERSION:=3.0.24
11 PKG_RELEASE:=7
12 PKG_MD5SUM:=89273f67a6d8067cbbecefaa13747153
13
14 PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/samba/old-versions/
15 PKG_SOURCE:=samba-$(PKG_VERSION).tar.gz
16 PKG_BUILD_DIR:=$(BUILD_DIR)/samba-$(PKG_VERSION)/
17
18 include $(INCLUDE_DIR)/package.mk
19
20 TARGET_CFLAGS+=$(if $(CONFIG_SAMBA3_DEBUG),-DSAMBA_DEBUG)
21
22 define Package/samba3
23   SECTION:=net
24   CATEGORY:=Network
25   TITLE:=samba3
26   DEPENDS:=+libpthread
27   URL:=http://www.samba.org/
28 endef
29
30 define Package/samba3/Description
31   Samba3 - made small with patches taken from AVM GPL releases and freetz 
32 endef
33
34 define Package/samba3/conffiles
35 /etc/config/samba
36 /etc/samba/smb.conf.template
37 endef
38
39 define Package/samba3/config
40         source "$(SOURCE)/Config.in"
41 endef
42
43 ifneq ($(CONFIG_LARGEFILE),)
44   define Build/Prepare/LFS
45         cat ./files/config-lfs.h >> $(PKG_BUILD_DIR)/source/include/config.h
46   endef
47 endif
48
49 define Build/Prepare
50 $(call Build/Prepare/Default)
51 $(call Build/Prepare/LFS)
52 endef
53
54 define Build/Compile
55         CC="$(TARGET_CC)" \
56         CFLAGS="$(TARGET_CFLAGS)" \
57         CPPFLAGS="$(TARGET_CPPFLAGS)" \
58         LDFLAGS="$(TARGET_LDFLAGS)" \
59         $(MAKE) -C $(PKG_BUILD_DIR)/source \
60                 all bin/smbpasswd
61 endef
62
63 define Package/samba3/install
64         $(INSTALL_DIR) $(1)/etc/{samba,init.d,config}
65         $(INSTALL_BIN) ./files/samba.init $(1)/etc/init.d/samba
66         $(INSTALL_DATA) ./files/samba.config $(1)/etc/config/samba
67         $(INSTALL_DATA) ./files/smb.conf.template $(1)/etc/samba/
68         touch $(1)/etc/samba/smbpasswd
69         $(INSTALL_DIR) $(1)/bin
70         $(INSTALL_BIN) $(PKG_BUILD_DIR)/source/bin/smbpasswd $(1)/bin/
71         $(INSTALL_BIN) $(PKG_BUILD_DIR)/source/bin/smbd $(1)/bin/
72         $(INSTALL_BIN) $(PKG_BUILD_DIR)/source/bin/nmbd $(1)/bin/
73 endef
74
75 $(eval $(call BuildPackage,samba3))