From owner-svn-ports-head@FreeBSD.ORG Thu Jul 11 06:02:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2D0A3147; Thu, 11 Jul 2013 06:02:41 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 208AD1290; Thu, 11 Jul 2013 06:02:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6B62fKO048181; Thu, 11 Jul 2013 06:02:41 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6B62eMD048180; Thu, 11 Jul 2013 06:02:40 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201307110602.r6B62eMD048180@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Jul 2013 06:02:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322744 - head/x11-wm/ede 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.14 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: Thu, 11 Jul 2013 06:02:41 -0000 Author: bapt Date: Thu Jul 11 06:02:40 2013 New Revision: 322744 URL: http://svnweb.freebsd.org/changeset/ports/322744 Log: Mark job unsafe (fails with -j24) Use options helpers Modified: head/x11-wm/ede/Makefile Modified: head/x11-wm/ede/Makefile ============================================================================== --- head/x11-wm/ede/Makefile Thu Jul 11 05:53:09 2013 (r322743) +++ head/x11-wm/ede/Makefile Thu Jul 11 06:02:40 2013 (r322744) @@ -36,7 +36,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-edelib_path=${EDELIB_WRKSRC} \ --with-fltk-path=${LOCALBASE} INSTALL_ICONS= yes -MAKE_JOBS_SAFE= yes +MAKE_JOBS_UNSAFE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -49,13 +49,8 @@ EDELIB_DISTNAME=${EDELIB_NAME}-${EDELIB_ EDELIB_DISTFILE=${EDELIB_DISTNAME}${EXTRACT_SUFX} EDELIB_WRKSRC= ${WRKDIR}/${EDELIB_DISTNAME} -.include - -.if ${PORT_OPTIONS:MHAL} -LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal -.else -CONFIGURE_ARGS+=--disable-hal -.endif +HAL_LIB_DEPENDS= libhal.so.1:${PORTSDIR}/sysutils/hal +HAL_CONFIGURE_OFF= --disable-hal # use multiple make jobs _make_jobs= -j${MAKE_JOBS_NUMBER}