summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2007-06-17 06:17:39 +0000
committerAlin Năstac <mrness@gentoo.org>2007-06-17 06:17:39 +0000
commitd52ac09d0d5120ce3c55aca431d6185cdfa30a8d (patch)
tree82b4e02b66fd9f40e3b9bde6034b727ae170f3db /net-proxy/dante
parentRemove obsolete beta version. Replace need clamd with use clamd since users m... (diff)
downloadgentoo-2-d52ac09d0d5120ce3c55aca431d6185cdfa30a8d.tar.gz
gentoo-2-d52ac09d0d5120ce3c55aca431d6185cdfa30a8d.tar.bz2
gentoo-2-d52ac09d0d5120ce3c55aca431d6185cdfa30a8d.zip
Remove obsolete version.
(Portage version: 2.1.2.7)
Diffstat (limited to 'net-proxy/dante')
-rw-r--r--net-proxy/dante/ChangeLog7
-rw-r--r--net-proxy/dante/dante-1.1.18.ebuild82
-rw-r--r--net-proxy/dante/dante-1.1.19-r1.ebuild4
-rw-r--r--net-proxy/dante/files/dante-1.1.18-socksify.patch16
-rw-r--r--net-proxy/dante/files/digest-dante-1.1.183
5 files changed, 8 insertions, 104 deletions
diff --git a/net-proxy/dante/ChangeLog b/net-proxy/dante/ChangeLog
index 9a55e9c975ea..1a27d4f09a3d 100644
--- a/net-proxy/dante/ChangeLog
+++ b/net-proxy/dante/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-proxy/dante
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/ChangeLog,v 1.39 2007/06/14 14:52:02 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/ChangeLog,v 1.40 2007/06/17 06:17:39 mrness Exp $
+
+ 17 Jun 2007; Alin Năstac <mrness@gentoo.org>
+ -files/dante-1.1.18-socksify.patch, -dante-1.1.18.ebuild,
+ dante-1.1.19-r1.ebuild:
+ Remove obsolete version.
14 Jun 2007; Raúl Porcel <armin76@gentoo.org> dante-1.1.19-r1.ebuild:
alpha stable wrt #174115
diff --git a/net-proxy/dante/dante-1.1.18.ebuild b/net-proxy/dante/dante-1.1.18.ebuild
deleted file mode 100644
index f41aea77ee5b..000000000000
--- a/net-proxy/dante/dante-1.1.18.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/dante-1.1.18.ebuild,v 1.10 2007/04/22 00:21:40 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"
-IUSE="tcpd debug selinux pam"
-
-RDEPEND="virtual/libc
- pam? ( sys-libs/pam )
- tcpd? ( sys-apps/tcp-wrappers )
- selinux? ( sec-policy/selinux-dante )
- userland_GNU? ( sys-apps/shadow )"
-DEPEND="${RDEPEND}
- >=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 :)
- [ "${KV:0:3}" == "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
-
- # 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
-}
diff --git a/net-proxy/dante/dante-1.1.19-r1.ebuild b/net-proxy/dante/dante-1.1.19-r1.ebuild
index a038d63247e7..0af7bac5c9cf 100644
--- a/net-proxy/dante/dante-1.1.19-r1.ebuild
+++ b/net-proxy/dante/dante-1.1.19-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 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.3 2007/06/14 14:52:02 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/dante-1.1.19-r1.ebuild,v 1.4 2007/06/17 06:17:39 mrness Exp $
inherit fixheadtails eutils
@@ -57,7 +57,7 @@ src_install() {
# default configuration files
insinto /etc/socks
doins "${FILESDIR}"/sock?.conf
- cd ${D}/etc/socks && {
+ cd "${D}/etc/socks" && {
use pam && epatch "${FILESDIR}/sockd.conf-with-pam.patch"
use tcpd && epatch "${FILESDIR}/sockd.conf-with-libwrap.patch"
}
diff --git a/net-proxy/dante/files/dante-1.1.18-socksify.patch b/net-proxy/dante/files/dante-1.1.18-socksify.patch
deleted file mode 100644
index 632deb1f9b58..000000000000
--- a/net-proxy/dante/files/dante-1.1.18-socksify.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- dante-1.1.15-pre1/bin/socksify.in.agriffis 2004-11-04 16:07:04.000000000 -0500
-+++ dante-1.1.15-pre1/bin/socksify.in 2004-11-04 16:07:08.977460049 -0500
-@@ -60,7 +60,11 @@
- @PRELOAD_VARIABLE@="${LIBRARY}${SOCKSIFY_PRELOAD_LIBS:+${PRELOAD_SEPERATOR}}${SOCKSIFY_PRELOAD_LIBS}${PRELOAD_POSTFIX:+${PRELOAD_SEPERATOR}}${PRELOAD_POSTFIX}"
- export @PRELOAD_VARIABLE@
-
--LD_LIBRARY_PATH="${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}${LIBDIR}"
--export LD_LIBRARY_PATH
-+# There is no reason to set LD_LIBRARY_PATH, at least on Linux, where
-+# LD_PRELOAD can contain a full path to the library. Setting the
-+# following breaks socksify on Linux/Alpha at least with
-+# binutils-2.14.90.0.7-r3 (08 Dec 2003 agriffis)
-+#LD_LIBRARY_PATH="${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}${LIBDIR}"
-+#export LD_LIBRARY_PATH
-
- exec "$@"
diff --git a/net-proxy/dante/files/digest-dante-1.1.18 b/net-proxy/dante/files/digest-dante-1.1.18
deleted file mode 100644
index 2f65ed21277a..000000000000
--- a/net-proxy/dante/files/digest-dante-1.1.18
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b6f5e1a00c7311f99632ed300ce26f5f dante-1.1.18.tar.gz 847433
-RMD160 036cf84271229d9b3b7a11e50536b6ff0d9d6f4a dante-1.1.18.tar.gz 847433
-SHA256 72b38496509d0d19ba92d3d292835d5ba530e28efd9085007049798d3fdaa29a dante-1.1.18.tar.gz 847433