+++ /dev/null
-MD5 5f54d41265a20ae48c261a53ca603139 proxychains-2.1.tar.gz 181095
-RMD160 2758c716847749c00429019e514b82b4cf6cf558 proxychains-2.1.tar.gz 181095
-SHA256 ca7d6483a2ef8459e0b3c61cc1b0da176628518c16c4c9b9aea8c044554245db proxychains-2.1.tar.gz 181095
+++ /dev/null
-MD5 27d7564f4f0f708c5d7ac9c6b49d50fa proxychains-3.0.tar.gz 327001
-RMD160 0e7bfe66afc5463610e704a9b8bb50535ffae696 proxychains-3.0.tar.gz 327001
-SHA256 e4f00532cc0a2a0a8aa5c8df6c18a330e67b4b467007477dfb13944f2da3f558 proxychains-3.0.tar.gz 327001
+++ /dev/null
-Update autotools and remove cruft that kdevelop added for no reason
-
---- configure.in
-+++ configure.in
-@@ -1,30 +1,24 @@
- dnl without this order in this file, autoconf will not work!
- dnl the argument is a source file out of your sources. But
- dnl acinclude.m4 makes the job for all programs ;-)
--AC_INIT(acinclude.m4)
-+AC_INIT(proxychains,2.1)
-
- dnl enable the following if you want to use autoconf/automake
- dnl framework from a certain directory (like kde-common)
- dnl AC_CONFIG_AUX_DIR(admin)
-
- AC_CANONICAL_SYSTEM
--AC_ARG_PROGRAM
-
--AM_INIT_AUTOMAKE(proxychains,2.1)
-+AM_INIT_AUTOMAKE
-
- AC_PREFIX_DEFAULT(/usr)
--if test "x$prefix" = "xNONE"; then
-- prefix=$ac_default_prefix
-- ac_configure_args="$ac_configure_args --prefix $prefix"
--fi
-
- dnl without this order in this file, automake will be confused!
- dnl
- AM_CONFIG_HEADER(config.h)
-
--dnl checks for programs.
--dnl first check for c compiler
--AC_CHECK_C_COMPILER
-+AC_PROG_CC
-+AC_PROG_LIBTOOL
-
- dnl create only shared libtool-libraries
- AC_ENABLE_SHARED(yes)
-@@ -33,44 +27,6 @@
- dnl libtool-libraries
- AC_ENABLE_STATIC(no)
-
--dnl create a working libtool-script
--if test -z "$LIBTOOL"; then
-- AC_LANG_SAVE
-- AC_LANG_C
-- AC_LIBTOOL_DLOPEN
-- AM_PROG_LIBTOOL
-- dnl LIBTOOL="$LIBTOOL --silent"
-- dnl AC_SUBST(LIBTOOL)
-- AC_LANG_RESTORE
-- LIBTOOL_SHELL='/bin/sh ./libtool'
--else
-- LIBTOOL_SHELL=$LIBTOOL
--fi
--
--dnl check for presence of dynamic-loading-library functions
--KDE_CHECK_LIBDL
--
--dnl activate the following for some additional tests
--dnl (compat, crypt, socket, nsl, ...)
--dnl KDE_MISC_TESTS
--
--dnl add --with-extra-includes and --with-extra-libs switch to ./configure
--dnl
--AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
--all_libraries="$all_libraries $USER_LDFLAGS"
--all_includes="$all_includes $USER_INCLUDES"
--AC_SUBST(all_includes)
--AC_SUBST(all_libraries)
--
--AC_SUBST(AUTODIRS)
--
--dnl in this space add everything you want to check for
--dnl examples are specific headers, libraries, etc.
--
--
--
--dnl perform program name transformation
--AC_ARG_PROGRAM
-
- dnl add here all your Makefiles. These will be created by configure
- AC_OUTPUT(Makefile proxychains/Makefile proxychains/docs/Makefile proxychains/docs/en/Makefile )
+++ /dev/null
-This is an ugly hax, but it's what upstream does, so i don't really care
-to try and 'fix' it.
-
---- proxychains-2.1/proxychains/core.h
-+++ proxychains-2.1/proxychains/core.h
-@@ -68,4 +68,6 @@
- #ifndef __linux__
- #define __libc_connect _connect
-+#else
-+#define __libc_connect __connect
- #endif
-
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/proxychains/proxychains-2.1-r2.ebuild,v 1.2 2005/10/29 09:31:40 vapier Exp $
-
-# This doesn't seem to be 64bit clean ... on amd64 for example,
-# trying to do `proxychains telnet 192.168.0.77` will attempt to
-# connect to '10.0.0.5' instead:
-# $ strace -econnect ./proxychains telnet 192.168.0.77
-# connect(4, {sa_family=AF_INET, sin_port=htons(3128), sin_addr=inet_addr("10.0.0.5")}, 16) = -1
-
-inherit eutils
-
-DESCRIPTION="force any tcp connections to flow through a proxy (or proxy chain)"
-HOMEPAGE="http://proxychains.sourceforge.net/"
-SRC_URI="mirror://sourceforge/proxychains/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="ppc x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack () {
- unpack ${A}
- cd "${S}"
- sed -i 's:/etc/:$(DESTDIR)/etc/:' proxychains/Makefile.am || die
- epatch "${FILESDIR}"/${P}-libc-connect.patch
-
- # bundled timestamps/autotools are all busted so rebuild
- epatch "${FILESDIR}"/${P}-autotools.patch
- rm acconfig.h *.m4
- aclocal && autoheader && libtoolize -c -f && autoconf && automake || die "autotools failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog README TODO
-}
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/proxychains/proxychains-3.0.ebuild,v 1.2 2006/03/05 20:07:02 vapier Exp $
-
-# This doesn't seem to be 64bit clean ... on amd64 for example,
-# trying to do `proxychains telnet 192.168.0.77` will attempt to
-# connect to '10.0.0.5' instead:
-# $ strace -econnect ./proxychains telnet 192.168.0.77
-# connect(4, {sa_family=AF_INET, sin_port=htons(3128), sin_addr=inet_addr("10.0.0.5")}, 16) = -1
-
-inherit eutils
-
-DESCRIPTION="force any tcp connections to flow through a proxy (or proxy chain)"
-HOMEPAGE="http://proxychains.sourceforge.net/"
-SRC_URI="mirror://sourceforge/proxychains/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog README TODO
-}