Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/cntlm/
Date: Tue, 03 May 2016 19:17:51
Message-Id: 1462303021.038994e5f79168e731bd48e3d200276e20eddaf3.wizardedit@gentoo
1 commit: 038994e5f79168e731bd48e3d200276e20eddaf3
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 3 18:53:06 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 19:17:01 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=038994e5
7
8 net-proxy/cntlm: remove old version
9
10 Package-Manager: portage-2.2.26
11
12 net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild | 55 ------------------------------
13 1 file changed, 55 deletions(-)
14
15 diff --git a/net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild b/net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild
16 deleted file mode 100644
17 index d206912..0000000
18 --- a/net-proxy/cntlm/cntlm-0.93_beta5-r1.ebuild
19 +++ /dev/null
20 @@ -1,55 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -inherit eutils systemd toolchain-funcs user
27 -
28 -DESCRIPTION="Cntlm is an NTLM/NTLMv2 authenticating HTTP proxy"
29 -HOMEPAGE="http://cntlm.sourceforge.net/"
30 -SRC_URI="http://ftp.awk.cz/pub/${P//_}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -IUSE=""
36 -
37 -DEPEND=""
38 -RDEPEND=""
39 -
40 -S="${WORKDIR}/${P//_}"
41 -
42 -src_prepare() {
43 - epatch "${FILESDIR}"/${P}-buildsystem.patch # 334647
44 -}
45 -
46 -src_configure() {
47 - tc-export CC
48 -
49 - econf
50 -
51 - # Replace default config file path in Makefile
52 - sed -i -e 's~SYSCONFDIR=/usr/local/etc~SYSCONFDIR=/etc~' \
53 - "${S}"/Makefile || die "sed failed"
54 -}
55 -
56 -src_compile() {
57 - emake V=1
58 -}
59 -
60 -src_install() {
61 - dobin cntlm
62 - dodoc COPYRIGHT README VERSION doc/cntlm.conf
63 - doman doc/cntlm.1
64 - newinitd "${FILESDIR}"/cntlm.initd cntlm
65 - newconfd "${FILESDIR}"/cntlm.confd cntlm
66 - systemd_dounit "${FILESDIR}"/cntlm.service
67 - insinto /etc
68 - insopts -m0600
69 - doins doc/cntlm.conf
70 -}
71 -
72 -pkg_postinst() {
73 - enewgroup cntlm
74 - enewuser cntlm -1 -1 -1 cntlm
75 -}