diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-06-20 12:18:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-06-20 12:18:09 +0000 |
commit | eb620870e90838a9ffac05bba0cb3dd54977dbd2 (patch) | |
tree | 5589d3a2dfe659c29941961ea1de95cf769c506b /sys-apps | |
parent | Add ~amd64 into KEYWORDS (diff) | |
download | gentoo-2-eb620870e90838a9ffac05bba0cb3dd54977dbd2.tar.gz gentoo-2-eb620870e90838a9ffac05bba0cb3dd54977dbd2.tar.bz2 gentoo-2-eb620870e90838a9ffac05bba0cb3dd54977dbd2.zip |
Switch to emake in src_install and drop old pkg_postinst messages.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/xinetd/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/xinetd/xinetd-2.3.14.ebuild | 17 |
2 files changed, 7 insertions, 15 deletions
diff --git a/sys-apps/xinetd/ChangeLog b/sys-apps/xinetd/ChangeLog index d1ed7a0b1953..c70b30074635 100644 --- a/sys-apps/xinetd/ChangeLog +++ b/sys-apps/xinetd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/xinetd # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/ChangeLog,v 1.48 2009/01/02 20:39:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/ChangeLog,v 1.49 2009/06/20 12:18:09 vapier Exp $ + + 20 Jun 2009; Mike Frysinger <vapier@gentoo.org> xinetd-2.3.14.ebuild: + Switch to emake in src_install and drop old pkg_postinst messages. 02 Jan 2009; Mike Frysinger <vapier@gentoo.org> files/xinetd.rc6: Tweak by Ian Pickworth for ssd usage to work on stable/unstable #253441. diff --git a/sys-apps/xinetd/xinetd-2.3.14.ebuild b/sys-apps/xinetd/xinetd-2.3.14.ebuild index a3582a369fba..3708ba00c016 100644 --- a/sys-apps/xinetd/xinetd-2.3.14.ebuild +++ b/sys-apps/xinetd/xinetd-2.3.14.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild,v 1.14 2008/12/20 09:45:38 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.3.14.ebuild,v 1.15 2009/06/20 12:18:09 vapier Exp $ inherit eutils @@ -35,7 +35,7 @@ src_compile() { } src_install() { - make install install-contrib DESTDIR="${D}" || die "failed install" + emake install install-contrib DESTDIR="${D}" || die "failed install" use perl || rm -f "${D}"/usr/sbin/xconv.pl newinitd "${FILESDIR}"/xinetd.rc6 xinetd || die @@ -44,14 +44,3 @@ src_install() { newdoc contrib/xinetd.conf xinetd.conf.dist.sample dodoc AUDIT INSTALL README TODO CHANGELOG } - -pkg_postinst() { - einfo "This ebuild introduces the /etc/xinetd.d includedir with a default" - einfo "/etc/xinetd.conf file. Check your config files if you're upgrading from an older" - einfo "ebuild version. You should browse /etc/xinetd.conf and the files in /etc/xinetd.d." - ewarn - ewarn "PLEASE NOTE: Everything is off by default with access restricted to localhost." - ewarn - einfo "Check /etc/conf.d/xinetd for the startup options." - echo "" -} |