From owner-svn-ports-all@freebsd.org Fri Dec 30 12:19:23 2016 Return-Path: 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 24102C972BE; Fri, 30 Dec 2016 12:19:23 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 E7C2415E1; Fri, 30 Dec 2016 12:19:22 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBUCJMjK072708; Fri, 30 Dec 2016 12:19:22 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBUCJMYr072707; Fri, 30 Dec 2016 12:19:22 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201612301219.uBUCJMYr072707@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Fri, 30 Dec 2016 12:19:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429972 - head/security/libecc 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.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2016 12:19:23 -0000 Author: hrs Date: Fri Dec 30 12:19:21 2016 New Revision: 429972 URL: https://svnweb.freebsd.org/changeset/ports/429972 Log: - Add LICENSE. - Strip installed binaries. Modified: head/security/libecc/Makefile Modified: head/security/libecc/Makefile ============================================================================== --- head/security/libecc/Makefile Fri Dec 30 12:15:18 2016 (r429971) +++ head/security/libecc/Makefile Fri Dec 30 12:19:21 2016 (r429972) @@ -3,23 +3,24 @@ PORTNAME= libecc PORTVERSION= 0.14.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= hrs@FreeBSD.org COMMENT= C++ Elliptic Curve Library +LICENSE= GPLv2+ + LIB_DEPENDS= libgmp.so:math/gmp -USES= libtool +USES= libtool localbase GNU_CONFIGURE= yes USE_LDCONFIG= yes - -CPPFLAGS+= -I${PREFIX}/include -I${LOCALBASE}/include -LDFLAGS+= -L${PREFIX}/lib -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip post-patch: - @${REINPLACE_CMD} 's@endian\.h@sys/&@' ${WRKSRC}/include/libecc/bitset.h + @${REINPLACE_CMD} 's@endian\.h@sys/&@' \ + ${WRKSRC}/include/libecc/bitset.h .include