blob: 1f992210442f86dd2e4b85dd05eefb98e981bced (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit autotools
DESCRIPTION="A lightweight SOCKS proxy server"
HOMEPAGE="http://monkey.org/~marius/nylon/"
SRC_URI="http://monkey.org/~marius/nylon/${P}.tar.gz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 ~sparc x86"
IUSE=""
RDEPEND=">=dev-libs/libevent-0.6"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
DOCS=( README THANKS )
src_prepare() {
default
eapply "${FILESDIR}"/${P}-libevent.patch
eautoreconf
}
src_install() {
default
insinto /etc ; doins "${FILESDIR}/nylon.conf"
newinitd "${FILESDIR}/nylon.init" nylond
}
|