summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-03-27 17:23:27 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-03-27 17:23:27 +0200
commitcaef260afd67166d91d74a40d5e2a91dc80f9096 (patch)
tree1d348527c76f9d2423485637830b33bbfd12ff00 /mk
parenta395c878b57bc58f0ae8d007a1c6b59bc1d4d84e (diff)
downloadembtoolkit-caef260afd67166d91d74a40d5e2a91dc80f9096.tar.gz
embtoolkit-caef260afd67166d91d74a40d5e2a91dc80f9096.tar.bz2
embtoolkit-caef260afd67166d91d74a40d5e2a91dc80f9096.tar.xz
Packages: termcap: remove as it is depredicated by use of ncurses
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk')
-rw-r--r--mk/packages.mk1
-rw-r--r--mk/termcap.mk59
2 files changed, 0 insertions, 60 deletions
diff --git a/mk/packages.mk b/mk/packages.mk
index 93cd0c2..7e9d629 100644
--- a/mk/packages.mk
+++ b/mk/packages.mk
@@ -31,7 +31,6 @@ HOSTTOOLS_COMPONENTS-y := mkimage_install
include $(EMBTK_ROOT)/mk/lzo.mk
include $(EMBTK_ROOT)/mk/mkimage.mk
include $(EMBTK_ROOT)/mk/mtd-utils.mk
-include $(EMBTK_ROOT)/mk/termcap.mk
#gdb
include $(EMBTK_ROOT)/mk/gdb.mk
diff --git a/mk/termcap.mk b/mk/termcap.mk
deleted file mode 100644
index 7bf3445..0000000
--- a/mk/termcap.mk
+++ /dev/null
@@ -1,59 +0,0 @@
-################################################################################
-# Embtoolkit
-# Copyright(C) 2009-2011 Abdoulaye Walsimou GAYE.
-#
-# This program is free software; you can distribute it and/or modify it
-# under the terms of the GNU General Public License
-# (Version 2 or later) published by the Free Software Foundation.
-#
-# This program is distributed in the hope it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
-# for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
-################################################################################
-#
-# \file termcap.mk
-# \brief termcap.mk of Embtoolkit.
-# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
-# \date July 2009
-################################################################################
-
-TERMCAP_VERSION := 1.3.1
-TERMCAP_SITE := ftp://ftp.gnu.org/gnu/termcap/
-TERMCAP_PACKAGE := termcap-$(TERMCAP_VERSION).tar.gz
-TERMCAP_TARGET_BUILD_DIR :=$(PACKAGES_BUILD)/termcap
-
-termcap_target_install: $(TERMCAP_TARGET_BUILD_DIR)/.installed
-
-$(TERMCAP_TARGET_BUILD_DIR)/.installed: termcap_download \
-$(TERMCAP_TARGET_BUILD_DIR)/.decompressed \
-$(TERMCAP_TARGET_BUILD_DIR)/.configured
- @cd $(TERMCAP_TARGET_BUILD_DIR); make $(J) ; make install
-
-$(TERMCAP_TARGET_BUILD_DIR)/.configured:
- $(call EMBTK_GENERIC_MESSAGE,"Configuring termcap-$(TERMCAP_VERSION) \
- for $(STRICT_GNU_TARGET) ...")
- @cd $(TERMCAP_TARGET_BUILD_DIR); \
- CC=$(TARGETCC_CACHED) RANLIB=$(TARGETRANLIB) AR=$(TARGETAR) \
- $(PACKAGES_BUILD)/termcap-$(TERMCAP_VERSION)/configure \
- --host=$(STRICT_GNU_TARGET) --target=$(STRICT_GNU_TARGET) \
- --prefix=$(SYSROOT)/usr
- @touch $@
-
-termcap_download:
- $(call EMBTK_GENERIC_MESSAGE,"Downloading $(TERMCAP_PACKAGE) \
- if necessary ...")
- @test -e $(DOWNLOAD_DIR)/$(TERMCAP_PACKAGE) || \
- wget -O $(DOWNLOAD_DIR)/$(TERMCAP_PACKAGE) \
- $(TERMCAP_SITE)/$(TERMCAP_PACKAGE)
-
-$(TERMCAP_TARGET_BUILD_DIR)/.decompressed:
- $(call EMBTK_GENERIC_MESSAGE,"Decompressing $(TERMCAP_PACKAGE)")
- @cd $(PACKAGES_BUILD); test -e termcap-$(TERMCAP_VERSION) || \
- tar xzf $(DOWNLOAD_DIR)/$(TERMCAP_PACKAGE)
- @mkdir $(TERMCAP_TARGET_BUILD_DIR)
- @touch $@