1784ba3f68
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@44702 3c298f89-4303-0410-b956-a3cf2f4a3e73
72 lines
1.5 KiB
Makefile
72 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=atftp
|
|
PKG_VERSION:=0.7
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/distfiles/
|
|
PKG_MD5SUM:=3b27365772d918050b2251d98a9c7c82
|
|
|
|
PKG_BUILD_DEPENDS:=libncurses libpcre libreadline
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/atftp/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=TFTP
|
|
SUBMENU:=File Transfer
|
|
endef
|
|
|
|
define Package/atftp
|
|
$(call Package/atftp/Default)
|
|
DEPENDS:=+libreadline +libncurses
|
|
TITLE+= client
|
|
endef
|
|
|
|
define Package/atftpd
|
|
$(call Package/atftp/Default)
|
|
DEPENDS:=+libpcre +libpthread
|
|
TITLE+= server
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-libwrap
|
|
CONFIGURE_VARS += \
|
|
LDFLAGS="$(TARGET_LDFLAGS) $(TARGET_CFLAGS)"
|
|
|
|
ifdef CONFIG_USE_GLIBC
|
|
TARGET_CFLAGS += -DHAVE_ARGZ=1
|
|
|
|
define Build/Prepare
|
|
$(Build/Prepare/Default)
|
|
echo '#include_next <argz.h>' > $(PKG_BUILD_DIR)/argz.h
|
|
endef
|
|
endif
|
|
|
|
MAKE_FLAGS += \
|
|
CFLAGS="$(TARGET_CFLAGS) -Wall -D_REENTRANT" \
|
|
all
|
|
|
|
define Package/atftp/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/atftp $(1)/usr/sbin/
|
|
endef
|
|
|
|
define Package/atftpd/install
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/atftpd $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,atftp))
|
|
$(eval $(call BuildPackage,atftpd))
|