From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5529F139694 for ; Wed, 26 Apr 2017 18:43:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1600E0CCB; Wed, 26 Apr 2017 18:43:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C943E0CCB for ; Wed, 26 Apr 2017 18:43:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3BDB6341659 for ; Wed, 26 Apr 2017 18:43:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 982E87441 for ; Wed, 26 Apr 2017 18:43:30 +0000 (UTC) From: "Dirkjan Ochtman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dirkjan Ochtman" Message-ID: <1493232200.4e718599e95198a9017656f40d068b6f99719cb0.djc@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/hyperscan/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/hyperscan/hyperscan-4.4.1-r1.ebuild X-VCS-Directories: dev-libs/hyperscan/ X-VCS-Committer: djc X-VCS-Committer-Name: Dirkjan Ochtman X-VCS-Revision: 4e718599e95198a9017656f40d068b6f99719cb0 X-VCS-Branch: master Date: Wed, 26 Apr 2017 18:43:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 971e1f9c-a833-432a-be52-d9a3ea84f914 X-Archives-Hash: a150756ef20504d670815d339e2d70bd commit: 4e718599e95198a9017656f40d068b6f99719cb0 Author: Christian Roessner roessner-network-solutions com> AuthorDate: Wed Apr 26 09:26:20 2017 +0000 Commit: Dirkjan Ochtman gentoo org> CommitDate: Wed Apr 26 18:43:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e718599 dev-libs/hyperscan: bump to 4.4.1-r1, fix 616626 Gentoo-Bug: 616626 dev-libs/hyperscan/hyperscan-4.4.1-r1.ebuild | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-libs/hyperscan/hyperscan-4.4.1-r1.ebuild b/dev-libs/hyperscan/hyperscan-4.4.1-r1.ebuild new file mode 100644 index 00000000000..9bc34a0334a --- /dev/null +++ b/dev-libs/hyperscan/hyperscan-4.4.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="High-performance regular expression matching library" +SRC_URI="https://github.com/01org/hyperscan/archive/v${PV}.tar.gz" +HOMEPAGE="https://01.org/hyperscan" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cpu_flags_x86_ssse3 static-libs" + +DEPEND="dev-util/ragel + =dev-lang/python-2* + dev-libs/boost + net-libs/libpcap" + +REQUIRED_USE="cpu_flags_x86_ssse3" + +src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=$(usex static-libs OFF ON) + -DBUILD_STATIC_AND_SHARED=$(usex static-libs ON OFF) + ) + cmake-utils_src_configure +}