Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/xinetd: ChangeLog xinetd-2.3.14.ebuild
Date: Sat, 20 Jun 2009 12:18:13
Message-Id: E1MHzWL-00011q-4m@stork.gentoo.org
1 vapier 09/06/20 12:18:09
2
3 Modified: ChangeLog xinetd-2.3.14.ebuild
4 Log:
5 Switch to emake in src_install and drop old pkg_postinst messages.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.49 sys-apps/xinetd/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/xinetd/ChangeLog?rev=1.49&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/xinetd/ChangeLog?rev=1.49&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/xinetd/ChangeLog?r1=1.48&r2=1.49
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-apps/xinetd/ChangeLog,v
18 retrieving revision 1.48
19 retrieving revision 1.49
20 diff -u -r1.48 -r1.49
21 --- ChangeLog 2 Jan 2009 20:39:36 -0000 1.48
22 +++ ChangeLog 20 Jun 2009 12:18:09 -0000 1.49
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sys-apps/xinetd
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/ChangeLog,v 1.48 2009/01/02 20:39:36 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/ChangeLog,v 1.49 2009/06/20 12:18:09 vapier Exp $
28 +
29 + 20 Jun 2009; Mike Frysinger <vapier@g.o> xinetd-2.3.14.ebuild:
30 + Switch to emake in src_install and drop old pkg_postinst messages.
31
32 02 Jan 2009; Mike Frysinger <vapier@g.o> files/xinetd.rc6:
33 Tweak by Ian Pickworth for ssd usage to work on stable/unstable #253441.
34
35
36
37 1.15 sys-apps/xinetd/xinetd-2.3.14.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild?rev=1.15&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild?rev=1.15&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild?r1=1.14&r2=1.15
42
43 Index: xinetd-2.3.14.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild,v
46 retrieving revision 1.14
47 retrieving revision 1.15
48 diff -u -r1.14 -r1.15
49 --- xinetd-2.3.14.ebuild 20 Dec 2008 09:45:38 -0000 1.14
50 +++ xinetd-2.3.14.ebuild 20 Jun 2009 12:18:09 -0000 1.15
51 @@ -1,6 +1,6 @@
52 -# Copyright 1999-2008 Gentoo Foundation
53 +# Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild,v 1.14 2008/12/20 09:45:38 pva Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild,v 1.15 2009/06/20 12:18:09 vapier Exp $
57
58 inherit eutils
59
60 @@ -35,7 +35,7 @@
61 }
62
63 src_install() {
64 - make install install-contrib DESTDIR="${D}" || die "failed install"
65 + emake install install-contrib DESTDIR="${D}" || die "failed install"
66 use perl || rm -f "${D}"/usr/sbin/xconv.pl
67
68 newinitd "${FILESDIR}"/xinetd.rc6 xinetd || die
69 @@ -44,14 +44,3 @@
70 newdoc contrib/xinetd.conf xinetd.conf.dist.sample
71 dodoc AUDIT INSTALL README TODO CHANGELOG
72 }
73 -
74 -pkg_postinst() {
75 - einfo "This ebuild introduces the /etc/xinetd.d includedir with a default"
76 - einfo "/etc/xinetd.conf file. Check your config files if you're upgrading from an older"
77 - einfo "ebuild version. You should browse /etc/xinetd.conf and the files in /etc/xinetd.d."
78 - ewarn
79 - ewarn "PLEASE NOTE: Everything is off by default with access restricted to localhost."
80 - ewarn
81 - einfo "Check /etc/conf.d/xinetd for the startup options."
82 - echo ""
83 -}