mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-21 21:13:27 -04:00
net-p2p/dogecoin-qt: add 1.14.7
- adding unkeyworded 1.14.7 while its on 'dev' branch Signed-off-by: Victor Skovorodnikov <victor3.14@yandex.com>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST dogecoin-qt-v1.14.6.tar.gz 8162072 BLAKE2B e2d1abe7b60cc2f15998834ec1f23570ad3d471d80e9d05b8e5aa64d6e46b7196d7a13d134e6721fe57b6afd34811bd486de02c00b54ee8516313b81ae6821c2 SHA512 05f1142a22f36a04e65ef91c834b3e724280e29b930617bb66fac98777bb541ddca15771db4205f0cdc14389f3eb4e94fda550f7806b3e9863d909c063f38610
|
||||
DIST dogecoin-qt-v1.14.7.zip 12281952 BLAKE2B 501759b37256501495803af57fb458ba867b71d466108f12cb6287161e7818f428c4904c1d34c005ba3fe7a50512c461a5dfab1cd483e543d7ea56f3b79e86fe SHA512 ab848f4a19ca6c8ecc840a83592bea6e7bbdeccf2916c2f5bceb3e0a6ead0666610429a5fa6660d2950284115e4502088c72c6dfc7bf9f322506046b677402d8
|
||||
|
||||
137
net-p2p/dogecoin-qt/dogecoin-qt-1.14.7.ebuild
Normal file
137
net-p2p/dogecoin-qt/dogecoin-qt-1.14.7.ebuild
Normal file
@@ -0,0 +1,137 @@
|
||||
# Copyright 2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
WANT_AUTOCONF="2.5"
|
||||
inherit autotools desktop xdg-utils flag-o-matic
|
||||
DESCRIPTION="Dogecoin Core Qt for desktop. Downloaded blockchain is under 2.2GB. Much secure."
|
||||
HOMEPAGE="https://github.com/dogecoin"
|
||||
SRC_URI="https://github.com/dogecoin/dogecoin/archive/refs/heads/1.14.7-dev.zip -> ${PN}-v${PV}.zip"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
DB_VER="5.3"
|
||||
IUSE="cpu_flags_x86_avx2 cpu_flags_x86_sse2 intel-avx2 dogecoind experimental +pie +prune scrypt-sse2 +ssp tests utils +wallet zmq"
|
||||
REQUIRED_USE="dogecoind? ( utils ) intel-avx2? ( experimental ) scrypt-sse2? ( experimental ) experimental? ( || ( intel-avx2 scrypt-sse2 ) )"
|
||||
DOGEDIR="/opt/${PN}"
|
||||
DEPEND="
|
||||
sys-libs/db:"${DB_VER}"=[cxx]
|
||||
dev-libs/libevent:=
|
||||
dev-libs/protobuf
|
||||
dev-libs/openssl
|
||||
dev-build/libtool
|
||||
dev-build/automake:=
|
||||
dev-qt/qtcore
|
||||
dev-qt/qtgui
|
||||
dev-qt/qtwidgets
|
||||
dev-qt/qtdbus
|
||||
dev-qt/qtnetwork
|
||||
dev-qt/qtprintsupport
|
||||
dev-qt/linguist-tools:=
|
||||
>=dev-libs/boost-1.84.0-r3
|
||||
wallet? ( media-gfx/qrencode )
|
||||
zmq? ( net-libs/cppzmq )
|
||||
intel-avx2? ( =app-crypt/intel-ipsec-mb-1.3 )
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
dev-build/autoconf
|
||||
dev-build/automake
|
||||
"
|
||||
|
||||
WORKDIR_="${WORKDIR}/dogecoin-${PV}-dev"
|
||||
S=${WORKDIR_}
|
||||
|
||||
pkg_pretend() {
|
||||
|
||||
if use intel-avx2 && [[ ! -e "${ROOT}"/etc/portage/patches/app-crypt/intel-ipsec-mb/remove_digest_init.patch ]]; then
|
||||
eerror "${ROOT}/etc/portage/patches/app-crypt/intel-ipsec-mb/remove_digest_init.patch does not exist!"
|
||||
eerror "To build with avx2 intel support, please create ${ROOT}/etc/portage/patches/app-crypt/intel-ipsec-mb directory"
|
||||
eerror "and copy patch from package net-p2p/dogecoin-qt/files/intel-ipsec-mb/remove_digest_init.patch into that directory"
|
||||
die
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
|
||||
if use pie && use ssp ; then
|
||||
PATCHES+=( "${FILESDIR}"/hardened-all.patch )
|
||||
elif use pie && ! use ssp ; then
|
||||
PATCHES+=( "${FILESDIR}"/hardened-no-ssp.patch )
|
||||
elif use ssp && ! use pie ; then
|
||||
PATCHES+=( "${FILESDIR}"/hardened-no-pie.patch )
|
||||
else
|
||||
PATCHES+=( "${FILESDIR}"/hardened-minimal.patch )
|
||||
fi
|
||||
|
||||
default
|
||||
|
||||
einfo "Generating autotools files..."
|
||||
eaclocal -I "${WORKDIR_}"
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local my_econf=(
|
||||
--bindir="${DOGEDIR}/bin"
|
||||
--with-gui=qt5
|
||||
--disable-bench
|
||||
$(use_with intel-avx2 intel-avx2)
|
||||
$(use_with dogecoind daemon)
|
||||
$(use_with utils utils)
|
||||
$(use_enable wallet)
|
||||
$(use_enable zmq)
|
||||
$(use_enable tests tests)
|
||||
$(use_enable scrypt-sse2 scrypt-sse2)
|
||||
$(use_enable experimental experimental)
|
||||
)
|
||||
|
||||
append-cxxflags "-std=c++14"
|
||||
econf "${my_econf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
insinto "${DOGEDIR}/bin"
|
||||
insinto /usr/share/pixmaps
|
||||
doins src/qt/res/icons/dogecoin.png
|
||||
dosym "${DOGEDIR}/bin/${PN}" "/usr/bin/${PN}"
|
||||
|
||||
if use dogecoind ; then
|
||||
dosym "${DOGEDIR}/bin/dogecoind" "/usr/bin/dogecoind"
|
||||
dosym "${DOGEDIR}/bin/dogecoin-cli" "/usr/bin/dogecoin-cli"
|
||||
fi
|
||||
|
||||
if use prune ; then
|
||||
domenu "${FILESDIR}"/"${PN}-prune.desktop"
|
||||
else
|
||||
domenu "${FILESDIR}"/"${PN}.desktop"
|
||||
fi
|
||||
|
||||
find "${ED}" -type f -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
xdg_mimeinfo_database_update
|
||||
elog "Dogecoin Core Qt ${PV} has been installed."
|
||||
elog "Dogecoin Core Qt binaries have been placed in ${DOGEDIR}/bin."
|
||||
elog "${PN} has been symlinked with /usr/bin/${PN}."
|
||||
|
||||
if use dogecoind ; then
|
||||
elog "dogecoin daemon has been symlinked with /usr/bin/dogecoind."
|
||||
elog "dogecoin client utils have been symlinked with /usr/bin/dogecoin-cli."
|
||||
fi
|
||||
|
||||
if ( ( use cpu_flags_x86_avx2 && ! use intel-avx2 ) && ( use cpu_flags_x86_sse2 && ! use scrypt-sse2 ) ); then
|
||||
einfo "NOTE: If you wish to activate experimental avx2 or sse2 CPU support,"
|
||||
einfo "you may do so with 'intel-avx2' and/or 'scrypt-sse2' USE flags, and"
|
||||
einfo "with 'experimental' USE flag enabled for version ${PV}."
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
xdg_mimeinfo_database_update
|
||||
}
|
||||
@@ -13,8 +13,11 @@
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="dogecoind">Build with dogecoind daemon</flag>
|
||||
<flag name="experimental">Allow experimental features to be configured</flag>
|
||||
<flag name="intel-avx2">Build with intel avx2</flag>
|
||||
<flag name="pie">Position Independent Executables - attempt to harden resulting executables, for extra security</flag>
|
||||
<flag name="prune">Enables automatic pruning of old blocks to stay below 2.2GB target size (if ran from desktop)</flag>
|
||||
<flag name="scrypt-sse2">Build with scrypt sse2 implementation</flag>
|
||||
<flag name="ssp">Apply stack protector to all functions, for extra security</flag>
|
||||
<flag name="tests">Build Dogecoin Core Qt with tests option</flag>
|
||||
<flag name="utils">Build with client utilities dogecoin-cli and dogecoin-tx</flag>
|
||||
|
||||
Reference in New Issue
Block a user