Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-nds/ypbind: ypbind-1.37.2.ebuild ChangeLog
Date: Wed, 24 Sep 2014 11:21:26
Message-Id: 20140924112121.1A16061DF@oystercatcher.gentoo.org
1 pacho 14/09/24 11:21:21
2
3 Modified: ChangeLog
4 Added: ypbind-1.37.2.ebuild
5 Log:
6 Version bump, fixes systemd linking (#502530)
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.87 net-nds/ypbind/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ChangeLog?rev=1.87&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ChangeLog?rev=1.87&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ChangeLog?r1=1.86&r2=1.87
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v
20 retrieving revision 1.86
21 retrieving revision 1.87
22 diff -u -r1.86 -r1.87
23 --- ChangeLog 26 Jun 2014 12:45:26 -0000 1.86
24 +++ ChangeLog 24 Sep 2014 11:21:21 -0000 1.87
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-nds/ypbind
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.86 2014/06/26 12:45:26 kensington Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.87 2014/09/24 11:21:21 pacho Exp $
30 +
31 +*ypbind-1.37.2 (24 Sep 2014)
32 +
33 + 24 Sep 2014; Pacho Ramos <pacho@g.o> +ypbind-1.37.2.ebuild:
34 + Version bump, fixes systemd linking (#502530)
35
36 26 Jun 2014; Michael Palimaka <kensington@g.o>
37 -files/ypbind-1.31-man-port.patch, -ypbind-1.33.ebuild:
38
39
40
41 1.1 net-nds/ypbind/ypbind-1.37.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ypbind-1.37.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ypbind-1.37.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ypbind-1.37.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ypbind-1.37.2.ebuild,v 1.1 2014/09/24 11:21:21 pacho Exp $
51
52 EAPI=5
53 inherit readme.gentoo systemd
54
55 MY_P=${PN}-mt-${PV}
56 S="${WORKDIR}/${MY_P}"
57
58 DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)"
59 HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html"
60 SRC_URI="http://www.linux-nis.org/download/ypbind-mt/${MY_P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="debug dbus nls slp systemd"
66
67 RDEPEND="
68 debug? ( dev-libs/dmalloc )
69 dbus? ( dev-libs/dbus-glib )
70 slp? ( net-libs/openslp )
71 systemd? (
72 net-nds/rpcbind
73 >=net-nds/yp-tools-2.12-r1
74 sys-apps/systemd )
75 !systemd? (
76 net-nds/yp-tools
77 || ( net-nds/portmap net-nds/rpcbind ) )
78 "
79 DEPEND="${RDEPEND}
80 nls? ( sys-devel/gettext )
81 "
82
83 DOC_CONTENTS="
84 If you are using dhcpcd, be sure to add the -Y option to
85 dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering
86 /etc/yp.conf.
87 "
88
89 src_prepare() {
90 ! use systemd && export ac_cv_header_systemd_sd_daemon_h=no
91 }
92
93 src_configure() {
94 econf \
95 $(use_enable nls) \
96 $(use_enable slp) \
97 $(use_with debug dmalloc) \
98 $(use_enable dbus dbus-nm)
99 }
100
101 src_install() {
102 default
103
104 insinto /etc
105 newins etc/yp.conf yp.conf.example
106
107 newconfd "${FILESDIR}/ypbind.confd-r1" ypbind
108 newinitd "${FILESDIR}/ypbind.initd" ypbind
109 use systemd && systemd_dounit "${FILESDIR}/ypbind.service"
110
111 readme.gentoo_create_doc
112 }