From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 23:49:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72733F0C; Fri, 10 Oct 2014 23:49:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E48334C; Fri, 10 Oct 2014 23:49:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ANnLPO078243; Fri, 10 Oct 2014 23:49:21 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ANnLal078242; Fri, 10 Oct 2014 23:49:21 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201410102349.s9ANnLal078242@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Fri, 10 Oct 2014 23:49:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370618 - head/sysutils/busybox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 23:49:21 -0000 Author: mandree Date: Fri Oct 10 23:49:20 2014 New Revision: 370618 URL: https://svnweb.freebsd.org/changeset/ports/370618 QAT: https://qat.redports.org/buildarchive/r370618/ Log: + Add a STATIC ports option to build a static executable [1]. + USE_BZIP2 -> USES=...tar:bz2. + Move PORTSCOUT line down to appease portlint. + No PORTREVISION bump for now, no functional change unless options changed. PR: 194294 [1] Submitted by: bdrewery [1] Modified: head/sysutils/busybox/Makefile Modified: head/sysutils/busybox/Makefile ============================================================================== --- head/sysutils/busybox/Makefile Fri Oct 10 23:37:48 2014 (r370617) +++ head/sysutils/busybox/Makefile Fri Oct 10 23:49:20 2014 (r370618) @@ -19,20 +19,21 @@ COMMENT= Busybox for FreeBSD LICENSE= GPLv2 -PORTSCOUT= skipv:1.23.0 - BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed CONFLICTS_INSTALL= busybox-unstable-* +PORTSCOUT= skipv:1.23.0 + MAKE_ARGS+= SKIP_STRIP=y CC="${CC}" HOSTCC="${CC}" CXX="${CXX}" HOSTCXX="${CXX}" -USE_BZIP2= yes # findutils/find.c l. 752+, uses a GCC extension/invalid C code: -USES= compiler:nestedfct gmake +USES= compiler:nestedfct gmake tar:bz2 PLIST_FILES= bin/busybox -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS STATIC + +STATIC_LDFLAGS= -static .include