mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 12:08:43 -04:00
bump contributed by RavFX on matrix, I've tested the changes, drops deprecated plugins. Signed-off-by: Joe Kappus <joe@wt.gd>
109 lines
3.0 KiB
Bash
109 lines
3.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# RavFX (2025) Bump version and remove deprecated plugins
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake desktop verify-sig xdg
|
|
|
|
DESCRIPTION="A free, open-source Monero wallet"
|
|
HOMEPAGE="https://featherwallet.org"
|
|
SRC_URI="
|
|
https://featherwallet.org/files/releases/source/${P}.tar.gz
|
|
verify-sig? ( https://featherwallet.org/files/releases/source/${P}.tar.gz.asc )
|
|
"
|
|
|
|
# Feather is released under the terms of the BSD license, but it vendors
|
|
# code from Monero and Tor too.
|
|
LICENSE="BSD MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="bounties calc crowdfunding home qrcode revuo tickers xmrig"
|
|
DEPEND="
|
|
dev-libs/libsodium:=
|
|
media-gfx/qrencode:=
|
|
media-gfx/zbar:=[v4l]
|
|
~dev-libs/polyseed-1.0.0
|
|
dev-libs/libzip:=
|
|
dev-libs/boost:=[nls]
|
|
>=dev-qt/qtbase-6.7.3:6
|
|
>=dev-qt/qtsvg-6.7.3:6
|
|
>=dev-qt/qtmultimedia-6.7.3:6
|
|
>=dev-qt/qtwebsockets-6.7.3:6
|
|
dev-libs/libgcrypt:=
|
|
sys-libs/zlib
|
|
dev-libs/openssl:=
|
|
net-dns/unbound:=[threads]
|
|
net-libs/czmq:=
|
|
qrcode? ( media-libs/zxing-cpp )
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
net-vpn/tor
|
|
xmrig? ( net-misc/xmrig )
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
verify-sig? ( sec-keys/openpgp-keys-featherwallet )
|
|
"
|
|
|
|
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/featherwallet.asc
|
|
|
|
src_prepare() {
|
|
default
|
|
echo "#define FEATHER_VERSION \"${PV}\"" > "${WORKDIR}"/${P}/src/config-feather.h || die
|
|
echo "#define TOR_VERSION \"NOT_EMBEDDED\"" >> "${WORKDIR}"/${P}/src/config-feather.h || die
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
-DBUILD_SHARED_LIBS=OFF
|
|
-DARCH=x86-64
|
|
-DBUILD_TAG="linux-x64"
|
|
-DBUILD_64=ON
|
|
-DSELF_CONTAINED=OFF
|
|
-DWITH_PLUGIN_HOME=$(usex home)
|
|
-DWITH_PLUGIN_TICKERS=$(usex tickers)
|
|
-DWITH_PLUGIN_CROWDFUNDING=$(usex crowdfunding)
|
|
-DWITH_PLUGIN_BOUNTIES=$(usex bounties)
|
|
-DWITH_PLUGIN_REVUO=$(usex revuo)
|
|
-DWITH_PLUGIN_CALC=$(usex calc)
|
|
-DWITH_PLUGIN_XMRIG=$(usex xmrig)
|
|
-DCHECK_UPDATES=OFF
|
|
-DPLATFORM_INSTALLER=OFF
|
|
-DUSE_DEVICE_TREZOR=OFF
|
|
-DDONATE_BEG=OFF
|
|
-DWITH_SCANNER=$(usex qrcode)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
cmake_build feather
|
|
}
|
|
|
|
src_install() {
|
|
dobin "${BUILD_DIR}/bin/feather"
|
|
|
|
newicon -s 256 "${WORKDIR}"/${P}/src/assets/images/appicons/256x256.png feather.png
|
|
newicon -s 128 "${WORKDIR}"/${P}/src/assets/images/appicons/128x128.png feather.png
|
|
newicon -s 96 "${WORKDIR}"/${P}/src/assets/images/appicons/96x96.png feather.png
|
|
newicon -s 64 "${WORKDIR}"/${P}/src/assets/images/appicons/64x64.png feather.png
|
|
newicon -s 48 "${WORKDIR}"/${P}/src/assets/images/appicons/48x48.png feather.png
|
|
newicon -s 32 "${WORKDIR}"/${P}/src/assets/images/appicons/32x32.png feather.png
|
|
domenu "${WORKDIR}"/${P}/src/assets/feather.desktop
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
|
|
einfo "Ensure that Tor is running with 'rc-service tor start' before"
|
|
einfo "using Feather."
|
|
einfo ""
|
|
einfo "Donation popup has been disabled in this build."
|
|
einfo "Consider donating to upstream developers here:"
|
|
einfo "https://docs.featherwallet.org/guides/donate"
|
|
}
|