Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 May 2015 18:15:42 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r387761 - head/math/p5-Math-Random
Message-ID:  <201505281815.t4SIFgJZ074837@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Thu May 28 18:15:42 2015
New Revision: 387761
URL: https://svnweb.freebsd.org/changeset/ports/387761

Log:
  - Fix shebangs
  - Strip library
  
  Approved by:	portmgr blanket
  MFH:		2015Q2

Modified:
  head/math/p5-Math-Random/Makefile

Modified: head/math/p5-Math-Random/Makefile
==============================================================================
--- head/math/p5-Math-Random/Makefile	Thu May 28 18:15:34 2015	(r387760)
+++ head/math/p5-Math-Random/Makefile	Thu May 28 18:15:42 2015	(r387761)
@@ -3,7 +3,7 @@
 
 PORTNAME=	Math-Random
 PORTVERSION=	0.71
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	math perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
@@ -11,7 +11,13 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	perl@FreeBSD.org
 COMMENT=	Random number generators
 
-USES=		perl5
+USES=		perl5 shebangfix
+SHEBANG_FILES=	example.pl
 USE_PERL5=	configure
 
+post-install:
+	${CHMOD} u+w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Random/Random.so
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Random/Random.so
+	${CHMOD} u-w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Random/Random.so
+
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505281815.t4SIFgJZ074837>