From owner-svn-ports-all@freebsd.org  Thu Oct  1 07:04:41 2015
Return-Path: <owner-svn-ports-all@freebsd.org>
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 E933AA0C88D;
 Thu,  1 Oct 2015 07:04:41 +0000 (UTC)
 (envelope-from amdmi3@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2001:1900:2254:2068::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 DABC9192A;
 Thu,  1 Oct 2015 07:04:41 +0000 (UTC)
 (envelope-from amdmi3@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.70])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9174fGM041720;
 Thu, 1 Oct 2015 07:04:41 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9174fIR041719;
 Thu, 1 Oct 2015 07:04:41 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201510010704.t9174fIR041719@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov <amdmi3@FreeBSD.org>
Date: Thu, 1 Oct 2015 07:04:41 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r398254 - head/math/py-gsl
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.20
Precedence: list
List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/>
List-Post: <mailto:svn-ports-all@freebsd.org>
List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 01 Oct 2015 07:04:42 -0000

Author: amdmi3
Date: Thu Oct  1 07:04:41 2015
New Revision: 398254
URL: https://svnweb.freebsd.org/changeset/ports/398254

Log:
  - Add LICENSE_FILE
  - Strip library
  
  Approved by:	portmgr blanket

Modified:
  head/math/py-gsl/Makefile

Modified: head/math/py-gsl/Makefile
==============================================================================
--- head/math/py-gsl/Makefile	Thu Oct  1 07:04:30 2015	(r398253)
+++ head/math/py-gsl/Makefile	Thu Oct  1 07:04:41 2015	(r398254)
@@ -3,6 +3,7 @@
 
 PORTNAME=	gsl
 PORTVERSION=	2.1.1
+PORTREVISION=	1
 CATEGORIES=	math python
 MASTER_SITES=	SF/py${PORTNAME}/py${PORTNAME}/py${PORTNAME}-${PORTVERSION}
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -13,6 +14,7 @@ MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Python interface to GNU Scientific Library
 
 LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	${PYNUMPY}
 RUN_DEPENDS=	${PYNUMPY}
@@ -21,4 +23,9 @@ LIB_DEPENDS=	libgsl.so:${PORTSDIR}/math/
 USES=		python
 USE_PYTHON=	autoplist distutils
 
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pygsl/*.so \
+		${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pygsl/statistics/*.so \
+		${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pygsl/testing/*.so
+
 .include <bsd.port.mk>