mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
Done via: ``` git grep -l virtual/zlib$ | xargs sed -i -e 's@virtual/zlib$@&:=@' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
31 lines
645 B
Bash
31 lines
645 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake xdg
|
|
|
|
DESCRIPTION="Fullscreen and distraction-free word processor"
|
|
HOMEPAGE="https://gottcode.org/focuswriter/
|
|
https://github.com/gottcode/focuswriter"
|
|
SRC_URI="https://gottcode.org/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-3+ LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 ~riscv x86"
|
|
|
|
BDEPEND="
|
|
dev-qt/qttools:6[linguist]
|
|
virtual/pkgconfig
|
|
"
|
|
RDEPEND="
|
|
app-text/hunspell:=
|
|
dev-qt/qtbase:6[concurrent,gui,widgets]
|
|
dev-qt/qtmultimedia:6
|
|
virtual/zlib:=
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.8.10-qt-6.9.patch
|
|
)
|