diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-04-20 10:18:45 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-04-20 10:19:55 +0200 |
commit | 84e85eca2e949e137ff084ce0723b73fd058824a (patch) | |
tree | e7b5fa0068706b520adafc7e226e2e84a8648759 /dev-util/skipfish/skipfish-2.10_beta.ebuild | |
parent | dev-util/wsta: Remove last-rited pkg (diff) | |
download | gentoo-84e85eca2e949e137ff084ce0723b73fd058824a.tar.gz gentoo-84e85eca2e949e137ff084ce0723b73fd058824a.tar.bz2 gentoo-84e85eca2e949e137ff084ce0723b73fd058824a.zip |
dev-util/skipfish: Remove last-rited pkg
Closes: https://bugs.gentoo.org/675124
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util/skipfish/skipfish-2.10_beta.ebuild')
-rw-r--r-- | dev-util/skipfish/skipfish-2.10_beta.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/dev-util/skipfish/skipfish-2.10_beta.ebuild b/dev-util/skipfish/skipfish-2.10_beta.ebuild deleted file mode 100644 index 81bb804912a3..000000000000 --- a/dev-util/skipfish/skipfish-2.10_beta.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit toolchain-funcs vcs-snapshot versionator - -MY_COMMIT_HASH="093800c9de4116706258982376abce01928a3f7b" - -DESCRIPTION="A fully automated, active web application security reconnaissance tool" -HOMEPAGE="https://github.com/spinkham/skipfish" -SRC_URI="https://github.com/spinkham/${PN}/archive/${MY_COMMIT_HASH}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0 LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -RDEPEND="dev-libs/openssl:0 - dev-libs/libpcre - net-dns/libidn - sys-libs/zlib" -DEPEND="${RDEPEND}" - -src_prepare() { - sed -i \ - -e '/CFLAGS_GEN/s:-g -ggdb::' \ - -e '/CFLAGS_OPT/s:-O3::' \ - Makefile || die - - sed -i \ - -e "/ASSETS_DIR/s:assets:/usr/share/doc/${PF}/html:" \ - -e "/SIG_FILE/s:signatures/:/etc/skipfish/signatures/:" \ - src/config.h || die - - sed -i \ - -e "s:signatures/:/etc/skipfish/signatures/:g" \ - signatures/signatures.conf || die -} - -src_compile() { - tc-export CC - - local _debug - use debug && _debug=debug - - emake ${_debug} -} - -src_install() { - dobin ${PN} - doman doc/${PN}.1 - - insinto /etc/skipfish - doins -r signatures - - insinto /usr/share/${PN}/dictionaries - doins dictionaries/*.wl - - dohtml assets/* - - dodoc ChangeLog README doc/*.txt -} |