mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-30 18:51:17 +02:00
app-forensics/scap-workbench: bump to 1.2.1
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Yury Martynov <email@linxon.ru>
This commit is contained in:
parent
f04e93fb04
commit
d45d8ee385
2 changed files with 57 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST scap-workbench-1.2.0.tar.gz 1881051 BLAKE2B d00f58943262a8489ed7595315c44bbc1e3d293640e63f1377e13658b86524d94789f0596b66221ce9cc314bcdd9fa19f1ac4bad4547de816373446c0c988975 SHA512 c766b3a93721a2abc52cd47f44f9ed4b1ad02c733ef89dfb3f368f0f3e016c39b188f6ba29e06f1d3ca3b1b6cdc17e057a80198b105e94c60e484acafd7e1373
|
||||
DIST scap-workbench-1.2.1.tar.gz 1893684 BLAKE2B 9cc2f14ae546c6d4fc4d643bd8770c5dfecc400a15460d88afe8e71512bab0da122837c4bdb2798e2fcc6882aa069aaf51e68bec2f19225d1f6e7256132072c3 SHA512 37dad3d3310a9ba200756480eee2c93913617a77e9983c18dafdc3320fc62774d23b327200fa21f63cec160ef8d6527ac43c11e7d0cdce49b3a364590311fbad
|
||||
|
|
|
|||
56
app-forensics/scap-workbench/scap-workbench-1.2.1.ebuild
Normal file
56
app-forensics/scap-workbench/scap-workbench-1.2.1.ebuild
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake gnome2-utils xdg-utils
|
||||
|
||||
DESCRIPTION="SCAP Scanner And Tailoring Graphical User Interface"
|
||||
HOMEPAGE="http://www.open-scap.org https://github.com/OpenSCAP/scap-workbench"
|
||||
SRC_URI="https://github.com/OpenSCAP/scap-workbench/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="policykit"
|
||||
|
||||
BDEPEND="
|
||||
app-text/asciidoc
|
||||
virtual/pkgconfig"
|
||||
RDEPEND="
|
||||
<=app-forensics/openscap-1.3.1
|
||||
app-forensics/scap-security-guide
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5[png]
|
||||
dev-qt/qtxml:5
|
||||
dev-qt/qtxmlpatterns:5
|
||||
dev-libs/libxslt
|
||||
policykit? ( sys-auth/polkit )
|
||||
virtual/ssh
|
||||
x11-libs/libxcb"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e "/set(CMAKE_CXX_FLAGS/s|-Werror||g" CMakeLists.txt || die
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=( -DCMAKE_INSTALL_DOCDIR="/usr/share/doc/${P}" )
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
Loading…
Reference in a new issue