blob: e669e8af44e3afd484d710243f84d3a3afa3dfc8 (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/paros/paros-3.2.9.ebuild,v 1.2 2006/03/06 20:45:03 mrness Exp $
inherit eutils
DESCRIPTION="HTTP/HTTPS proxy for evaluate security of web applications"
HOMEPAGE="http://www.parosproxy.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
LICENSE="Clarified-Artistic"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND="app-arch/unzip
>=virtual/jdk-1.4.2
dev-java/ant"
RDEPEND=">=virtual/jre-1.4.2"
S="${WORKDIR}/${PN}"
src_compile() {
cd "${S}/build"
ant dist || die "ant failed"
}
src_install() {
sed -i -e '1i#!/bin/sh' -e "1icd /usr/share/${PN}" "build/${PN}/startserver.sh"
newbin "build/${PN}/startserver.sh" "${PN}"
rm build/"${PN}"/startserver.*
insinto /usr/share
doins -r "build/${PN}"
dodoc src/doc/{*.txt,*.rtf}
}
|