blob: 3d9217b4868aa4d18da20deb1a46adb36eae09e9 (
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
38
39
40
41
42
43
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/paros/paros-3.2.13.ebuild,v 1.4 2007/04/11 12:28:26 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="amd64 ~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_unpack() {
unpack ${A}
epatch "${FILESDIR}/${P}-without_embed.patch"
}
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}
}
|