summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin English <wizardedit@gentoo.org>2016-05-03 13:53:06 -0500
committerAustin English <wizardedit@gentoo.org>2016-05-03 14:17:01 -0500
commit038994e5f79168e731bd48e3d200276e20eddaf3 (patch)
tree354c6d7c22f3cfd2924c54deeea53c6838bb08e6
parentnet-proxy/cntlm: use #!/sbin/openrc-run instead of #!/sbin/runscript (diff)
downloadgentoo-038994e5.tar.gz
gentoo-038994e5.tar.bz2
gentoo-038994e5.zip
net-proxy/cntlm: remove old version
Package-Manager: portage-2.2.26
-rw-r--r--net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild b/net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild
deleted file mode 100644
index d206912adda0..000000000000
--- a/net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils systemd toolchain-funcs user
-
-DESCRIPTION="Cntlm is an NTLM/NTLMv2 authenticating HTTP proxy"
-HOMEPAGE="http://cntlm.sourceforge.net/"
-SRC_URI="http://ftp.awk.cz/pub/${P//_}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/${P//_}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-buildsystem.patch # 334647
-}
-
-src_configure() {
- tc-export CC
-
- econf
-
- # Replace default config file path in Makefile
- sed -i -e 's~SYSCONFDIR=/usr/local/etc~SYSCONFDIR=/etc~' \
- "${S}"/Makefile || die "sed failed"
-}
-
-src_compile() {
- emake V=1
-}
-
-src_install() {
- dobin cntlm
- dodoc COPYRIGHT README VERSION doc/cntlm.conf
- doman doc/cntlm.1
- newinitd "${FILESDIR}"/cntlm.initd cntlm
- newconfd "${FILESDIR}"/cntlm.confd cntlm
- systemd_dounit "${FILESDIR}"/cntlm.service
- insinto /etc
- insopts -m0600
- doins doc/cntlm.conf
-}
-
-pkg_postinst() {
- enewgroup cntlm
- enewuser cntlm -1 -1 -1 cntlm
-}