Commit c2e3d0be authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

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: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent b64cde60
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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
+0 −3
Original line number Diff line number Diff line
@@ -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"

package/distcc/Config.in

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
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/

package/distcc/distcc.mk

deleted100644 → 0
+0 −19
Original line number Diff line number Diff line
################################################################################
#
# 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))