From owner-svn-ports-head@freebsd.org Mon Feb 29 17:07:20 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32EE7AB8415; Mon, 29 Feb 2016 17:07:20 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 03C6E79E; Mon, 29 Feb 2016 17:07:19 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1TH7Jqo021496; Mon, 29 Feb 2016 17:07:19 GMT (envelope-from theraven@FreeBSD.org) Received: (from theraven@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1TH7JQq021495; Mon, 29 Feb 2016 17:07:19 GMT (envelope-from theraven@FreeBSD.org) Message-Id: <201602291707.u1TH7JQq021495@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: theraven set sender to theraven@FreeBSD.org using -f From: David Chisnall Date: Mon, 29 Feb 2016 17:07:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409818 - head/lang/gnustep-base 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.20 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: Mon, 29 Feb 2016 17:07:20 -0000 Author: theraven Date: Mon Feb 29 17:07:18 2016 New Revision: 409818 URL: https://svnweb.freebsd.org/changeset/ports/409818 Log: Add GNUstep Make as a run-time dependency of GNUstep Base. The -make package contains makefiles required for building, but also shell scripts for finding run-time dependencies. This was reported as a bug on www/sogo, but actually affects most GNUstep applications. PR: 206586 Modified: head/lang/gnustep-base/Makefile Modified: head/lang/gnustep-base/Makefile ============================================================================== --- head/lang/gnustep-base/Makefile Mon Feb 29 17:05:01 2016 (r409817) +++ head/lang/gnustep-base/Makefile Mon Feb 29 17:07:18 2016 (r409818) @@ -3,6 +3,7 @@ PORTNAME= gnustep-base PORTVERSION= 1.24.8 +PORTREVISION= 1 CATEGORIES= lang devel gnustep MASTER_SITES= GNUSTEP/core @@ -18,6 +19,8 @@ LIB_DEPENDS+= libxslt.so:${PORTSDIR}/tex LIB_DEPENDS+= libgmp.so:${PORTSDIR}/math/gmp LIB_DEPENDS+= libgcrypt.so:${PORTSDIR}/security/libgcrypt +RUN_DEPENDS+= ${LOCALBASE}/GNUstep/System/Library/Makefiles/GNUstep.sh:${PORTSDIR}/devel/gnustep-make + GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-procfs --disable-mixedabi CONFIGURE_ENV= OBJCFLAGS='-fobjc-runtime=gnustep-1.7 -fblocks'