blob: d5ffd575ab51ccda05f6374fff3e93e1662c0672 (
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
25
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/paros/paros-3.2.0.ebuild,v 1.1 2005/04/22 19:15:11 mrness Exp $
DESCRIPTION="HTTP/HTTPS proxy for evaluate security of web applications"
HOMEPAGE="http://www.parosproxy.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}-unix.zip"
LICENSE="Clarified-Artistic"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=virtual/jre-1.4"
S=${WORKDIR}/${PN}
src_install() {
sed -i -e '1i#!/bin/sh' -e '1icd /opt/paros' startserver.sh
exeinto /usr/sbin
newbin startserver.sh paros
rm startserver.*
dodir /opt && cp -a ${S} ${D}/opt || die "failed to copy files"
}
|