diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-01-02 14:40:54 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-01-02 14:40:54 +0000 |
commit | 26e0b2765e981fc07e0de22e2e04b9509b8ad3f3 (patch) | |
tree | 4160ecb0a9bcfaf0b84dbd7724f1e0f4cb31998d /net-dns | |
parent | amd64/ppc/x86 stable wrt bug #526836 (diff) | |
download | gentoo-2-26e0b2765e981fc07e0de22e2e04b9509b8ad3f3.tar.gz gentoo-2-26e0b2765e981fc07e0de22e2e04b9509b8ad3f3.tar.bz2 gentoo-2-26e0b2765e981fc07e0de22e2e04b9509b8ad3f3.zip |
Version bump, bug #534204
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/namecoin-qt/ChangeLog | 11 | ||||
-rw-r--r-- | net-dns/namecoin-qt/namecoin-qt-0.3.80.ebuild | 134 |
2 files changed, 142 insertions, 3 deletions
diff --git a/net-dns/namecoin-qt/ChangeLog b/net-dns/namecoin-qt/ChangeLog index b0b3a70e09fb..577627f1093f 100644 --- a/net-dns/namecoin-qt/ChangeLog +++ b/net-dns/namecoin-qt/ChangeLog @@ -1,10 +1,15 @@ # ChangeLog for net-dns/namecoin-qt -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/namecoin-qt/ChangeLog,v 1.1 2013/12/01 15:24:30 blueness Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/namecoin-qt/ChangeLog,v 1.2 2015/01/02 14:40:54 blueness Exp $ + +*namecoin-qt-0.3.80 (02 Jan 2015) + + 02 Jan 2015; Anthony G. Basile <blueness@gentoo.org> + +namecoin-qt-0.3.80.ebuild: + Version bump, bug #534204 *namecoin-qt-0.3.72 (01 Dec 2013) 01 Dec 2013; Anthony G. Basile <blueness@gentoo.org> +namecoin-qt-0.3.72.ebuild, +metadata.xml: Initial commit - diff --git a/net-dns/namecoin-qt/namecoin-qt-0.3.80.ebuild b/net-dns/namecoin-qt/namecoin-qt-0.3.80.ebuild new file mode 100644 index 000000000000..10d664eed862 --- /dev/null +++ b/net-dns/namecoin-qt/namecoin-qt-0.3.80.ebuild @@ -0,0 +1,134 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/namecoin-qt/namecoin-qt-0.3.80.ebuild,v 1.1 2015/01/02 14:40:54 blueness Exp $ + +EAPI=5 + +DB_VER="4.8" + +LANGS="af_ZA ar bg ca_ES cs da de el_GR en es_CL es et eu_ES fa_IR fa fi fr_CA fr gu_IN he hi_IN hr hu it ja lt nb nl pl pt_BR pt_PT ro_RO ru sk sr sv th_TH tr uk zh_CN zh_TW" + +inherit db-use eutils fdo-mime gnome2-utils kde4-functions qt4-r2 git-r3 + +DESCRIPTION="A P2P network based domain name system" +HOMEPAGE="https://dot-bit.org/" +#SRC_URI="https://github.com/namecoinq/namecoinq/archive/v${PV/0/Q}.tar.gz -> ${P}.tar.gz" +# Try to use github +SRC_URI="" +EGIT_REPO_URI="https://github.com/namecoin/namecoin.git" +EGIT_BRANCH="namecoinq-release" +EGIT_COMMIT="nc${PV}" + +LICENSE="MIT ISC cryptopp GPL-3 LGPL-2.1 public-domain || ( CC-BY-SA-3.0 LGPL-2.1 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +#upnp is broken +#IUSE="dbus ipv6 upnp" +IUSE="dbus ipv6" + +RDEPEND=" + dev-libs/boost[threads(+)] + dev-libs/crypto++ + dev-libs/openssl:0[-bindist] + sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx] + dev-qt/qtgui:4 + dbus? ( + dev-qt/qtdbus:4 + ) +" +# Add this when upnp is fixed +# upnp? ( net-libs/miniupnpc) + +DEPEND="${RDEPEND} + >=app-shells/bash-4.1 +" + +S="${WORKDIR}/${PN}-${PV}" + +src_prepare() { + cd src || die + + 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\|ts\)" + sed "/${filt}/d" -i 'qt/bitcoin.qrc' + einfo "Languages -- Enabled:$yeslang -- Disabled:$nolang" +} + +src_configure() { + OPTS=() + + use dbus && OPTS+=("USE_DBUS=1") + +#Upnp is broken +# if use upnp; then +# OPTS+=("USE_UPNP=1") +# else +# OPTS+=("USE_UPNP=-") +# fi + + OPTS+=("USE_UPNP=-") + + use ipv6 || OPTS+=("USE_IPV6=-") + + OPTS+=("USE_SYSTEM_LEVELDB=1") + OPTS+=("BDB_INCLUDE_PATH=$(db_includedir "${DB_VER}")") + OPTS+=("BDB_LIB_SUFFIX=-${DB_VER}") + + if has_version '>=dev-libs/boost-1.52'; then + OPTS+=("LIBS+=-lboost_chrono\$\$BOOST_LIB_SUFFIX") + fi + + eqmake4 namecoin-qt.pro "${OPTS[@]}" +} + +#Tests are broken +#src_test() { +# cd src || die +# emake -f makefile.unix "${OPTS[@]}" test_namecoin +# ./test_namecoin || die 'Tests failed' +#} + +src_install() { + qt4-r2_src_install + + dobin ${PN} + + insinto /usr/share/pixmaps + newins "src/qt/res/icons/bitcoin.ico" "${PN}.ico" + + make_desktop_entry "${PN} %u" "Namecoin-Qt" "/usr/share/pixmaps/${PN}.ico" "Qt;Network;P2P;DNS;" "MimeType=x-scheme-handler/namecoin;\nTerminal=false" +} + +update_caches() { + gnome2_icon_cache_update + fdo-mime_desktop_database_update + buildsycoca +} + +pkg_postinst() { + update_caches +} + +pkg_postrm() { + update_caches +} |