summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2013-02-14 21:14:31 +0000
committerPacho Ramos <pacho@gentoo.org>2013-02-14 21:14:31 +0000
commitf64bb55402ef7426dfc9a4a5449ea0b143d5768d (patch)
tree17967f41a5bd3f8eadf6d8700b134920463c83a0 /app-doc/devmanual
parentIt seems fine with libav-9 so allow it in the deps (diff)
downloadgentoo-2-f64bb55402ef7426dfc9a4a5449ea0b143d5768d.tar.gz
gentoo-2-f64bb55402ef7426dfc9a4a5449ea0b143d5768d.tar.bz2
gentoo-2-f64bb55402ef7426dfc9a4a5449ea0b143d5768d.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-doc/devmanual')
-rw-r--r--app-doc/devmanual/ChangeLog5
-rw-r--r--app-doc/devmanual/devmanual-9999.ebuild29
2 files changed, 20 insertions, 14 deletions
diff --git a/app-doc/devmanual/ChangeLog b/app-doc/devmanual/ChangeLog
index cf4c6fc5b354..634fffe7e7d2 100644
--- a/app-doc/devmanual/ChangeLog
+++ b/app-doc/devmanual/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-doc/devmanual
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/devmanual/ChangeLog,v 1.4 2013/02/07 21:28:50 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/devmanual/ChangeLog,v 1.5 2013/02/14 21:14:31 pacho Exp $
+
+ 14 Feb 2013; Pacho Ramos <pacho@gentoo.org> devmanual-9999.ebuild:
+ Don't show elog messages always (#457596)
07 Feb 2013; Ulrich Müller <ulm@gentoo.org> devmanual-9999.ebuild:
Move Creative Commons licenses to shorter names.
diff --git a/app-doc/devmanual/devmanual-9999.ebuild b/app-doc/devmanual/devmanual-9999.ebuild
index dc725f21ef7c..c262bced6d60 100644
--- a/app-doc/devmanual/devmanual-9999.ebuild
+++ b/app-doc/devmanual/devmanual-9999.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/devmanual/devmanual-9999.ebuild,v 1.4 2013/02/07 21:28:50 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/devmanual/devmanual-9999.ebuild,v 1.5 2013/02/14 21:14:31 pacho Exp $
EAPI=5
-inherit git-2
+inherit git-2 readme.gentoo
DESCRIPTION="The Gentoo Development Guide"
HOMEPAGE="http://devmanual.gentoo.org/"
@@ -20,20 +20,23 @@ IUSE=""
DEPEND="dev-libs/libxslt
media-gfx/imagemagick[truetype]"
+DOC_CONTENTS="In order to browse the Gentoo Development Guide in
+ offline mode, point your browser to the following url:
+ /usr/share/doc/devmanual-9999/html/index.html"
+
src_install() {
dohtml -r *
+ readme.gentoo_create_doc
}
pkg_postinst() {
- elog
- elog "In order to browse the Gentoo Development Guide in"
- elog "offline mode, point your browser to the following url:"
- elog "/usr/share/doc/devmanual-9999/html/index.html"
- elog
- elog "The offline version of the devmanual does not include the"
- elog "documentation for the eclasses. If you need it, then emerge"
- elog "the following package:"
- elog
- elog "app-portage/eclass-manpages"
- elog
+ readme.gentoo_print_elog
+ if ! has_version app-portage/eclass-manpages; then
+ elog "The offline version of the devmanual does not include the"
+ elog "documentation for the eclasses. If you need it, then emerge"
+ elog "the following package:"
+ elog
+ elog "app-portage/eclass-manpages"
+ elog
+ fi
}