summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2009-10-02 22:19:28 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2009-10-02 22:19:28 +0000
commit9b5245d1faae3fbb04c513796ab82426a2200fb8 (patch)
tree15b8f7e9480da36e4883a6e8b6a7d2360a53d8d8 /app-doc
parentFixed desktop file, bug #287212. (diff)
downloadgentoo-2-9b5245d1faae3fbb04c513796ab82426a2200fb8.tar.gz
gentoo-2-9b5245d1faae3fbb04c513796ab82426a2200fb8.tar.bz2
gentoo-2-9b5245d1faae3fbb04c513796ab82426a2200fb8.zip
Add further warnings about rebuilding the man implementation, add a warning about the use with man-db.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'app-doc')
-rw-r--r--app-doc/heirloom-doctools/ChangeLog7
-rw-r--r--app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild14
2 files changed, 19 insertions, 2 deletions
diff --git a/app-doc/heirloom-doctools/ChangeLog b/app-doc/heirloom-doctools/ChangeLog
index 6f7393a15d57..ecbb099bb555 100644
--- a/app-doc/heirloom-doctools/ChangeLog
+++ b/app-doc/heirloom-doctools/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-doc/heirloom-doctools
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/ChangeLog,v 1.3 2009/10/02 21:34:47 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/ChangeLog,v 1.4 2009/10/02 22:19:28 flameeyes Exp $
+
+ 02 Oct 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ heirloom-doctools-080407-r2.ebuild:
+ Add further warnings about rebuilding the man implementation, add a
+ warning about the use with man-db.
*heirloom-doctools-080407-r2 (02 Oct 2009)
diff --git a/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild b/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild
index 3671f5680010..5dd436364107 100644
--- a/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild
+++ b/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild,v 1.1 2009/10/02 21:34:47 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild,v 1.2 2009/10/02 22:19:28 flameeyes Exp $
EAPI=2
@@ -139,6 +139,8 @@ src_install() {
}
pkg_postinst() {
+ local manpkg
+
if has_version sys-apps/man; then
elog "To make proper use of heirloom-doctools with sys-apps/man you"
elog "need to make sure that /etc/man.conf is configured properly with"
@@ -154,6 +156,7 @@ pkg_postinst() {
elog "PIC /usr/bin/pic"
elog "VGRIND /usr/bin/vgrind"
elog "GRAP /usr/bin/grap"
+ manpkg=sys-apps/man
elif has_version sys-apps/man-db; then
elog "To make proper use of heirloom-doctools with sys-apps/man you"
elog "need to make sure that /etc/man_db.conf is configured properly with"
@@ -169,5 +172,14 @@ pkg_postinst() {
elog "DEFINE refer refer"
elog "DEFINE grap grap"
elog "DEFINE pic pic"
+ elog
+ ewarn "The compatibility between heirloom-doctools and man-db is pretty limited"
+ ewarn "you've been warned. Your man pages might look nothing like you were used"
+ ewarn "to."
+ manpkg=sys-apps/man-db
fi
+ elog ""
+ elog "If you just switched from sys-apps/groff, please make sure to rebuild the"
+ elog "${manpkg} package, since there are build-time conditionals on the nroff"
+ elog "implementation available."
}