# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ K_EXTRAEINFO="This software is not supported by gentoo at the moment. It downlods a nightlysnapshot of the development tree for the COMMANDLINE mix software. No warranty included." inherit eutils DESCRIPTION="This ebuild will isntall tu-dresdens commandline version of the JAP Mix anonimysation proxy. Inform yourself about security and law issues." HOMEPAGE="http://anon.inf.tu-dresden.de/index_en.html" SRC_URI="http://anon.inf.tu-dresden.de/develop/mix.src.tgz" LICENSE="unknown" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=dev-libs/xerces-c-2.6.0-r1 >=dev-libs/openssl-0.9.7e-r1 >=dev-libs/libxml-1.8.17-r2" # Run-time dependencies, same as DEPEND if RDEPEND isn't defined: #RDEPEND="" S=${WORKDIR}/proxytest src_compile() { ./configure || die "./configure failed" make || die "make failed" } src_install() { make DESTDIR=${D} install || die "install failed" } pkg_postint() { einfo "usually mix -? gives this output, but it seems broken..." einfo "-j --> to tell the mix to act as local proxy (like JAP)" einfo "-p [IP:]Port --> local port to use (and IP if given)" einfo "-n mix.inf.tu-dresden.de:6544 --> to which cascade to connect ('Dresden-Dresden' in this example)" einfo "optional parameters:" einfo "-l --> Directory where logfile should be placed (if omitted syslog is used)" einfo "-d --> to tell the mix to be a daemon (run in background)" einfo einfo "Try something like this: /usr/bin/mix -j -a -p 10.42.0.1:3123 -n 212.112.232.175:36544" einfo "This should get you connected to the ULD cascade" }