From owner-svn-ports-all@freebsd.org Sat Mar 11 21:24:31 2017 Return-Path: Delivered-To: svn-ports-all@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 23CF7D08A93; Sat, 11 Mar 2017 21:24:31 +0000 (UTC) (envelope-from rezny@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 E50DCFC3; Sat, 11 Mar 2017 21:24:30 +0000 (UTC) (envelope-from rezny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2BLOTib066468; Sat, 11 Mar 2017 21:24:29 GMT (envelope-from rezny@FreeBSD.org) Received: (from rezny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2BLOTlS066467; Sat, 11 Mar 2017 21:24:29 GMT (envelope-from rezny@FreeBSD.org) Message-Id: <201703112124.v2BLOTlS066467@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rezny set sender to rezny@FreeBSD.org using -f From: Matthew Rezny Date: Sat, 11 Mar 2017 21:24:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435962 - head/x11/libxshmfence 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.23 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, 11 Mar 2017 21:24:31 -0000 Author: rezny Date: Sat Mar 11 21:24:29 2017 New Revision: 435962 URL: https://svnweb.freebsd.org/changeset/ports/435962 Log: - Set the shared memory directory to /tmp to prevent polluting /var/tmp [1] - Strip the installed library PR: 217676 [1] Submitted by: jbeich [1] Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D9951 Modified: head/x11/libxshmfence/Makefile Modified: head/x11/libxshmfence/Makefile ============================================================================== --- head/x11/libxshmfence/Makefile Sat Mar 11 21:15:03 2017 (r435961) +++ head/x11/libxshmfence/Makefile Sat Mar 11 21:24:29 2017 (r435962) @@ -2,6 +2,7 @@ PORTNAME= libxshmfence PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -12,7 +13,8 @@ LICENSE= MIT USE_XORG= xproto XORG_CAT= lib -test: build - @cd ${WRKSRC} && ${MAKE} check +CONFIGURE_ARGS= --with-shared-memory-dir=/tmp +INSTALL_TARGET= install-strip +TEST_TARGET= check .include