comment "Legacy options removed in 2015.02"
+config BR2_PACKAGE_DISTCC
+ bool "distcc target package removed"
+ select BR2_LEGACY
+ help
+ The distcc target package has been removed, it's been
+ deprecated for some time now and was essentially useless
+ without a target toolchain.
+
config BR2_PACKAGE_HASERL_VERSION_0_8_X
bool "haserl 0.8.x version removed"
select BR2_LEGACY
source "package/cvs/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/diffutils/Config.in"
-endif
- source "package/distcc/Config.in"
-if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/findutils/Config.in"
endif
source "package/flex/Config.in"
+++ /dev/null
-config BR2_PACKAGE_DISTCC
- bool "distcc"
- # needs fork()
- depends on BR2_USE_MMU
- depends on BR2_DEPRECATED_SINCE_2014_02
- help
- Distributed compiler client and server. Allows you to
- distribute compilation of C code across several machines
- on a network.
-
- http://distcc.samba.org/
+++ /dev/null
-################################################################################
-#
-# distcc
-#
-################################################################################
-
-DISTCC_VERSION = 2.18.3
-DISTCC_SOURCE = distcc-$(DISTCC_VERSION).tar.bz2
-DISTCC_SITE = http://distcc.googlecode.com/files
-DISTCC_CONF_OPTS = --with-included-popt --without-gtk --without-gnome
-DISTCC_LICENSE = GPLv2+
-DISTCC_LICENSE_FILES = COPYING
-
-define DISTCC_INSTALL_TARGET_CMDS
- $(INSTALL) -D $(@D)/distccd $(TARGET_DIR)/usr/bin/distccd
- $(INSTALL) -D $(@D)/distcc $(TARGET_DIR)/usr/bin/distcc
-endef
-
-$(eval $(autotools-package))