Gentoo Archives: gentoo-commits

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