svn commit: r435962 - head/x11/libxshmfence

Matthew Rezny rezny at FreeBSD.org
Sat Mar 11 21:24:31 UTC 2017


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 at 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 <bsd.port.mk>


More information about the svn-ports-all mailing list