965e889a441b33db42d8141bc20315067164e655
[openwrt/svn-archive/archive.git] / net / samba3 / Makefile
1 #
2 # Copyright (C) 2008 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:=1
12 #PKG_MD5SUM:=b51b2975f21006f85f7297f3fb1acde1
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/config
35 source "$(SOURCE)/Config.in"
36 endef
37
38 define Build/Compile
39 CFLAGS="$(TARGET_CFLAGS)" \
40 CC="$(TARGET_CC)" \
41 CPPFLAGS="$(TARGET_CPPFLAGS)" \
42 LDFLAGS="$(TARGET_LDFLAGS)" \
43 $(MAKE) -C $(PKG_BUILD_DIR)/source \
44 all bin/smbpasswd
45 endef
46
47 define Package/samba3/install
48 $(INSTALL_DIR) $(1)/etc/{samba,init.d,config}
49 $(INSTALL_BIN) ./files/samba.init $(1)/etc/init.d/samba
50 $(INSTALL_DATA) ./files/samba.config $(1)/etc/config/samba
51 $(INSTALL_DATA) ./files/smb.conf.template $(1)/etc/samba/
52 cd $(1)/etc/samba; rm -r smb.conf; ln -s /tmp/smb.conf
53 touch $(1)/etc/samba/smbpasswd
54 $(INSTALL_DIR) $(1)/bin
55 $(INSTALL_BIN) $(PKG_BUILD_DIR)/source/bin/smbpasswd $(1)/bin/
56 $(INSTALL_BIN) $(PKG_BUILD_DIR)/source/bin/smbd $(1)/bin/
57 endef
58
59 $(eval $(call BuildPackage,samba3))