Gentoo Archives: gentoo-commits

From: Doug Goldstein <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xinetd/
Date: Sun, 21 Feb 2016 21:20:35
Message-Id: 1456089616.dfb83dec9850f43ad7d9040309de4f7e139ad0e2.cardoe@gentoo
1 commit: dfb83dec9850f43ad7d9040309de4f7e139ad0e2
2 Author: Doug Goldstein <cardoe <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 21 21:19:42 2016 +0000
4 Commit: Doug Goldstein <cardoe <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 21 21:20:16 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfb83dec
7
8 sys-apps/xinetd: remove old version
9
10 Removed an old version vulnerable to CVE-2013-4342.
11
12 Gentoo-Bug: 488158
13
14 Package-Manager: portage-2.2.26
15 Signed-off-by: Doug Goldstein <cardoe <AT> gentoo.org>
16
17 sys-apps/xinetd/xinetd-2.3.15-r1.ebuild | 54 ---------------------------------
18 1 file changed, 54 deletions(-)
19
20 diff --git a/sys-apps/xinetd/xinetd-2.3.15-r1.ebuild b/sys-apps/xinetd/xinetd-2.3.15-r1.ebuild
21 deleted file mode 100644
22 index 39c51be..0000000
23 --- a/sys-apps/xinetd/xinetd-2.3.15-r1.ebuild
24 +++ /dev/null
25 @@ -1,54 +0,0 @@
26 -# Copyright 1999-2014 Gentoo Foundation
27 -# Distributed under the terms of the GNU General Public License v2
28 -# $Id$
29 -
30 -EAPI="5"
31 -
32 -inherit eutils flag-o-matic systemd toolchain-funcs
33 -
34 -DESCRIPTION="powerful replacement for inetd"
35 -HOMEPAGE="http://www.xinetd.org/"
36 -SRC_URI="http://www.xinetd.org/${P}.tar.gz"
37 -
38 -LICENSE="BSD"
39 -SLOT="0"
40 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
41 -IUSE="perl rpc tcpd"
42 -
43 -DEPEND="tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 )
44 - rpc? ( net-libs/libtirpc:= )"
45 -RDEPEND="${DEPEND}
46 - perl? ( dev-lang/perl )"
47 -DEPEND="${DEPEND}
48 - virtual/pkgconfig"
49 -
50 -src_prepare() {
51 - epatch "${FILESDIR}"/${PN}-2.3.14-DESTDIR.patch
52 - epatch "${FILESDIR}"/${PN}-2.3.14-install-contrib.patch
53 - epatch "${FILESDIR}"/${PN}-2.3.14-config.patch
54 - find -name Makefile.in -exec sed -i 's:\<ar\>:$(AR):' {} +
55 -}
56 -
57 -src_configure() {
58 - if ! use rpc ; then
59 - append-cppflags -DNO_RPC
60 - export ac_cv_header_{rpc_{rpc,rpcent,pmap_clnt},netdb}_h=no
61 - fi
62 - tc-export AR PKG_CONFIG
63 - LIBS=$(${PKG_CONFIG} --libs libtirpc) \
64 - econf \
65 - $(use_with tcpd libwrap) \
66 - --with-loadavg
67 -}
68 -
69 -src_install() {
70 - emake DESTDIR="${ED}" install install-contrib
71 - use perl || rm -f "${ED}"/usr/sbin/xconv.pl
72 -
73 - newinitd "${FILESDIR}"/xinetd.rc6 xinetd
74 - newconfd "${FILESDIR}"/xinetd.confd xinetd
75 - systemd_dounit "${FILESDIR}/${PN}.service"
76 -
77 - newdoc contrib/xinetd.conf xinetd.conf.dist.sample
78 - dodoc AUDIT INSTALL README TODO CHANGELOG
79 -}