diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-02-15 17:23:17 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-02-15 17:23:17 +0000 |
commit | 8d058b41a4ea05803248094d1991289b888afbbf (patch) | |
tree | d97356852f985b41c050023fb25cc31e935da846 /app-benchmarks | |
parent | Version bump, contains fix for CVE-2013-0275. Drop old unstable (diff) | |
download | gentoo-2-8d058b41a4ea05803248094d1991289b888afbbf.tar.gz gentoo-2-8d058b41a4ea05803248094d1991289b888afbbf.tar.bz2 gentoo-2-8d058b41a4ea05803248094d1991289b888afbbf.zip |
Don't show elog messages always (#457596)
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/ltp/ChangeLog | 7 | ||||
-rw-r--r-- | app-benchmarks/ltp/ltp-20120903.ebuild | 23 |
2 files changed, 15 insertions, 15 deletions
diff --git a/app-benchmarks/ltp/ChangeLog b/app-benchmarks/ltp/ChangeLog index 6e9b9177f632..b8dc869b3803 100644 --- a/app-benchmarks/ltp/ChangeLog +++ b/app-benchmarks/ltp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-benchmarks/ltp -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ltp/ChangeLog,v 1.20 2012/11/03 18:58:32 hwoarang Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ltp/ChangeLog,v 1.21 2013/02/15 17:23:17 pacho Exp $ + + 15 Feb 2013; Pacho Ramos <pacho@gentoo.org> ltp-20120903.ebuild: + Don't show elog messages always (#457596) *ltp-20120903 (03 Nov 2012) diff --git a/app-benchmarks/ltp/ltp-20120903.ebuild b/app-benchmarks/ltp/ltp-20120903.ebuild index 9063b24c8f13..780e15c58095 100644 --- a/app-benchmarks/ltp/ltp-20120903.ebuild +++ b/app-benchmarks/ltp/ltp-20120903.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ltp/ltp-20120903.ebuild,v 1.2 2012/11/06 19:26:43 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ltp/ltp-20120903.ebuild,v 1.3 2013/02/15 17:23:17 pacho Exp $ EAPI="4" -inherit autotools eutils +inherit autotools eutils readme.gentoo MY_PN="${PN}-full" MY_P="${MY_PN}-${PV}" @@ -29,6 +29,12 @@ S="${WORKDIR}"/${MY_P} pkg_setup() { # Don't create groups export CREATE=0 + + DOC_CONTENTS="LTP requires root access to run the tests. + The LTP root directory is located in /usr/libexec/${PN} + but the results and output folders will be created in /tmp. + For more information please read the ltp-howto located in + /usr/share/doc/${PF}" } src_prepare() { @@ -77,14 +83,5 @@ src_install() { dohtml -r doc/automation-*.html doman doc/man1/*.1 doman doc/man3/*.3 -} - -pkg_postinst() { - elog - elog "LTP requires root access to run the tests." - elog "The LTP root directory is located in /usr/libexec/${PN}" - elog "but the results and output folders will be created in /tmp." - elog "For more information please read the ltp-howto" - elog "located in /usr/share/doc/${PF}" - elog + readme.gentoo_create_doc } |