svn commit: r408477 - head/graphics/linplasma

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon Feb 8 11:20:14 UTC 2016


Author: amdmi3
Date: Mon Feb  8 11:20:12 2016
New Revision: 408477
URL: https://svnweb.freebsd.org/changeset/ports/408477

Log:
  - Fix setuid binary handling
  - Switch to options helpers

Modified:
  head/graphics/linplasma/Makefile

Modified: head/graphics/linplasma/Makefile
==============================================================================
--- head/graphics/linplasma/Makefile	Mon Feb  8 11:18:48 2016	(r408476)
+++ head/graphics/linplasma/Makefile	Mon Feb  8 11:20:12 2016	(r408477)
@@ -3,7 +3,7 @@
 
 PORTNAME=	linplasma
 PORTVERSION=	1.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics
 MASTER_SITES=	SUNSITE/apps/graphics/hacks/svgalib
 
@@ -16,7 +16,7 @@ ONLY_FOR_ARCHS=	i386
 
 ALL_TARGET=	${PORTNAME}
 WRKSRC=		${WRKDIR}/${PORTNAME}
-PLIST_FILES=	bin/linplasma
+PLIST_FILES=	"@(root,,4755) bin/linplasma"
 PORTDOCS=	README
 
 OPTIONS_DEFINE=	DOCS
@@ -29,7 +29,8 @@ post-patch:
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/linplasma ${STAGEDIR}${PREFIX}/bin
-	${CHMOD} +s ${STAGEDIR}${PREFIX}/bin/linplasma
+
+do-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
 


More information about the svn-ports-all mailing list