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-misc/mdidentd/
Date: Wed, 04 May 2016 00:11:06
Message-Id: 1462320517.76a5090b45b2b0961118a45546d135a9f5469fb8.wizardedit@gentoo
1 commit: 76a5090b45b2b0961118a45546d135a9f5469fb8
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 00:08:25 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 00:08:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76a5090b
7
8 net-misc/mdidentd: remove old version
9
10 Package-Manager: portage-2.2.26
11
12 net-misc/mdidentd/mdidentd-1.04c.ebuild | 45 ---------------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/net-misc/mdidentd/mdidentd-1.04c.ebuild b/net-misc/mdidentd/mdidentd-1.04c.ebuild
16 deleted file mode 100644
17 index c028d30..0000000
18 --- a/net-misc/mdidentd/mdidentd-1.04c.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -inherit eutils user
26 -
27 -DESCRIPTION="This is an identd with provides registering of idents"
28 -HOMEPAGE="http://druglord.freelsd.org/ezbounce/"
29 -SRC_URI="http://druglord.freelsd.org/ezbounce/files/ezbounce-${PV}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~ppc ~x86"
34 -IUSE="ssl"
35 -
36 -DEPEND="ssl? ( dev-libs/openssl )"
37 -RDEPEND="${DEPEND}"
38 -
39 -S=${WORKDIR}/ezbounce-${PV}
40 -
41 -pkg_setup() {
42 - enewgroup mdidentd
43 - enewuser mdidentd -1 -1 /dev/null mdidentd
44 -}
45 -
46 -src_unpack() {
47 - unpack ${A}
48 - cd "${S}"
49 - epatch "${FILESDIR}"/1.04a-security.patch
50 - epatch "${FILESDIR}"/1.04a-pidfile.patch
51 - epatch "${FILESDIR}"/1.04a-glibc210.patch
52 -}
53 -
54 -src_compile() {
55 - econf $(use_with ssl) || die
56 - emake CXX="$(tc-getCXX)" -C mdidentd CXX_OPTIMIZATIONS="${CXXFLAGS}" || die
57 -}
58 -
59 -src_install() {
60 - dosbin mdidentd/mdidentd || die
61 - dodoc mdidentd/README
62 -
63 - newinitd "${FILESDIR}"/mdidentd.init.d mdidentd
64 - newconfd "${FILESDIR}"/mdidentd.conf.d mdidentd
65 -}