From owner-svn-ports-all@FreeBSD.ORG Sat Feb 28 17:49:16 2015 Return-Path: Delivered-To: svn-ports-all@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 DA5C5442; Sat, 28 Feb 2015 17:49:16 +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 C5C2F270; Sat, 28 Feb 2015 17:49:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1SHnGIs091780; Sat, 28 Feb 2015 17:49:16 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1SHnGw5091779; Sat, 28 Feb 2015 17:49:16 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201502281749.t1SHnGw5091779@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 28 Feb 2015 17:49:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380156 - 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-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Feb 2015 17:49:17 -0000 Author: marino Date: Sat Feb 28 17:49:15 2015 New Revision: 380156 URL: https://svnweb.freebsd.org/changeset/ports/380156 QAT: https://qat.redports.org/buildarchive/r380156/ Log: lang/gnustep-base: Remove empty directories from stagedir Two empty directories weren't listed in pkg-plist, causing this port not to pass poudriere QA checks. My interpretation is that these directories were never packaged, and they should not be packaged, so let's simply remove them from stagedir. This alse means we don't have to bump the port. Approved by: just fix it Modified: head/lang/gnustep-base/Makefile Modified: head/lang/gnustep-base/Makefile ============================================================================== --- head/lang/gnustep-base/Makefile Sat Feb 28 17:16:33 2015 (r380155) +++ head/lang/gnustep-base/Makefile Sat Feb 28 17:49:15 2015 (r380156) @@ -53,6 +53,7 @@ CFLAGS+= -I${LOCALBASE}/include/libxml2/ BREAKS_IF_PEDANTIC= yes PLIST_SUB+= LOCALBASE=${LOCALBASE} ETCDIR= ${LOCALBASE}/etc +STAGEHEADER= ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Headers PLIST_SUB+= BASEVERSION=${PORTVERSION:C/[.][0-9]*$//1} @@ -74,5 +75,7 @@ post-extract: post-install: ${INSTALL_DATA} ${FILESDIR}/gdomap_if ${STAGEDIR}${ETCDIR} + ${RMDIR} ${STAGEHEADER}/gnustep/base + ${RMDIR} ${STAGEHEADER}/GNUstepBase/unicode .include