Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-nds/ypbind: ChangeLog ypbind-1.32.ebuild
Date: Sat, 28 Aug 2010 00:27:05
Message-Id: 20100828002701.1852320051@flycatcher.gentoo.org
1 jer 10/08/28 00:27:01
2
3 Modified: ChangeLog
4 Added: ypbind-1.32.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2_rc69/cvs/Linux i686)
9
10 Revision Changes Path
11 1.58 net-nds/ypbind/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ChangeLog?rev=1.58&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ChangeLog?rev=1.58&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ChangeLog?r1=1.57&r2=1.58
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v
20 retrieving revision 1.57
21 retrieving revision 1.58
22 diff -u -r1.57 -r1.58
23 --- ChangeLog 28 Aug 2010 00:24:08 -0000 1.57
24 +++ ChangeLog 28 Aug 2010 00:27:01 -0000 1.58
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-nds/ypbind
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.57 2010/08/28 00:24:08 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.58 2010/08/28 00:27:01 jer Exp $
30 +
31 +*ypbind-1.32 (28 Aug 2010)
32 +
33 + 28 Aug 2010; Jeroen Roovers <jer@g.o> +ypbind-1.32.ebuild:
34 + Version bump.
35
36 28 Aug 2010; Jeroen Roovers <jer@g.o> ypbind-1.31.ebuild:
37 Stable for HPPA (bug #320327).
38
39
40
41 1.1 net-nds/ypbind/ypbind-1.32.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ypbind-1.32.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/ypbind/ypbind-1.32.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ypbind-1.32.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.32.ebuild,v 1.1 2010/08/28 00:27:01 jer Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 MY_P=${PN}-mt-${PV}
57 S="${WORKDIR}/${MY_P}"
58
59 DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)"
60 HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html"
61 SRC_URI="ftp://ftp.kernel.org/pub/linux/utils/net/NIS/${MY_P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="nls slp"
67
68 RDEPEND="slp? ( net-libs/openslp )
69 net-nds/yp-tools
70 || ( net-nds/portmap net-nds/rpcbind )"
71 DEPEND="${RDEPEND}
72 nls? ( sys-devel/gettext )"
73
74 src_prepare() {
75 epatch "${FILESDIR}/${PN}-1.31-man-port.patch" # bug #77810
76 }
77
78 src_configure() {
79 econf $(use_enable nls) $(use_enable slp)
80 }
81
82 src_install() {
83 emake install DESTDIR="${D}" || die
84
85 dodoc AUTHORS ChangeLog README THANKS TODO
86
87 insinto /etc
88 newins etc/yp.conf yp.conf.example
89
90 newconfd "${FILESDIR}/ypbind.confd-r1" ypbind
91 newinitd "${FILESDIR}/ypbind.initd" ypbind
92 }
93
94 pkg_postinst() {
95 einfo "To complete setup, you will need to edit /etc/conf.d/ypbind."
96 einfo "If you are using dhcpcd, be sure to add the -Y option to"
97 einfo "dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering"
98 einfo "/etc/yp.conf."
99 }