Blame view

buildroot/buildroot-2016.08.1/package/vsftpd/vsftpd.mk 1.92 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  ################################################################################
  #
  # vsftpd
  #
  ################################################################################
  
  VSFTPD_VERSION = 3.0.3
  VSFTPD_SITE = https://security.appspot.com/downloads
  VSFTPD_LIBS = -lcrypt
  VSFTPD_LICENSE = GPLv2
  VSFTPD_LICENSE_FILES = COPYING
  
  define VSFTPD_DISABLE_UTMPX
  	$(SED) 's/.*VSF_BUILD_UTMPX/#undef VSF_BUILD_UTMPX/' $(@D)/builddefs.h
  endef
  
  define VSFTPD_ENABLE_SSL
  	$(SED) 's/.*VSF_BUILD_SSL/#define VSF_BUILD_SSL/' $(@D)/builddefs.h
  endef
  
  ifeq ($(BR2_PACKAGE_VSFTPD_UTMPX),)
  VSFTPD_POST_CONFIGURE_HOOKS += VSFTPD_DISABLE_UTMPX
  endif
  
  ifeq ($(BR2_PACKAGE_OPENSSL),y)
  VSFTPD_DEPENDENCIES += openssl host-pkgconf
  VSFTPD_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs libssl libcrypto`
  VSFTPD_POST_CONFIGURE_HOOKS += VSFTPD_ENABLE_SSL
  endif
  
  ifeq ($(BR2_PACKAGE_LIBCAP),y)
  VSFTPD_DEPENDENCIES += libcap
  VSFTPD_LIBS += -lcap
  endif
  
  ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
  VSFTPD_DEPENDENCIES += linux-pam
  VSFTPD_LIBS += -lpam
  endif
  
  define VSFTPD_BUILD_CMDS
  	$(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
  		LDFLAGS="$(TARGET_LDFLAGS)" LIBS="$(VSFTPD_LIBS)" -C $(@D)
  endef
  
  define VSFTPD_USERS
  	ftp -1 ftp -1 * /home/ftp - - Anonymous FTP User
  endef
  
  define VSFTPD_INSTALL_INIT_SYSV
  	$(INSTALL) -D -m 755 package/vsftpd/S70vsftpd $(TARGET_DIR)/etc/init.d/S70vsftpd
  endef
  
  # vsftpd won't work if the jail directory is writable, it has to be
  # readable only otherwise you get the following error:
  # 500 OOPS: vsftpd: refusing to run with writable root inside chroot()
  # That's why we have to adjust the permissions of /home/ftp
  define VSFTPD_INSTALL_TARGET_CMDS
  	$(INSTALL) -D -m 755 $(@D)/vsftpd $(TARGET_DIR)/usr/sbin/vsftpd
  	test -f $(TARGET_DIR)/etc/vsftpd.conf || \
  		$(INSTALL) -D -m 644 $(@D)/vsftpd.conf \
  			$(TARGET_DIR)/etc/vsftpd.conf
  	$(INSTALL) -d -m 700 $(TARGET_DIR)/usr/share/empty
  	$(INSTALL) -d -m 555 $(TARGET_DIR)/home/ftp
  endef
  
  $(eval $(generic-package))