diff options
Diffstat (limited to 'net-misc/dante/dante-1.1.14.ebuild')
-rw-r--r-- | net-misc/dante/dante-1.1.14.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-misc/dante/dante-1.1.14.ebuild b/net-misc/dante/dante-1.1.14.ebuild deleted file mode 100644 index e2c1df769017..000000000000 --- a/net-misc/dante/dante-1.1.14.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2003 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.14.ebuild,v 1.3 2003/09/18 23:14:19 avenj Exp $ - -inherit gcc - -DESCRIPTION="A free socks4,5 and msproxy implemetation" -HOMEPAGE="http://www.inet.no/dante/" -SRC_URI="ftp://ftp.inet.no/pub/socks/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ia64" -IUSE="tcpd debug" - -DEPEND="virtual/glibc - sys-libs/pam - tcpd? ( sys-apps/tcp-wrappers )" - -src_compile() { - econf \ - `use_enable debug` \ - `use_enable tcpd libwrap` \ - --with-socks-conf=/etc/socks/socks.conf \ - --with-sockd-conf=/etc/socks/sockd.conf \ - ${myconf} \ - || die "bad ./configure" - emake || die "compile problem" -} - -src_install() { - make DESTDIR=${D} install || die - # 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 - dosed "s:^int Rbindresvport://int Rbindresvport:" /usr/include/socks.h - # bor: comment libdl.so out it seems to work just fine without it - dosed 's:libdl\.so::' /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 -} |