52 lines
1.1 KiB
Bash
52 lines
1.1 KiB
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-proxy/3proxy/3proxy-0.6.1.ebuild,v 1.1 2010/05/03 21:08:25 patrick Exp $
|
|
|
|
EAPI="2"
|
|
|
|
inherit toolchain-funcs eutils
|
|
|
|
DESCRIPTION="really tiny cross-platform proxy servers set"
|
|
HOMEPAGE="http://3proxy.ru/"
|
|
SRC_URI="http://3proxy.ru/${PV}/${P}.tgz"
|
|
|
|
LICENSE="3proxy"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE=""
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${PN}-0.6-gentoo.patch
|
|
}
|
|
|
|
src_compile() {
|
|
emake \
|
|
CC="$(tc-getCC)" \
|
|
LN="$(tc-getCC)" \
|
|
LIBS="-ldl" \
|
|
-f Makefile.unix \
|
|
|| die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
local x
|
|
|
|
pushd src
|
|
dobin 3proxy || die "dobin 3proxy failed"
|
|
for x in proxy socks ftppr pop3p tcppm udppm mycrypt dighosts countersutil ; do
|
|
newbin ${x} ${PN}-${x} || die "newbin ${x} failed"
|
|
[[ -f ${S}/man/${x}.8 ]] \
|
|
&& newman "${S}"/man/${x}.8 ${PN}-${x}.8
|
|
done
|
|
popd
|
|
|
|
doman "${S}"/man/3proxy*.[38]
|
|
|
|
cd "${S}"
|
|
dodoc Changelog Readme
|
|
dohtml -r doc/html/*
|
|
docinto cfg
|
|
dodoc cfg/*.{txt,sample}
|
|
docinto cfg/sql
|
|
dodoc cfg/sql/*.{cfg,sql}
|
|
}
|