-#
+#
# Copyright (C) 2008-2009 OpenWrt.org
#
include $(TOPDIR)/rules.mk
PKG_NAME:=lftp
-PKG_VERSION:=4.0.3
+PKG_VERSION:=4.0.5
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
-PKG_SOURCE_URL:=http://lftp.cybermirror.org/old/
-PKG_MD5SUM:=24f4b25718fef09cbc4d26ea73bd1578
+PKG_SOURCE_URL:=http://lftp.cybermirror.org \
+ http://lftp.cybermirror.org/old
+PKG_MD5SUM:=5400cad5f91e131ac2ded7c24aea594c
+
+PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
URL:=http://lftp.yar.ru/
endef
+define Package/lftp/description
+ lftp is sophisticated file transfer program with command line interface. It
+ supports FTP, HTTP, FISH, SFTP and FILE (local FS) protocols. GNU Readline
+ library is used for input.
+endef
+
# uses GNU configure
CONFIGURE_ARGS += \
--without-gnutls \
--without-libresolv \
--with-openssl="$(STAGING_DIR)/usr" \
- --disable-static
+ --disable-static
CONFIGURE_VARS += \
CXXFLAGS="$$$$CXXFLAGS -fno-builtin -I$(STAGING_DIR)/usr/include/uClibc++ -nostdinc++" \
LDFLAGS="$$$$LDFLAGS" \
LIBS="-nodefaultlibs -lz -lutil -luClibc++ -lcurses -lgcc $(LIBGCC_S) -ldl" \
-define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR) \
- LD="\$$$$(CC)" \
- all
-endef
+MAKE_VARS += \
+ LD="\$$$$(CC)" \
-define Package/lftp/install
+define Package/lftp/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_DIR) $(1)/usr/lib
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/lftp $(1)/usr/bin
-endef
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lftp $(1)/usr/bin
+endef
define Package/lftp/postinst
# check for real system
-diff -burN lftp-3.7.7/lib/sys_time.in.h lftp-3.7.7.patched/lib/sys_time.in.h
---- lftp-3.7.7/lib/sys_time.in.h 2008-10-24 16:00:33.000000000 +0200
-+++ lftp-3.7.7.patched/lib/sys_time.in.h 2009-01-03 21:20:34.129104049 +0100
-@@ -39,6 +39,10 @@
- # include <time.h>
- # endif
-
-+#ifdef __cplusplus
-+extern "C" {
-+#endif
-+
- # if ! @HAVE_STRUCT_TIMEVAL@
- struct timeval
- {
-@@ -53,4 +57,8 @@
- int gettimeofday (struct timeval *restrict, void *restrict);
- # endif
-
-+#ifdef __cplusplus
-+}
-+#endif
-+
- #endif /* _GL_SYS_TIME_H */