blob: bb8b7196c0ad3cc0ae5410dc3bc65bf1f427858a (
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-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
DESCRIPTION="A really tiny cross-platform proxy servers set"
HOMEPAGE="https://www.3proxy.ru/"
SRC_URI="https://3proxy.ru/${PV}/${P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE=""
S="${WORKDIR}/${PN}"
src_prepare() {
epatch "${FILESDIR}"/${P}-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 icqpr smtpp; 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/*
}
|