diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2018-06-29 16:03:28 +0100 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2018-06-29 16:03:28 +0100 |
commit | 279b64fd0d85eeb61c10d89c7965b30ee760d27a (patch) | |
tree | c4ebfb62ebbc8402af52776d290425c8eb2e5d97 | |
parent | net-p2p/pesetacoin: Move to qt5 (diff) | |
download | portage-279b64fd0d85eeb61c10d89c7965b30ee760d27a.tar.xz |
net-p2p/dogecoin: Move to qt5
Package-Manager: Portage-2.3.40, Repoman-2.3.9
-rw-r--r-- | net-p2p/dogecoin/dogecoin-1.10.0.ebuild | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/net-p2p/dogecoin/dogecoin-1.10.0.ebuild b/net-p2p/dogecoin/dogecoin-1.10.0.ebuild index 69fb589b..d87ca5b3 100644 --- a/net-p2p/dogecoin/dogecoin-1.10.0.ebuild +++ b/net-p2p/dogecoin/dogecoin-1.10.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,18 +12,13 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -IUSE="+dbus libressl +qrcode +qt4 qt5 +upnp +utils +wallet" -REQUIRED_USE="?? ( qt4 qt5 )" +IUSE="+dbus libressl +qrcode +qt5 +upnp +utils +wallet" RDEPEND=" !libressl? ( dev-libs/openssl:0[-bindist] ) libressl? ( dev-libs/libressl ) >=dev-libs/boost-1.20.0[threads(+)] qrcode? ( media-gfx/qrencode ) - qt4? ( - dev-qt/qtgui:4 - dbus? ( dev-qt/qtdbus:4 ) - ) qt5? ( dev-qt/qtgui:5 dev-qt/qtnetwork:5 @@ -49,6 +44,7 @@ src_prepare () { src_configure() { local my_econf=( --with-daemon + --disable-hardening $(use_with utils) $(use_enable wallet) $(use_enable upnp miniupnpc) $(use_with upnp miniupnpc) @@ -57,8 +53,6 @@ src_configure() { if use qt5 ; then my_econf+=( --with-gui=qt5 ) - elif use qt4 ; then - my_econf+=( --with-gui=qt4 ) else my_econf+=( --with-gui=no ) fi |