Files
guru/app-text/katarakt/katarakt-0.2.ebuild
Kurt Kanzenbach 2cac09e709 app-text/katarakt: Katarakt is a simple PDF viewer (new package)
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>
2020-03-16 12:35:51 +01:00

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
}