app-benchmarks/httperf: Add 0.9.1_p20181111 snapshot
authorAndreas Sturmlechner <asturm@gentoo.org>
Sun, 28 Apr 2019 21:24:40 +0000 (23:24 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Sun, 28 Apr 2019 21:40:54 +0000 (23:40 +0200)
Fixes build with >=dev-libs/openssl-1.1

Thanks-to: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Closes: https://bugs.gentoo.org/674582
Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
app-benchmarks/httperf/Manifest
app-benchmarks/httperf/httperf-0.9.1_p20181111.ebuild [new file with mode: 0644]

index 3fa87708185fe06a9fad49b807680e2c58e18ef9..0ec16e30972cc31b678a82c773f6def2de82051c 100644 (file)
@@ -1 +1,2 @@
 DIST httperf-0.9.1_p20161228.tar.gz 106357 BLAKE2B fa35d47a9e59bd8d8979e2a56ef8e5966c8e83a0a738e0995730efb2721344bcfa6187581b04a05ec2ca7f3424072894c7c10dd63cc1a4a2bb4c0f29df2a0a6c SHA512 e5dbb400e4ab0db3cc1621731d99af9261574a8a1da4279c722ebbd80537d0aae2a3d662f4d51eb9130bc98823c2786710c7819a0144f4ae3f8cf153e28d7dfa
+DIST httperf-0.9.1_p20181111.tar.gz 107070 BLAKE2B 044f45b0d4b17bc714a718835be1e713092fe7f6d6573df237ba87791e5783e8f60d1218f29e01473ccdeec3b461d3ab7d35d68a1037ee693865a37fd78b7ea5 SHA512 34cc92f3de6d1dadc3fedc5b5f617538b76787496f9dd28b7800866abaf96c7410765d4bb0989000910bf2b51433292c0a7009fe64ba4fd29889ce96cc4d10fc
diff --git a/app-benchmarks/httperf/httperf-0.9.1_p20181111.ebuild b/app-benchmarks/httperf/httperf-0.9.1_p20181111.ebuild
new file mode 100644 (file)
index 0000000..75a84f5
--- /dev/null
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+COMMIT="00bf5dab6fd284aa559f125964f5fe6dc0f23595"
+inherit autotools
+
+DESCRIPTION="A tool from HP for measuring web server performance"
+HOMEPAGE="https://github.com/httperf/httperf"
+SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~x86 ~amd64-linux ~x64-macos"
+IUSE="debug idleconn libressl"
+
+DEPEND="
+       idleconn? ( dev-libs/libevent:0= )
+       !libressl? ( dev-libs/openssl:0= )
+       libressl? ( dev-libs/libressl:0= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+src_prepare() {
+       default
+       eautoreconf
+}
+
+src_configure() {
+       local myeconfargs=(
+               --bindir="${EPREFIX}"/usr/bin
+               $(use_enable debug)
+               $(use_enable idleconn)
+       )
+
+       econf "${myeconfargs[@]}"
+}