blob: 96ec7ff1002dc5990113b8566f93b0c064e69158 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/webscarab/webscarab-20050519.ebuild,v 1.1 2005/06/04 15:53:15 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}-1824.jar"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=virtual/jre-1.4"
src_unpack() {
einfo "Nothing to unpack"
}
src_install() {
newbin ${FILESDIR}/${PN}.sh ${PN}
insinto /usr/lib
newins ${DISTDIR}/${A} ${PN}.jar
}
|