diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-09-19 16:25:45 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-09-19 16:25:45 +0000 |
commit | b5e34f844c5b301e016158fa9bdcd91861eb828b (patch) | |
tree | 3549b6bc6883067045e1c19f0d9bc233975cb08c | |
parent | Bump for CVE-2013-4324 (diff) | |
download | gentoo-2-b5e34f844c5b301e016158fa9bdcd91861eb828b.tar.gz gentoo-2-b5e34f844c5b301e016158fa9bdcd91861eb828b.tar.bz2 gentoo-2-b5e34f844c5b301e016158fa9bdcd91861eb828b.zip |
Version bumps, remove older unstables
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
18 files changed, 18 insertions, 1694 deletions
diff --git a/net-misc/bfgminer/ChangeLog b/net-misc/bfgminer/ChangeLog index 93b31f40c606..18ebcd6d6da3 100644 --- a/net-misc/bfgminer/ChangeLog +++ b/net-misc/bfgminer/ChangeLog @@ -1,6 +1,20 @@ # ChangeLog for net-misc/bfgminer # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/ChangeLog,v 1.47 2013/08/30 11:15:28 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/ChangeLog,v 1.48 2013/09/19 16:25:45 blueness Exp $ + +*bfgminer-2.10.14 (19 Sep 2013) +*bfgminer-3.2.1 (19 Sep 2013) +*bfgminer-3.0.8 (19 Sep 2013) + + 19 Sep 2013; Anthony G. Basile <blueness@gentoo.org> +bfgminer-2.10.14.ebuild, + +bfgminer-3.0.8.ebuild, +bfgminer-3.2.1.ebuild, -bfgminer-2.10.10.ebuild, + -bfgminer-2.10.11.ebuild, -bfgminer-2.10.12.ebuild, -bfgminer-2.10.13.ebuild, + -bfgminer-2.10.6.ebuild, -bfgminer-2.10.9.ebuild, -bfgminer-3.0.0.ebuild, + -bfgminer-3.0.3.ebuild, -bfgminer-3.0.4.ebuild, -bfgminer-3.0.5.ebuild, + -bfgminer-3.0.6.ebuild, -bfgminer-3.1.0-r1.ebuild, -bfgminer-3.1.1.ebuild, + -bfgminer-3.1.2.ebuild, -bfgminer-3.1.3.ebuild, -bfgminer-3.1.4.ebuild, + -bfgminer-3.2.0.ebuild: + Version bumps, remove older unstables *bfgminer-3.2.0 (30 Aug 2013) *bfgminer-2.10.13 (30 Aug 2013) diff --git a/net-misc/bfgminer/bfgminer-2.10.11.ebuild b/net-misc/bfgminer/bfgminer-2.10.11.ebuild deleted file mode 100644 index b975526517c9..000000000000 --- a/net-misc/bfgminer/bfgminer-2.10.11.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-2.10.11.ebuild,v 1.2 2013/07/09 13:30:10 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin CPU/GPU/FPGA miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl altivec bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS NEWS README API-README - if use scrypt; then - dodoc SCRYPT-README - fi - if use icarus || use bitforce; then - dodoc FPGA-README - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php api-example.c - fi - cd libblkmaker - emake DESTDIR="$D" install -} diff --git a/net-misc/bfgminer/bfgminer-2.10.12.ebuild b/net-misc/bfgminer/bfgminer-2.10.12.ebuild deleted file mode 100644 index ca9b20c47029..000000000000 --- a/net-misc/bfgminer/bfgminer-2.10.12.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-2.10.12.ebuild,v 1.1 2013/08/03 16:22:02 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin CPU/GPU/FPGA miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl altivec bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS NEWS README API-README - if use scrypt; then - dodoc SCRYPT-README - fi - if use icarus || use bitforce; then - dodoc FPGA-README - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php api-example.c - fi - cd libblkmaker - emake DESTDIR="$D" install -} diff --git a/net-misc/bfgminer/bfgminer-2.10.13.ebuild b/net-misc/bfgminer/bfgminer-2.10.13.ebuild deleted file mode 100644 index bedc00bf1911..000000000000 --- a/net-misc/bfgminer/bfgminer-2.10.13.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-2.10.13.ebuild,v 1.1 2013/08/30 11:15:28 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin CPU/GPU/FPGA miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl altivec bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS NEWS README API-README - if use scrypt; then - dodoc SCRYPT-README - fi - if use icarus || use bitforce; then - dodoc FPGA-README - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php api-example.c - fi - cd libblkmaker - emake DESTDIR="$D" install -} diff --git a/net-misc/bfgminer/bfgminer-2.10.10.ebuild b/net-misc/bfgminer/bfgminer-2.10.14.ebuild index 9e7f03fc9800..e4c4dbbe469e 100644 --- a/net-misc/bfgminer/bfgminer-2.10.10.ebuild +++ b/net-misc/bfgminer/bfgminer-2.10.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-2.10.10.ebuild,v 1.2 2013/07/09 13:30:10 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-2.10.14.ebuild,v 1.1 2013/09/19 16:25:45 blueness Exp $ EAPI="4" diff --git a/net-misc/bfgminer/bfgminer-2.10.6.ebuild b/net-misc/bfgminer/bfgminer-2.10.6.ebuild deleted file mode 100644 index 05af3ecd55b2..000000000000 --- a/net-misc/bfgminer/bfgminer-2.10.6.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-2.10.6.ebuild,v 1.1 2013/04/08 00:24:47 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin CPU/GPU/FPGA miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="+adl altivec bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS NEWS README API-README - if use scrypt; then - dodoc SCRYPT-README - fi - if use icarus || use bitforce; then - dodoc FPGA-README - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php API.java api-example.c - fi - cd libblkmaker - emake DESTDIR="$D" install -} diff --git a/net-misc/bfgminer/bfgminer-2.10.9.ebuild b/net-misc/bfgminer/bfgminer-2.10.9.ebuild deleted file mode 100644 index b7e6000db74a..000000000000 --- a/net-misc/bfgminer/bfgminer-2.10.9.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-2.10.9.ebuild,v 1.1 2013/06/14 18:37:53 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin CPU/GPU/FPGA miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="+adl altivec bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS NEWS README API-README - if use scrypt; then - dodoc SCRYPT-README - fi - if use icarus || use bitforce; then - dodoc FPGA-README - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php API.java api-example.c - fi - cd libblkmaker - emake DESTDIR="$D" install -} diff --git a/net-misc/bfgminer/bfgminer-3.0.0.ebuild b/net-misc/bfgminer/bfgminer-3.0.0.ebuild deleted file mode 100644 index 2219523c5f1c..000000000000 --- a/net-misc/bfgminer/bfgminer-3.0.0.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.0.0.ebuild,v 1.2 2013/06/26 17:09:41 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl altivec avalon bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS HACKING NEWS README README.RPC - if use scrypt; then - dodoc README.scrypt - fi - if use icarus || use bitforce; then - dodoc README.FPGA - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php API.java api-example.c api-example.py - fi - cd libblkmaker - emake DESTDIR="$D" install -} diff --git a/net-misc/bfgminer/bfgminer-3.0.3.ebuild b/net-misc/bfgminer/bfgminer-3.0.3.ebuild deleted file mode 100644 index cf57ae67a3dd..000000000000 --- a/net-misc/bfgminer/bfgminer-3.0.3.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.0.3.ebuild,v 1.2 2013/06/26 17:09:41 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl altivec avalon bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS HACKING NEWS README README.RPC - if use scrypt; then - dodoc README.scrypt - fi - if use icarus || use bitforce; then - dodoc README.FPGA - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php API.java api-example.c api-example.py - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.0.4.ebuild b/net-misc/bfgminer/bfgminer-3.0.4.ebuild deleted file mode 100644 index 824114ba2368..000000000000 --- a/net-misc/bfgminer/bfgminer-3.0.4.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.0.4.ebuild,v 1.2 2013/07/09 13:30:10 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl altivec avalon bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS HACKING NEWS README README.RPC - if use scrypt; then - dodoc README.scrypt - fi - if use icarus || use bitforce; then - dodoc README.FPGA - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php api-example.c api-example.py - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.0.5.ebuild b/net-misc/bfgminer/bfgminer-3.0.5.ebuild deleted file mode 100644 index 8d99b1dcf8b7..000000000000 --- a/net-misc/bfgminer/bfgminer-3.0.5.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.0.5.ebuild,v 1.2 2013/07/09 13:30:10 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl altivec avalon bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - altivec? ( cpumining ppc ppc64 ) - padlock? ( cpumining || ( amd64 x86 ) ) - scrypt? ( || ( cpumining opencl ) ) - sse2? ( cpumining || ( amd64 x86 ) ) - sse4? ( cpumining amd64 ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - sys-apps/sed - 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 -} - -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 avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $(use_with udev libudev) \ - $(use_enable x6500) \ - $(use_enable ztex) - # sanitize directories - sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h -} - -src_install() { - dobin bfgminer - dobin bfgminer-rpc - dodoc AUTHORS HACKING NEWS README README.RPC - if use scrypt; then - dodoc README.scrypt - fi - if use icarus || use bitforce; then - dodoc README.FPGA - fi - if use bitforce; then - dobin bitforce-firmware-flash - fi - if use modminer || use x6500; then - insinto /usr/lib/bfgminer/bitstreams - doins bitstreams/fpgaminer*.bit - dodoc bitstreams/COPYING_fpgaminer - fi - if use opencl; then - insinto /usr/lib/bfgminer - doins *.cl - fi - if use ztex; then - insinto /usr/lib/bfgminer/ztex - doins bitstreams/ztex*.bit - dodoc bitstreams/COPYING_ztex - fi - if use examples; then - docinto examples - dodoc api-example.php miner.php api-example.c api-example.py - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.0.6.ebuild b/net-misc/bfgminer/bfgminer-3.0.8.ebuild index abf52f73b76f..06b247ad22e0 100644 --- a/net-misc/bfgminer/bfgminer-3.0.6.ebuild +++ b/net-misc/bfgminer/bfgminer-3.0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.0.6.ebuild,v 1.1 2013/08/03 16:22:02 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.0.8.ebuild,v 1.1 2013/09/19 16:25:45 blueness Exp $ EAPI="4" diff --git a/net-misc/bfgminer/bfgminer-3.1.0-r1.ebuild b/net-misc/bfgminer/bfgminer-3.1.0-r1.ebuild deleted file mode 100644 index 98fcd2c9a003..000000000000 --- a/net-misc/bfgminer/bfgminer-3.1.0-r1.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.1.0-r1.ebuild,v 1.2 2013/06/26 17:09:41 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl avalon bitforce cpumining examples hardened icarus lm_sensors modminer ncurses +opencl scrypt +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - lm_sensors? ( opencl ) - scrypt? ( || ( cpumining opencl ) ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - lm_sensors? ( - sys-apps/lm_sensors - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - >=dev-libs/uthash-1.9.2 - sys-apps/sed - cpumining? ( - amd64? ( - >=dev-lang/yasm-1.0.1 - ) - x86? ( - >=dev-lang/yasm-1.0.1 - ) - ) -" - -src_prepare() { - epatch "${FILESDIR}/3.1.0-Bugfix-opencl-Build-fpgautils-even-if-OpenCL-is-the-.patch" - epatch "${FILESDIR}/3.1.0-Bugfix-opencl-Add-missing-include-for-fpgautils.h-ne.patch" - NOSUBMODULES=1 ./autogen.sh -} - -src_configure() { - local CFLAGS="${CFLAGS}" - use hardened && CFLAGS="${CFLAGS} -nopie" - - CFLAGS="${CFLAGS}" \ - econf \ - --docdir="/usr/share/doc/${PF}" \ - $(use_enable adl) \ - $(use_enable avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $(use_with udev libudev) \ - $(use_with lm_sensors sensors) \ - $(use_enable x6500) \ - $(use_enable ztex) -} - -src_install() { - emake install DESTDIR="$D" - if ! use avalon; then - rm "${D}/usr/share/doc/${PF}/README.ASIC" - fi - if ! { use modminer || use bitforce || use icarus || use ztex; }; then - rm "${D}/usr/share/doc/${PF}/README.FPGA" - fi - if ! use opencl; then - rm "${D}/usr/share/doc/${PF}/README.GPU" - fi - if ! use scrypt; then - rm "${D}/usr/share/doc/${PF}/README.scrypt" - fi - if ! use examples; then - rm -r "${D}/usr/share/doc/${PF}/rpc-examples" - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.1.1.ebuild b/net-misc/bfgminer/bfgminer-3.1.1.ebuild deleted file mode 100644 index 4863c55cdab1..000000000000 --- a/net-misc/bfgminer/bfgminer-3.1.1.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.1.1.ebuild,v 1.2 2013/07/09 13:30:10 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl avalon bitforce cpumining examples hardened icarus lm_sensors modminer ncurses +opencl scrypt +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - lm_sensors? ( opencl ) - scrypt? ( || ( cpumining opencl ) ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - lm_sensors? ( - sys-apps/lm_sensors - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - >=dev-libs/uthash-1.9.2 - sys-apps/sed - cpumining? ( - amd64? ( - >=dev-lang/yasm-1.0.1 - ) - x86? ( - >=dev-lang/yasm-1.0.1 - ) - ) -" - -src_configure() { - local CFLAGS="${CFLAGS}" - use hardened && CFLAGS="${CFLAGS} -nopie" - - CFLAGS="${CFLAGS}" \ - econf \ - --docdir="/usr/share/doc/${PF}" \ - $(use_enable adl) \ - $(use_enable avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $(use_with udev libudev) \ - $(use_with lm_sensors sensors) \ - $(use_enable x6500) \ - $(use_enable ztex) -} - -src_install() { - emake install DESTDIR="$D" - if ! use examples; then - rm -r "${D}/usr/share/doc/${PF}/rpc-examples" - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.1.2.ebuild b/net-misc/bfgminer/bfgminer-3.1.2.ebuild deleted file mode 100644 index 35509e00328f..000000000000 --- a/net-misc/bfgminer/bfgminer-3.1.2.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.1.2.ebuild,v 1.2 2013/07/09 13:30:10 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl avalon bitforce cpumining examples hardened icarus lm_sensors modminer ncurses +opencl scrypt +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - lm_sensors? ( opencl ) - scrypt? ( || ( cpumining opencl ) ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - lm_sensors? ( - sys-apps/lm_sensors - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - >=dev-libs/uthash-1.9.2 - sys-apps/sed - cpumining? ( - amd64? ( - >=dev-lang/yasm-1.0.1 - ) - x86? ( - >=dev-lang/yasm-1.0.1 - ) - ) -" - -src_configure() { - local CFLAGS="${CFLAGS}" - use hardened && CFLAGS="${CFLAGS} -nopie" - - CFLAGS="${CFLAGS}" \ - econf \ - --docdir="/usr/share/doc/${PF}" \ - $(use_enable adl) \ - $(use_enable avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $(use_with udev libudev) \ - $(use_with lm_sensors sensors) \ - $(use_enable x6500) \ - $(use_enable ztex) -} - -src_install() { - emake install DESTDIR="$D" - if ! use examples; then - rm -r "${D}/usr/share/doc/${PF}/rpc-examples" - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.1.3.ebuild b/net-misc/bfgminer/bfgminer-3.1.3.ebuild deleted file mode 100644 index f41d2de8660a..000000000000 --- a/net-misc/bfgminer/bfgminer-3.1.3.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.1.3.ebuild,v 1.1 2013/07/16 10:19:42 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl avalon bitforce cpumining examples hardened icarus lm_sensors modminer ncurses +opencl scrypt +udev x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - lm_sensors? ( opencl ) - scrypt? ( || ( cpumining opencl ) ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - lm_sensors? ( - sys-apps/lm_sensors - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - >=dev-libs/uthash-1.9.2 - sys-apps/sed - cpumining? ( - amd64? ( - >=dev-lang/yasm-1.0.1 - ) - x86? ( - >=dev-lang/yasm-1.0.1 - ) - ) -" - -src_configure() { - local CFLAGS="${CFLAGS}" - use hardened && CFLAGS="${CFLAGS} -nopie" - - CFLAGS="${CFLAGS}" \ - econf \ - --docdir="/usr/share/doc/${PF}" \ - $(use_enable adl) \ - $(use_enable avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $(use_with udev libudev) \ - $(use_with lm_sensors sensors) \ - $(use_enable x6500) \ - $(use_enable ztex) -} - -src_install() { - emake install DESTDIR="$D" - if ! use examples; then - rm -r "${D}/usr/share/doc/${PF}/rpc-examples" - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.1.4.ebuild b/net-misc/bfgminer/bfgminer-3.1.4.ebuild deleted file mode 100644 index 57b2bac42cc7..000000000000 --- a/net-misc/bfgminer/bfgminer-3.1.4.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.1.4.ebuild,v 1.2 2013/08/30 11:15:28 blueness Exp $ - -EAPI="4" - -inherit eutils - -DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C" -HOMEPAGE="https://bitcointalk.org/?topic=168174" -SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" - -IUSE="+adl avalon bitforce cpumining examples hardened icarus lm_sensors modminer ncurses +opencl scrypt +udev unicode x6500 ztex" -REQUIRED_USE=" - || ( avalon bitforce cpumining icarus modminer opencl x6500 ztex ) - adl? ( opencl ) - lm_sensors? ( opencl ) - scrypt? ( || ( cpumining opencl ) ) - unicode? ( ncurses ) -" - -DEPEND=" - net-misc/curl - ncurses? ( - sys-libs/ncurses[unicode?] - ) - >=dev-libs/jansson-2 - net-libs/libblkmaker - udev? ( - virtual/udev - ) - lm_sensors? ( - sys-apps/lm_sensors - ) - x6500? ( - virtual/libusb:1 - ) - ztex? ( - virtual/libusb:1 - ) -" -RDEPEND="${DEPEND} - opencl? ( - virtual/opencl - ) -" -DEPEND="${DEPEND} - virtual/pkgconfig - >=dev-libs/uthash-1.9.2 - sys-apps/sed - cpumining? ( - amd64? ( - >=dev-lang/yasm-1.0.1 - ) - x86? ( - >=dev-lang/yasm-1.0.1 - ) - ) -" - -src_configure() { - local CFLAGS="${CFLAGS}" - local with_curses - use hardened && CFLAGS="${CFLAGS} -nopie" - - if use ncurses; then - if use unicode; then - with_curses='--with-curses=ncursesw' - else - with_curses='--with-curses=ncurses' - fi - fi - - CFLAGS="${CFLAGS}" \ - econf \ - --docdir="/usr/share/doc/${PF}" \ - $(use_enable adl) \ - $(use_enable avalon) \ - $(use_enable bitforce) \ - $(use_enable cpumining) \ - $(use_enable icarus) \ - $(use_enable modminer) \ - $(use_with ncurses curses) \ - $(use_enable opencl) \ - $(use_enable scrypt) \ - --with-system-libblkmaker \ - $with_curses - $(use_with udev libudev) \ - $(use_with lm_sensors sensors) \ - $(use_enable x6500) \ - $(use_enable ztex) -} - -src_install() { - emake install DESTDIR="$D" - if ! use examples; then - rm -r "${D}/usr/share/doc/${PF}/rpc-examples" - fi -} diff --git a/net-misc/bfgminer/bfgminer-3.2.0.ebuild b/net-misc/bfgminer/bfgminer-3.2.1.ebuild index fb1d401d7ed6..9a779a4a402a 100644 --- a/net-misc/bfgminer/bfgminer-3.2.0.ebuild +++ b/net-misc/bfgminer/bfgminer-3.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.2.0.ebuild,v 1.1 2013/08/30 11:15:28 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.2.1.ebuild,v 1.1 2013/09/19 16:25:45 blueness Exp $ EAPI="4" |