svn commit: r390407 - head/graphics/gauche-gl

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Jun 23 14:12:22 UTC 2015


Author: amdmi3
Date: Tue Jun 23 14:12:21 2015
New Revision: 390407
URL: https://svnweb.freebsd.org/changeset/ports/390407

Log:
  - Fix library stripping

Modified:
  head/graphics/gauche-gl/Makefile

Modified: head/graphics/gauche-gl/Makefile
==============================================================================
--- head/graphics/gauche-gl/Makefile	Tue Jun 23 14:12:14 2015	(r390406)
+++ head/graphics/gauche-gl/Makefile	Tue Jun 23 14:12:21 2015	(r390407)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gl
 PORTVERSION=	0.6
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics scheme
 MASTER_SITES=	SF/gauche/Gauche-gl
 PKGNAMEPREFIX=	gauche-
@@ -57,6 +57,7 @@ do-install:
 	@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \
 		${STAGEDIR}${EXAMPLESDIR})
 	@(cd ${STAGEDIR}${PREFIX}/lib/gauche-0.9/site/${CONFIGURE_TARGET} && \
-		${STRIP_CMD} libgauche-*.so)
+		${CHMOD} u+w libgauche-*.so && ${STRIP_CMD} libgauche-*.so && \
+		${CHMOD} u-w libgauche-*.so)
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list