mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
app-text/feathernotes: add 1.3.2
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST feathernotes-1.3.0.tar.gz 926547 BLAKE2B 5fe3475793a28a8e4c41c669c7fdde5785abdc4b93b14ca47bf531d5bf246c7ec064c3d5f756b184a45a39d5f02047cca90ad0c37c050c7a1ef363148705c592 SHA512 1036a4ed37e90cbf7e2e7839abcbe5d544a3e162839b05461ec0cea475a4cb3cce44941246e30f3aed6839e4fe9832392f33bfe87b19588d822ce19983dacc2e
|
||||
DIST feathernotes-1.3.1.tar.gz 954363 BLAKE2B 9d187ab0d902e50b3f2a4249b190b5f63f79dcf617a3325201506c01272e14489d2524b2d6fd478371c158d5714a82c327fce3ced1823fa5166fa8947baf3d9c SHA512 d632306f6700b67d4985eebb3d54ed2f813a70ebf9dfaba39dfc8635338ac5fcc1733c77b07cc2262259559dea8b4a510c35431675f67c8155a57cb78aca4159
|
||||
DIST feathernotes-1.3.2.tar.gz 955252 BLAKE2B 6c8ce61d554de64c3e06791c1646a6cf994b99359d9bb32645343cfc0ebebe46727ee71f943e03d45675a51be19092a3809b4830c570001eb3f877594ecf1fba SHA512 d8541a4a8c3b5c7fb2c2b516c1722f545cc4f521b9c1981e64e5bf194727286c8b6f9a34087fc4339f06902cbf12a8a2a9a9e8e07984164cbbcd2b6573a22514
|
||||
|
||||
35
app-text/feathernotes/feathernotes-1.3.2.ebuild
Normal file
35
app-text/feathernotes/feathernotes-1.3.2.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 2024-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="Lightweight Qt Notes-Manager for Linux"
|
||||
HOMEPAGE="https://github.com/tsujan/FeatherNotes"
|
||||
SRC_URI="https://github.com/tsujan/FeatherNotes/archive/V${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/FeatherNotes-${PV}"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="spell X"
|
||||
|
||||
RDEPEND="
|
||||
dev-qt/qtbase:6[dbus,gui,network,widgets,xml,X?]
|
||||
dev-qt/qtsvg:6
|
||||
spell? ( app-text/hunspell:= )
|
||||
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)
|
||||
-DWITH_HUNSPELL=$(usex spell)
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user