app-editors/featherpad: add 1.6.3

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin
2026-01-02 15:28:28 +02:00
parent f51733583d
commit fa48f0d604
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST featherpad-1.6.2.tar.gz 1103291 BLAKE2B 3cc50397b8fc01222ecb2c3cfa7bc994e69fb488a7def588a6e72e7fe42148cf9ac56bdd5d0ade38f6a47c450af81ce6ae9983caf66cc1c47363bc4052873765 SHA512 c6020ad9a6af6ba1e5bbbf5cb72b92737ad77ace4e351c90a63bc7f68ee00fb23f92f4c6d0ed4b963a48e014f02719e956b7e4dfd142a7122c6998ae19d9e598
DIST featherpad-1.6.3.tar.gz 1317394 BLAKE2B 7e91b0369eaaf05c24f5900007f251c8c4dccaace8e34f3b056d20a41c5c1284bb59fac7ee5be95ac37de2136913799318a5034b60a11414231b2238e455272a SHA512 4a6e44539f5ad78ca285b1c54a4cd561996ff985d0d51990742572b552cfb1e0c52735ba700b94caf849f1ce33116e7f53e004260f34dbf8ab1b3e28221ae2f5

View File

@@ -0,0 +1,34 @@
# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg
DESCRIPTION="Lightweight Qt5 Plain-Text Editor for Linux"
HOMEPAGE="https://github.com/tsujan/FeatherPad"
SRC_URI="https://github.com/tsujan/FeatherPad/archive/V${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/FeatherPad-${PV}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
IUSE="+X"
RDEPEND="
app-text/hunspell:=
dev-qt/qtbase:6[dbus,gui,widgets]
dev-qt/qtsvg:6
X? ( x11-libs/libX11 )
"
DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
"
BDEPEND="dev-qt/qttools:6[linguist]"
src_configure() {
local mycmakeargs=(
-DWITHOUT_X11=$(usex !X)
)
cmake_src_configure
}