summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2009-06-20 12:13:20 +0000
committerAlin Năstac <mrness@gentoo.org>2009-06-20 12:13:20 +0000
commit2620eb4b6945750daf5ed633fa092ba9db25b27f (patch)
treef0fc5c76097a87e00165854c68819da071fd86f1 /net-proxy/dante
parentApply patch from Marco Paolone to pull in xinetd #268326. (diff)
downloadgentoo-2-2620eb4b6945750daf5ed633fa092ba9db25b27f.tar.gz
gentoo-2-2620eb4b6945750daf5ed633fa092ba9db25b27f.tar.bz2
gentoo-2-2620eb4b6945750daf5ed633fa092ba9db25b27f.zip
Remove obsolete revision (#260597).
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-proxy/dante')
-rw-r--r--net-proxy/dante/ChangeLog5
-rw-r--r--net-proxy/dante/dante-1.1.19-r1.ebuild84
2 files changed, 4 insertions, 85 deletions
diff --git a/net-proxy/dante/ChangeLog b/net-proxy/dante/ChangeLog
index c5273f1435e9..daba81e123e7 100644
--- a/net-proxy/dante/ChangeLog
+++ b/net-proxy/dante/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-proxy/dante
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/ChangeLog,v 1.52 2009/03/27 22:58:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/ChangeLog,v 1.53 2009/06/20 12:13:20 mrness Exp $
+
+ 20 Jun 2009; Alin Năstac <mrness@gentoo.org> -dante-1.1.19-r1.ebuild:
+ Remove obsolete revision (#260597).
27 Mar 2009; Jeroen Roovers <jer@gentoo.org> dante-1.1.19-r4.ebuild:
Stable for HPPA (bug #260597).
diff --git a/net-proxy/dante/dante-1.1.19-r1.ebuild b/net-proxy/dante/dante-1.1.19-r1.ebuild
deleted file mode 100644
index 76c6554f49e4..000000000000
--- a/net-proxy/dante/dante-1.1.19-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/dante-1.1.19-r1.ebuild,v 1.6 2008/06/24 20:59:04 mrness Exp $
-
-inherit fixheadtails eutils
-
-DESCRIPTION="A free socks4,5 and msproxy implementation"
-HOMEPAGE="http://www.inet.no/dante/"
-SRC_URI="ftp://ftp.inet.no/pub/socks/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="tcpd debug selinux pam"
-
-RDEPEND="virtual/libc
- pam? ( virtual/pam )
- tcpd? ( sys-apps/tcp-wrappers )
- selinux? ( sec-policy/selinux-dante )
- userland_GNU? ( sys-apps/shadow )"
-DEPEND="${RDEPEND}
- sys-devel/flex
- sys-devel/bison
- >=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
-
- cd "${S}"
- epatch "${FILESDIR}/${P}-socksify.patch"
-
- ht_fix_file configure
- sed -i \
- -e 's:/etc/socks\.conf:/etc/socks/socks.conf:' \
- -e 's:/etc/sockd\.conf:/etc/socks/sockd.conf:' \
- doc/{faq.ps,faq.tex,sockd.8,sockd.conf.5,socks.conf.5}
-}
-
-src_compile() {
- econf \
- `use_enable debug` \
- `use_enable tcpd libwrap` \
- `use_with pam` \
- --with-socks-conf=/etc/socks/socks.conf \
- --with-sockd-conf=/etc/socks/sockd.conf \
- || die "bad ./configure"
- # the comments in the source say this is only useful for 2.0 kernels ...
- # well it may fix 2.0 but it breaks with 2.6 :)
- sed -i 's:if HAVE_LINUX_ECCENTRICITIES:if 0:' include/common.h
- emake || die "compile problem"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install has failed"
-
- # bor: comment libdl.so out it seems to work just fine without it
- sed -i -e 's:libdl\.so::' "${D}/usr/bin/socksify" || die 'sed failed'
-
- # default configuration files
- insinto /etc/socks
- doins "${FILESDIR}"/sock?.conf
- cd "${D}/etc/socks" && {
- use pam && epatch "${FILESDIR}/sockd.conf-with-pam.patch"
- use tcpd && epatch "${FILESDIR}/sockd.conf-with-libwrap.patch"
- }
- cd "${S}"
-
- # our init script
- newinitd "${FILESDIR}/dante-sockd-init" dante-sockd
- newconfd "${FILESDIR}/dante-sockd-conf" dante-sockd
-
- # install documentation
- dodoc BUGS CREDITS NEWS README SUPPORT TODO
- docinto txt
- cd doc
- dodoc README* *.txt SOCKS4.*
- docinto example
- cd ../example
- dodoc *.conf
-}
-
-pkg_postinst() {
- enewuser sockd -1 -1 /etc/socks daemon
-}