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-nds/ypbind/
Date: Tue, 03 May 2016 00:02:38
Message-Id: 1462233355.b5b0bb57a1245095627f8af3f1eb59d8964a5f36.wizardedit@gentoo
1 commit: b5b0bb57a1245095627f8af3f1eb59d8964a5f36
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 23:55:55 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 23:55:55 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5b0bb57
7
8 net-nds/ypbind: remove old ebuild
9
10 Package-Manager: portage-2.2.26
11
12 net-nds/ypbind/ypbind-1.37.2.ebuild | 65 -------------------------------------
13 1 file changed, 65 deletions(-)
14
15 diff --git a/net-nds/ypbind/ypbind-1.37.2.ebuild b/net-nds/ypbind/ypbind-1.37.2.ebuild
16 deleted file mode 100644
17 index 0607e24..0000000
18 --- a/net-nds/ypbind/ypbind-1.37.2.ebuild
19 +++ /dev/null
20 @@ -1,65 +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 readme.gentoo systemd
27 -
28 -MY_P=${PN}-mt-${PV}
29 -S="${WORKDIR}/${MY_P}"
30 -
31 -DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)"
32 -HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html"
33 -SRC_URI="http://www.linux-nis.org/download/ypbind-mt/${MY_P}.tar.bz2"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
38 -IUSE="debug dbus nls slp systemd"
39 -
40 -RDEPEND="
41 - debug? ( dev-libs/dmalloc )
42 - dbus? ( dev-libs/dbus-glib )
43 - slp? ( net-libs/openslp )
44 - systemd? (
45 - net-nds/rpcbind
46 - >=net-nds/yp-tools-2.12-r1
47 - sys-apps/systemd )
48 - !systemd? (
49 - net-nds/yp-tools
50 - || ( net-nds/portmap net-nds/rpcbind ) )
51 -"
52 -DEPEND="${RDEPEND}
53 - nls? ( sys-devel/gettext )
54 -"
55 -
56 -DOC_CONTENTS="
57 - If you are using dhcpcd, be sure to add the -Y option to
58 - dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering
59 - /etc/yp.conf.
60 -"
61 -
62 -src_prepare() {
63 - ! use systemd && export ac_cv_header_systemd_sd_daemon_h=no
64 -}
65 -
66 -src_configure() {
67 - econf \
68 - $(use_enable nls) \
69 - $(use_enable slp) \
70 - $(use_with debug dmalloc) \
71 - $(use_enable dbus dbus-nm)
72 -}
73 -
74 -src_install() {
75 - default
76 -
77 - insinto /etc
78 - newins etc/yp.conf yp.conf.example
79 -
80 - newconfd "${FILESDIR}/ypbind.confd-r1" ypbind
81 - newinitd "${FILESDIR}/ypbind.initd" ypbind
82 - use systemd && systemd_dounit "${FILESDIR}/ypbind.service"
83 -
84 - readme.gentoo_create_doc
85 -}