diff options
author | Marek Szuba <marecki@gentoo.org> | 2018-11-22 10:13:28 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2018-11-22 10:23:04 +0000 |
commit | 740faf22dd238fa89bcdfbb8978a12bd9f25b859 (patch) | |
tree | 229fd939e6a430c2dc6a312810adb7b2bade5a36 /net-analyzer/nessus-bin/nessus-bin-8.0.1.ebuild | |
parent | net-analyzer/nessus-bin: add self as primary maintainer (diff) | |
download | gentoo-740faf22dd238fa89bcdfbb8978a12bd9f25b859.tar.gz gentoo-740faf22dd238fa89bcdfbb8978a12bd9f25b859.tar.bz2 gentoo-740faf22dd238fa89bcdfbb8978a12bd9f25b859.zip |
net-analyzer/nessus-bin: bump to 8.0.1 and EAPI 7
Also, confirmed this version automatically creates the directory for its
user data so it is possible to trivially avoid Bug #645740.
Closes: https://bugs.gentoo.org/635476
Closes: https://bugs.gentoo.org/645740
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'net-analyzer/nessus-bin/nessus-bin-8.0.1.ebuild')
-rw-r--r-- | net-analyzer/nessus-bin/nessus-bin-8.0.1.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/net-analyzer/nessus-bin/nessus-bin-8.0.1.ebuild b/net-analyzer/nessus-bin/nessus-bin-8.0.1.ebuild new file mode 100644 index 000000000000..ed738ccba2e2 --- /dev/null +++ b/net-analyzer/nessus-bin/nessus-bin-8.0.1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit rpm pax-utils systemd + +MY_P="Nessus-${PV}-es7" + +DESCRIPTION="A remote security scanner for Linux" +HOMEPAGE="https://www.tenable.com/" +SRC_URI="${MY_P}.x86_64.rpm" + +LICENSE="GPL-2 Nessus-EULA" +SLOT="0" +KEYWORDS="~amd64" + +RESTRICT="mirror fetch strip" + +QA_PREBUILT="opt/nessus/bin/nasl + opt/nessus/bin/ndbg + opt/nessus/bin/nessus-mkrand + opt/nessus/lib/nessus/libjemalloc.so.${PV} + opt/nessus/lib/nessus/libnessus-glibc-fix.so + opt/nessus/sbin/nessus-service + opt/nessus/sbin/nessuscli + opt/nessus/sbin/nessusd" + +S="${WORKDIR}" + +pkg_nofetch() { + einfo "Please download ${A} from ${HOMEPAGE}/downloads/nessus" + einfo "The archive should then be placed into ${DISTDIR}." +} + +src_install() { + # Using doins -r would strip executable bits from all binaries + cp -pPR "${S}"/opt "${D}"/ || die "Failed to copy files" + + pax-mark m "${D}"/opt/nessus/sbin/nessusd + + # Make sure these originally empty directories do not vanish, + # Nessus will not run properly without them + keepdir /opt/nessus/com/nessus/CA + keepdir /opt/nessus/etc/nessus + keepdir /opt/nessus/var/nessus/logs + keepdir /opt/nessus/var/nessus/tmp + + newinitd "${FILESDIR}"/nessusd-initd nessusd-bin + systemd_newunit usr/lib/systemd/system/nessusd.service nessusd-bin.service +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "To get started launch the nessusd-bin service, then point your Web browser to" + elog " https://<yourhost>:8834/" + else + elog "You may want to restart the nessusd-bin service to use" + elog "the new version of Nessus." + fi +} |