diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-02-24 22:00:33 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-02-24 22:00:33 +0000 |
commit | 5045ea7bc2516feb050de20a2b0e44277ba1089c (patch) | |
tree | 11552501b06ee8fb5e6b6482c8425470b9cc9552 /net-misc | |
parent | Build koabstraction only if possible, bug 402655 (diff) | |
download | gentoo-2-5045ea7bc2516feb050de20a2b0e44277ba1089c.tar.gz gentoo-2-5045ea7bc2516feb050de20a2b0e44277ba1089c.tar.bz2 gentoo-2-5045ea7bc2516feb050de20a2b0e44277ba1089c.zip |
Version bump
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/cgminer/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/cgminer/cgminer-2.3.0.ebuild | 3 | ||||
-rw-r--r-- | net-misc/cgminer/cgminer-2.3.1.2.ebuild | 101 |
3 files changed, 110 insertions, 1 deletions
diff --git a/net-misc/cgminer/ChangeLog b/net-misc/cgminer/ChangeLog index ff62c7e1bed2..cd4691ceebf0 100644 --- a/net-misc/cgminer/ChangeLog +++ b/net-misc/cgminer/ChangeLog @@ -1,4 +1,11 @@ + +*cgminer-2.3.1.2 (24 Feb 2012) + + 24 Feb 2012; Anthony G. Basile <blueness@gentoo.org> cgminer-2.3.0.ebuild, + +cgminer-2.3.1.2.ebuild: + Version bump + 23 Feb 2012; Anthony G. Basile <blueness@gentoo.org> cgminer-2.3.0.ebuild: Add -nopie to CFLAGS for hardened because of PIC unfriendly asm diff --git a/net-misc/cgminer/cgminer-2.3.0.ebuild b/net-misc/cgminer/cgminer-2.3.0.ebuild index 40ecbf346323..1e5db336a19d 100644 --- a/net-misc/cgminer/cgminer-2.3.0.ebuild +++ b/net-misc/cgminer/cgminer-2.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/cgminer/cgminer-2.3.0.ebuild,v 1.2 2012/02/23 23:29:34 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/cgminer/cgminer-2.3.0.ebuild,v 1.3 2012/02/24 22:00:33 blueness Exp $ EAPI="4" @@ -68,6 +68,7 @@ src_configure() { use sse2_4way && CFLAGS="${CFLAGS} -DWANT_SSE2_4WAY=1" use sse4 && CFLAGS="${CFLAGS} -DWANT_X8664_SSE4=1" use hardened && CFLAGS="${CFLAGS} -nopie" + CFLAGS="${CFLAGS}" \ econf \ $(use_enable adl) \ diff --git a/net-misc/cgminer/cgminer-2.3.1.2.ebuild b/net-misc/cgminer/cgminer-2.3.1.2.ebuild new file mode 100644 index 000000000000..4f39d0bf71e4 --- /dev/null +++ b/net-misc/cgminer/cgminer-2.3.1.2.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/cgminer/cgminer-2.3.1.2.ebuild,v 1.1 2012/02/24 22:00:33 blueness Exp $ + +EAPI="4" + +inherit versionator + +MY_PV="$(replace_version_separator 3 -)" +S="${WORKDIR}/${PN}-${MY_PV}" + +DESCRIPTION="Bitcoin CPU/GPU/FPGA miner in C" +HOMEPAGE="https://bitcointalk.org/index.php?topic=28402.0" +SRC_URI="http://ck.kolivas.org/apps/${PN}/${PN}-${MY_PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +IUSE="+adl altivec bitforce +cpumining examples hardened icarus +opencl padlock sse2 sse2_4way sse4" +REQUIRED_USE=" + || ( bitforce cpumining icarus opencl ) + adl? ( opencl ) + altivec? ( cpumining ppc ppc64 ) + padlock? ( cpumining || ( amd64 x86 ) ) + sse2? ( cpumining || ( amd64 x86 ) ) + sse4? ( cpumining amd64 ) +" + +DEPEND=" + net-misc/curl + sys-libs/ncurses + dev-libs/jansson + opencl? ( + virtual/opencl + ) +" +RDEPEND="${DEPEND}" +DEPEND="${DEPEND} + dev-util/pkgconfig + sys-apps/sed + adl? ( + x11-libs/amd-adl-sdk + ) + sse2? ( + >=dev-lang/yasm-1.0.1 + ) + sse4? ( + >=dev-lang/yasm-1.0.1 + ) +" + +src_prepare() { + sed -i 's/\(^\#define WANT_.*\(SSE\|PADLOCK\|ALTIVEC\)\)/\/\/ \1/' miner.h + ln -s /usr/include/ADL/* ADL_SDK/ +} + +src_configure() { + local CFLAGS="${CFLAGS}" + if ! use altivec; then + sed -i 's/-faltivec//g' configure + else + CFLAGS="${CFLAGS} -DWANT_ALTIVEC=1" + fi + use padlock && CFLAGS="${CFLAGS} -DWANT_VIA_PADLOCK=1" + if use sse2; then + if use amd64; then + CFLAGS="${CFLAGS} -DWANT_X8664_SSE2=1" + else + CFLAGS="${CFLAGS} -DWANT_X8632_SSE2=1" + fi + fi + use sse2_4way && CFLAGS="${CFLAGS} -DWANT_SSE2_4WAY=1" + use sse4 && CFLAGS="${CFLAGS} -DWANT_X8664_SSE4=1" + use hardened && CFLAGS="${CFLAGS} -nopie" + + CFLAGS="${CFLAGS}" \ + econf \ + $(use_enable adl) \ + $(use_enable bitforce) \ + $(use_enable cpumining) \ + $(use_enable icarus) \ + $(use_enable opencl) + if use opencl; then + # sanitize directories + sed -i 's/^(\#define CGMINER_PREFIX ).*$/\1"'"${EPREFIX}/usr/share/cgminer"'"/' config.h + fi +} + +src_install() { + dobin cgminer + dodoc AUTHORS NEWS README + if use opencl; then + insinto /usr/share/cgminer + doins *.cl + fi + if use examples; then + docinto examples + dodoc api-example.php miner.php API.java api-example.c + fi +} |