diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-01-04 02:42:24 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-01-04 02:42:24 +0000 |
commit | a7f70cbab72a8e481e52a310528985eee3f95391 (patch) | |
tree | 13ba0b7a3292b212da1106592301b5d4b266cb17 /net-p2p/bitcoin-qt | |
parent | Version bump. (diff) | |
download | gentoo-2-a7f70cbab72a8e481e52a310528985eee3f95391.tar.gz gentoo-2-a7f70cbab72a8e481e52a310528985eee3f95391.tar.bz2 gentoo-2-a7f70cbab72a8e481e52a310528985eee3f95391.zip |
Version bump
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'net-p2p/bitcoin-qt')
-rw-r--r-- | net-p2p/bitcoin-qt/ChangeLog | 9 | ||||
-rw-r--r-- | net-p2p/bitcoin-qt/bitcoin-qt-0.7.2.ebuild | 122 |
2 files changed, 129 insertions, 2 deletions
diff --git a/net-p2p/bitcoin-qt/ChangeLog b/net-p2p/bitcoin-qt/ChangeLog index b339e615e619..afb1c60bb2d5 100644 --- a/net-p2p/bitcoin-qt/ChangeLog +++ b/net-p2p/bitcoin-qt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/bitcoin-qt -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/ChangeLog,v 1.48 2012/12/14 15:41:43 mgorny Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/ChangeLog,v 1.49 2013/01/04 02:42:24 blueness Exp $ + +*bitcoin-qt-0.7.2 (04 Jan 2013) + + 04 Jan 2013; Anthony G. Basile <blueness@gentoo.org> +bitcoin-qt-0.7.2.ebuild: + Version bump 14 Dec 2012; Michał Górny <mgorny@gentoo.org> metadata.xml: Remove redundant USE=upnp description; it matches the global flag meaning. diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-0.7.2.ebuild b/net-p2p/bitcoin-qt/bitcoin-qt-0.7.2.ebuild new file mode 100644 index 000000000000..4119c188222f --- /dev/null +++ b/net-p2p/bitcoin-qt/bitcoin-qt-0.7.2.ebuild @@ -0,0 +1,122 @@ +# Copyright 2010-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/bitcoin-qt-0.7.2.ebuild,v 1.1 2013/01/04 02:42:24 blueness Exp $ + +EAPI=4 + +DB_VER="4.8" + +LANGS="bg ca_ES cs da de el_GR en es es_CL et eu_ES fa fa_IR fi fr fr_CA he hr hu it lt nb nl pl pt_BR pt_PT ro_RO ru sk sr sv tr uk zh_CN zh_TW" +inherit db-use eutils qt4-r2 versionator + +DESCRIPTION="An end-user Qt4 GUI for the Bitcoin crypto-currency" +HOMEPAGE="http://bitcoin.org/" +SRC_URI="http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v${PV/_/} -> bitcoin-v${PV}.tgz + 1stclassmsg? ( http://luke.dashjr.org/programs/bitcoin/files/bitcoind/luke-jr/1stclassmsg/0.7.1-1stclassmsg.patch.xz ) + eligius? ( http://luke.dashjr.org/programs/bitcoin/files/bitcoind/eligius/sendfee/0.7.1-eligius_sendfee.patch.xz ) +" + +LICENSE="MIT ISC GPL-3 LGPL-2.1 public-domain || ( CCPL-Attribution-ShareAlike-3.0 LGPL-2.1 )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="$IUSE 1stclassmsg dbus +eligius ipv6 +qrcode upnp" + +RDEPEND=" + >=dev-libs/boost-1.41.0 + dev-libs/openssl[-bindist] + qrcode? ( + media-gfx/qrencode + ) + upnp? ( + net-libs/miniupnpc + ) + sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx] + x11-libs/qt-gui:4 + dbus? ( + x11-libs/qt-dbus:4 + ) +" +DEPEND="${RDEPEND} + >=app-shells/bash-4.1 +" + +DOCS="doc/README" + +S="${WORKDIR}/bitcoin-bitcoind-stable" + +src_prepare() { + use 1stclassmsg && epatch "${WORKDIR}/0.7.1-1stclassmsg.patch" + cd src || die + use eligius && epatch "${WORKDIR}/0.7.1-eligius_sendfee.patch" + + local filt= yeslang= nolang= + + for lan in $LANGS; do + if [ ! -e qt/locale/bitcoin_$lan.ts ]; then + ewarn "Language '$lan' no longer supported. Ebuild needs update." + fi + done + + for ts in $(ls qt/locale/*.ts) + do + x="${ts/*bitcoin_/}" + x="${x/.ts/}" + if ! use "linguas_$x"; then + nolang="$nolang $x" + rm "$ts" + filt="$filt\\|$x" + else + yeslang="$yeslang $x" + fi + done + filt="bitcoin_\\(${filt:2}\\)\\.qm" + sed "/${filt}/d" -i 'qt/bitcoin.qrc' + einfo "Languages -- Enabled:$yeslang -- Disabled:$nolang" +} + +src_configure() { + OPTS=() + local BOOST_PKG BOOST_VER + + use dbus && OPTS+=("USE_DBUS=1") + if use upnp; then + OPTS+=("USE_UPNP=1") + else + OPTS+=("USE_UPNP=-") + fi + use qrcode && OPTS+=("USE_QRCODE=1") + use 1stclassmsg && OPTS+=("FIRST_CLASS_MESSAGING=1") + use ipv6 || OPTS+=("USE_IPV6=-") + + OPTS+=("BDB_INCLUDE_PATH=$(db_includedir "${DB_VER}")") + OPTS+=("BDB_LIB_SUFFIX=-${DB_VER}") + + BOOST_PKG="$(best_version 'dev-libs/boost')" + BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")" + BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")" + OPTS+=("BOOST_INCLUDE_PATH=/usr/include/boost-${BOOST_VER}") + OPTS+=("BOOST_LIB_SUFFIX=-${BOOST_VER}") + + eqmake4 "${PN}.pro" "${OPTS[@]}" +} + +src_compile() { + # Workaround for bug #440034 + share/genbuild.sh build/build.h + + emake +} + +src_test() { + cd src || die + emake -f makefile.unix "${OPTS[@]}" test_bitcoin + ./test_bitcoin || die 'Tests failed' +} + +src_install() { + qt4-r2_src_install + dobin ${PN} + insinto /usr/share/pixmaps + newins "share/pixmaps/bitcoin.ico" "${PN}.ico" + make_desktop_entry ${PN} "Bitcoin-Qt" "/usr/share/pixmaps/${PN}.ico" "Network;P2P" +} |