commit: d8c0ed452886ae274c3e2a8462059fc29ee8922f
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 13 19:23:10 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed Jul 13 19:23:10 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8c0ed45
net-analyzer/nessus-client: add libressl support and bump to EAPI=5
Package-Manager: portage-2.2.28
.../nessus-client/nessus-client-1.0.2-r2.ebuild | 58 ++++++++++++++++++++++
1 file changed, 58 insertions(+)
diff --git a/net-analyzer/nessus-client/nessus-client-1.0.2-r2.ebuild
b/net-analyzer/nessus-client/nessus-client-1.0.2-r2.ebuild
new file mode 100644
index 0000000..c9d6315
--- /dev/null
+++ b/net-analyzer/nessus-client/nessus-client-1.0.2-r2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils toolchain-funcs
+
+MY_PN=NessusClient
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="A client for the Nessus vulnerability scanner"
+HOMEPAGE="http://www.nessus.org/"
+SRC_URI="mirror://gentoo/${MY_P}.tar.gz
+ mirror://gentoo/nessus-client.png.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl doc"
+
+RDEPEND="!net-analyzer/nessus-core
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ >=x11-libs/gtk+-2.8.8:2"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-text/htmldoc )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+ epatch "${FILESDIR}"/${P}-make.patch
+ sed -i \
+ -e "/NESSUS_DOCDIR/s|/doc/NessusClient|/doc/${PF}|g" \
+ nessus.tmpl.in || die
+}
+
+src_configure() {
+ tc-export CC
+ econf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc CHANGES README_SSL VERSION
+
+ doicon "${WORKDIR}"/${PN}.png
+ make_desktop_entry NessusClient "Nessus Client" nessus-client "Network"
+}
+
+pkg_postinst() {
+ if ! use doc; then
+ elog "If you do not have documentation installed, nessus-client"
+ elog "will complain. To install documentation, please emerge
with"
+ elog "the doc useflag set. Beware that it will emerge
app-text/htmldoc,"
+ elog "a big package."
+ fi
+}