[packages] libsigc++: remove missing macros patch
[openwrt/svn-archive/archive.git] / net / pure-ftpd / Makefile
1 #
2 # Copyright (C) 2007-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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=pure-ftpd
11 PKG_VERSION:=1.0.29
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://download.pureftpd.org/pub/pure-ftpd/releases
16 PKG_MD5SUM:=12a074824b509f9e7684fab333ed6915
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
19
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/pure-ftpd/Default
25 SUBMENU:=FTP
26 SECTION:=net
27 CATEGORY:=Network
28 DEPENDS:=+libelf
29 TITLE:=Secure FTP made easy!
30 URL:=http://www.pureftpd.org/project/pure-ftpd
31 endef
32
33 define Package/pure-ftpd
34 $(call Package/pure-ftpd/Default)
35 TITLE+= (no TLS)
36 VARIANT:=notls
37 endef
38
39 define Package/pure-ftpd-tls
40 $(call Package/pure-ftpd/Default)
41 TITLE+= (TLS)
42 VARIANT:=tls
43 DEPENDS+=+libopenssl
44 endef
45
46 define Package/pure-ftpd/description
47 Pure-FTPd is a free (BSD), secure, production-quality and standard-conformant
48 FTP server. It doesn't provide useless bells and whistles, but focuses on
49 efficiency and ease of use.
50 It provides simple answers to common needs, plus unique useful features for
51 personal users as well as hosting providers.
52 endef
53
54 Package/pure-ftpd-tls/description=$(Package/pure-ftpd/description)
55
56 define Package/pure-ftpd/conffiles
57 /etc/config/pure-ftpd
58 endef
59
60 Package/pure-ftpd-tls/conffiles=$(Package/pure-ftpd/conffiles)
61
62 CONFIGURE_ARGS += \
63 --with-everything \
64 --with-virtualchroot
65
66 ifeq ($(BUILD_VARIANT),tls)
67 CONFIGURE_ARGS += \
68 --with-certfile=/etc/ssl/private/pure-ftpd.pem \
69 --with-tls
70 endif
71
72 define Package/pure-ftpd/install
73 $(INSTALL_DIR) $(1)/etc/config
74 $(INSTALL_CONF) ./files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
75 $(INSTALL_DIR) $(1)/etc/init.d
76 $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
77 $(INSTALL_DIR) $(1)/usr/bin
78 $(INSTALL_BIN) \
79 $(PKG_INSTALL_DIR)/usr/bin/pure-{pw,pwconvert,statsdecode} \
80 $(1)/usr/bin/
81 $(INSTALL_DIR) $(1)/usr/sbin
82 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ptracetest $(1)/usr/sbin/
83 $(INSTALL_BIN) \
84 $(PKG_INSTALL_DIR)/usr/sbin/pure-{authd,ftpd,ftpwho,mrtginfo,quotacheck,uploadscript} \
85 $(1)/usr/sbin/
86 endef
87
88 Package/pure-ftpd-tls/install=$(Package/pure-ftpd/install)
89
90 $(eval $(call BuildPackage,pure-ftpd))
91 $(eval $(call BuildPackage,pure-ftpd-tls))