summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-03-21 12:15:01 +0000
committerMike Frysinger <vapier@gentoo.org>2009-03-21 12:15:01 +0000
commit609c02f43a93f8a9a4769b3c76b43538d11348c8 (patch)
treeb568a102648fdcbfb69e30ba0239a6b32f8c8f73
parentVersion bump, see bug #263020. (diff)
downloadhistorical-609c02f43a93f8a9a4769b3c76b43538d11348c8.tar.gz
historical-609c02f43a93f8a9a4769b3c76b43538d11348c8.tar.bz2
historical-609c02f43a93f8a9a4769b3c76b43538d11348c8.zip
old
-rw-r--r--net-proxy/3proxy/3proxy-0.5.3j.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/net-proxy/3proxy/3proxy-0.5.3j.ebuild b/net-proxy/3proxy/3proxy-0.5.3j.ebuild
deleted file mode 100644
index f3d80cae972a..000000000000
--- a/net-proxy/3proxy/3proxy-0.5.3j.ebuild
+++ /dev/null
@@ -1,59 +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/3proxy/3proxy-0.5.3j.ebuild,v 1.4 2007/11/04 14:14:53 angelos Exp $
-
-inherit toolchain-funcs
-
-DESCRIPTION="really tiny cross-platform proxy servers set"
-HOMEPAGE="http://www.security.nnov.ru/soft/3proxy/"
-SRC_URI="http://www.security.nnov.ru/soft/3proxy/${PV}/${P}.tgz"
-
-LICENSE="3proxy"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-DEPEND=""
-
-S="${WORKDIR}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e "/^CFLAGS/s:-g -O2:${CFLAGS}:" \
- -e "/^LDFLAGS/s:-O2:${LDFLAGS}:" \
- Makefile.unix || die "sed Makefile"
- sed -i 's:/usr/local::' src/stringtable.c || die "sed stringtable"
-}
-
-src_compile() {
- emake \
- CC="$(tc-getCC)" \
- LN="$(tc-getCC)" \
- -f Makefile.unix \
- || die "emake failed"
-}
-
-src_install() {
- local x
-
- pushd src
- dobin 3proxy || die "dobin 3proxy failed"
- for x in proxy socks ftppr pop3p tcppm udppm mycrypt dighosts ; do
- newbin ${x} ${PN}-${x} || die "newbin ${x} failed"
- [[ -f ${S}/man/${x}.8 ]] \
- && newman "${S}"/man/${x}.8 ${PN}-${x}.8
- done
- popd
-
- doman "${S}"/man/3proxy*.[38]
-
- cd "${S}"
- dodoc Changelog Readme Release.notes
- dohtml -r doc/html/*
- docinto cfg
- dodoc cfg/*.{txt,sample}
- docinto cfg/sql
- dodoc cfg/sql/*.{cfg,sql}
-}