blob: b7fe7ebaac8d87e942c42be2ea820e8501c8ba38 (
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
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dante/dante-1.1.13.ebuild,v 1.18 2004/02/21 20:37:31 seemant Exp $
inherit gcc
DESCRIPTION="A free socks4,5 and msproxy implemetation"
SRC_URI="ftp://ftp.inet.no/pub/socks/${P}.tar.gz"
HOMEPAGE="http://www.inet.no/dante/"
LICENSE="BSD"
KEYWORDS="x86 ppc sparc alpha hppa mips amd64"
SLOT="0"
IUSE="tcpd debug"
RDEPEND="virtual/glibc
sys-libs/pam
tcpd? ( sys-apps/tcp-wrappers )"
DEPEND="${RDEPEND}
dev-lang/perl"
src_compile() {
[ "`gcc-version`" == "3.2" ] && export CFLAGS=""
local myconf
use tcpd || myconf="--disable-libwrap"
[ `use debug` ] || myconf="${myconf} --disable-debug"
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--with-socks-conf=/etc/socks/socks.conf \
--with-sockd-conf=/etc/socks/sockd.conf \
--host=${CHOST} ${myconf} || die "bad ./configure"
emake || die "compile problem"
}
src_install() {
# Line 99 in socks.h conflicts with stuff in line 333 of
# /usr/include/netinet/in.h this is a not-too-cool way of fix0ring that
cat capi/socks.h | \
sed -e "s:^int Rbindresvport://int Rbindresvport:" > capi/socks.h
make DESTDIR=${D} install || die
# bor: comment libdl.so out it seems to work just fine without it
perl -pe 's/(libdl\.so)//' -i ${D}/usr/bin/socksify
dodir /etc/socks
dodoc BUGS CREDITS LICENSE NEWS README SUPPORT TODO VERSION
docinto txt
cd doc
dodoc README* *.txt SOCKS4.*
docinto example
cd ../example
dodoc *.conf
exeinto /etc/init.d
newexe ${FILESDIR}/dante-sockd-init dante-sockd
}
|