blob: a0183362260b3792d50fa502ee45e657d54a9417 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils
DESCRIPTION="A really tiny cross-platform proxy servers set"
HOMEPAGE="http://www.3proxy.ru/"
SRC_URI="http://3proxy.ru/${PV}/${P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE=""
S="${WORKDIR}/${PN}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.7.1.2-gentoo.patch
cp Makefile.Linux Makefile || die
default
}
src_install() {
local x
cd src || die
dobin 3proxy
for x in proxy socks ftppr pop3p tcppm udppm mycrypt dighosts countersutil ; do
newbin ${x} ${PN}-${x}
[[ -f "${S}"/man/${x}.8 ]] && newman "${S}"/man/${x}.8 ${PN}-${x}.8
done
cd ..
doman man/3proxy*.[38]
dodoc Readme
docinto html
dodoc -r doc/html/*
docinto cfg
dodoc -r cfg/*
}
|