mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-03 14:25:30 +01:00
31 lines
801 B
Bash
31 lines
801 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /root/portage/net-proxy/burpproxy/burpproxy-1.3_beta.ebuild,v 1.1.1.1 2006/02/27 20:03:41 grimmlin Exp $
|
|
|
|
MY_P="${PN}_v${PV}"
|
|
|
|
DESCRIPTION="an interactive HTTP/S proxy server for attacking and debugging web-enabled applications"
|
|
HOMEPAGE="http://portswigger.net/suite/download.html"
|
|
SRC_URI="http://portswigger.net/suite/${MY_P}.zip"
|
|
|
|
LICENSE="PROPRIETARY"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="virtual/jre"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_compile() {
|
|
einfo "Nothing to compile"
|
|
}
|
|
|
|
src_install() {
|
|
mkdir -p "${D}"/opt/${PN}
|
|
cp -a ${MY_P}.jar "${D}"/opt/${PN}
|
|
dodoc *.txt
|
|
echo -e "#!/bin/sh \njava -jar -Xmx256m /opt/${PN}/${MY_P}.jar\n" > ${PN}
|
|
dosbin ${PN}
|
|
}
|