summaryrefslogtreecommitdiffstats
path: root/rules/ncftp.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2023-09-29 12:31:33 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2023-09-29 15:29:07 +0200
commit508a90014f3a24be7de9dc159839be8d5958f997 (patch)
tree3df9b9544f0157cd5af22f276362c205b5d65961 /rules/ncftp.make
parent1898696b6207b4bc61f6d9362b01ef143aaa60d1 (diff)
downloadptxdist-508a90014f3a24be7de9dc159839be8d5958f997.tar.gz
ptxdist-508a90014f3a24be7de9dc159839be8d5958f997.tar.xz
ncftp: remove after more than one year in staging
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/ncftp.make')
-rw-r--r--rules/ncftp.make72
1 files changed, 0 insertions, 72 deletions
diff --git a/rules/ncftp.make b/rules/ncftp.make
deleted file mode 100644
index 64acbfee4..000000000
--- a/rules/ncftp.make
+++ /dev/null
@@ -1,72 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2013 by Marc Kleine-Budde <mkl@pengutronix.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_NCFTP) += ncftp
-
-#
-# Paths and names
-#
-NCFTP_VERSION := 3.2.6
-NCFTP_MD5 := 42d0f896d69a4d603ec097546444245f
-NCFTP := ncftp-$(NCFTP_VERSION)-src
-NCFTP_SUFFIX := tar.xz
-NCFTP_URL := ftp://ftp.ncftp.com/ncftp/$(NCFTP).$(NCFTP_SUFFIX)
-NCFTP_SOURCE := $(SRCDIR)/$(NCFTP).$(NCFTP_SUFFIX)
-NCFTP_DIR := $(BUILDDIR)/$(NCFTP)
-NCFTP_LICENSE := Clarified Artistic License
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-NCFTP_CONF_TOOL := autoconf
-NCFTP_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- --without-socks5 \
- --without-dnssec-local-validation
-
-NCFTP_PROGS_y :=
-NCFTP_PROGS_$(PTXCONF_NCFTP_NCTP) += ncftp
-NCFTP_PROGS_$(PTXCONF_NCFTP_NCFTPBATCH_NCFTPSPOOLER) += ncftpbatch
-NCFTP_PROGS_$(PTXCONF_NCFTP_NCFTPBOOKMARKS) += ncftpbookmarks
-NCFTP_PROGS_$(PTXCONF_NCFTP_NCFTPGET) += ncftpget
-NCFTP_PROGS_$(PTXCONF_NCFTP_NCFTPLS) += ncftpls
-NCFTP_PROGS_$(PTXCONF_NCFTP_NCFTPPUT) += ncftpput
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/ncftp.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, ncftp)
- @$(call install_fixup, ncftp,PRIORITY,optional)
- @$(call install_fixup, ncftp,SECTION,base)
- @$(call install_fixup, ncftp,AUTHOR,"Marc Kleine-Budde <mkl@pengutronix.de>")
- @$(call install_fixup, ncftp,DESCRIPTION,missing)
-
- @$(foreach prog, $(NCFTP_PROGS_y), \
- $(call install_copy, ncftp, 0, 0, 0755, -, \
- /usr/bin/$(prog))$(ptx/nl))
-
-ifdef PTXCONF_NCFTP_NCFTPBATCH_NCFTPSPOOLER
- @$(call install_link, ncftp, ncftpbatch, /usr/bin/ncftpspooler)
-endif
-
- @$(call install_finish, ncftp)
-
- @$(call touch)
-
-# vim: syntax=make