blob: cc575ef0d1d2babc6735d531869394c8f6c5c648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/webscarab/webscarab-20070504.ebuild,v 1.4 2007/11/02 16:03:29 mrness Exp $
DESCRIPTION="A framework for analysing applications that communicate using the HTTP and HTTPS protocols"
HOMEPAGE="http://www.owasp.org/software/webscarab.html"
SRC_URI="mirror://sourceforge/owasp/${PN}-selfcontained-${PV}-1631.jar"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
RDEPEND=">=virtual/jre-1.5"
src_unpack() {
: # Nothing to unpack
}
src_install() {
newbin "${FILESDIR}/${PN}.sh" "${PN}" || die "dobin failed"
insinto /usr/lib
newins "${DISTDIR}/${A}" "${PN}.jar" || die "failed to install jar archive"
}
|