mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-p2p/cpuminer-opt: curl is an unconditional dependency, add test
Closes: https://bugs.gentoo.org/651270 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
50
net-p2p/cpuminer-opt/cpuminer-opt-3.8.8.1-r1.ebuild
Normal file
50
net-p2p/cpuminer-opt/cpuminer-opt-3.8.8.1-r1.ebuild
Normal file
@@ -0,0 +1,50 @@
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit autotools flag-o-matic systemd
|
||||
|
||||
DESCRIPTION="Optimized multi algo CPU miner"
|
||||
HOMEPAGE="https://github.com/JayDDee/cpuminer-opt"
|
||||
IUSE="cpu_flags_x86_sse2 curl libressl"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
REQUIRED_USE="cpu_flags_x86_sse2"
|
||||
DEPEND="
|
||||
dev-libs/gmp:0
|
||||
dev-libs/jansson
|
||||
>=net-misc/curl-7.15[ssl]
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
libressl? ( dev-libs/libressl:0= )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
SRC_URI=""
|
||||
EGIT_REPO_URI="https://github.com/JayDDee/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
KEYWORDS="~amd64"
|
||||
SRC_URI="https://github.com/JayDDee/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
fi
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-ldflags -Wl,-z,noexecstack
|
||||
econf --with-crypto --with-curl
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
systemd_dounit "${FILESDIR}"/${PN}.service
|
||||
insinto "/etc/${PN}"
|
||||
doins cpuminer-conf.json
|
||||
}
|
||||
|
||||
src_test() {
|
||||
./cpuminer --cputest || die
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
@@ -14,7 +14,7 @@ REQUIRED_USE="cpu_flags_x86_sse2"
|
||||
DEPEND="
|
||||
dev-libs/gmp:0
|
||||
dev-libs/jansson
|
||||
curl? ( >=net-misc/curl-7.15[ssl] )
|
||||
>=net-misc/curl-7.15[ssl]
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
libressl? ( dev-libs/libressl:0= )
|
||||
"
|
||||
@@ -35,7 +35,7 @@ src_prepare() {
|
||||
|
||||
src_configure() {
|
||||
append-ldflags -Wl,-z,noexecstack
|
||||
econf --with-crypto $(use_with curl)
|
||||
econf --with-crypto --with-curl
|
||||
}
|
||||
|
||||
src_install() {
|
||||
@@ -44,3 +44,7 @@ src_install() {
|
||||
insinto "/etc/${PN}"
|
||||
doins cpuminer-conf.json
|
||||
}
|
||||
|
||||
src_test() {
|
||||
./cpuminer --cputest || die
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user