Files
guru/sys-apps/qjournalctl/qjournalctl-0.6.2.ebuild
Andrew Ammerlaan 8abb858983 sys-apps/qjournalctl: properly name tarball
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
2021-03-28 12:46:26 +02:00

35 lines
648 B
Bash

# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils
DESCRIPTION="Qt-based GUI for systemd's journalctl command"
HOMEPAGE="https://github.com/pentix/qjournalctl"
SRC_URI="https://github.com/pentix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
#MY_P="${PN}-v${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DOCS=( "CHANGELOG.md" "README.md" )
DEPEND="dev-qt/qtcore
dev-qt/qtgui
dev-qt/qtwidgets
net-libs/libssh"
RDEPEND="${DEPEND}"
BDEPEND=""
src_prepare() {
default
eqmake5
}
src_install() {
emake INSTALL_ROOT="${D}" install
einstalldocs
}