distcc: remove deprecated package

It's been deprecated since feb 2014 and it'll be a year for the 2015.02
release so remove it.
And it's basically useless without a target toolchain.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2015-01-15 11:30:17 -03:00 committed by Peter Korsgaard
parent b64cde6079
commit c2e3d0be90
4 changed files with 8 additions and 33 deletions

View File

@ -102,6 +102,14 @@ endif
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

View File

@ -109,9 +109,6 @@ menu "Development tools"
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"

View File

@ -1,11 +0,0 @@
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/

View File

@ -1,19 +0,0 @@
################################################################################
#
# 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))