mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-17 19:13:13 -04:00
katarakt is a simple PDF viewer. It is designed to use as much available screen space as possible. There are currently two layouts. The presentation layout is very simple and only supports scrolling on a per page basis. As the name suggests the current page is displayed in the center and zoomed to fit the window. It is active by default. The grid layout is much more advanced and offers continuous (smooth, per pixel) scrolling, zooming and adjusting the column count. Pages keep their correct relative size and are shown in a grid. Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
42 lines
780 B
Bash
42 lines
780 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit qmake-utils
|
|
|
|
DESCRIPTION="Simple PDF viewer"
|
|
HOMEPAGE="https://gitlab.cs.fau.de/Qui_Sum/katarakt"
|
|
SRC_URI="https://gitlab.cs.fau.de/Qui_Sum/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
|
|
|
|
SLOT="0"
|
|
LICENSE="BSD-2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
BDEPEND="
|
|
app-text/asciidoc
|
|
virtual/pkgconfig"
|
|
RDEPEND="
|
|
app-text/poppler[qt5]
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtdbus:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtxml:5"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-install.patch" )
|
|
|
|
src_configure() {
|
|
eqmake5 PREFIX="${EPREFIX}/usr"
|
|
}
|
|
|
|
src_install() {
|
|
emake INSTALL_ROOT="${D}" install
|
|
emake doc
|
|
doman doc/katarakt.1
|
|
}
|