Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-doc/heirloom-doctools: ChangeLog heirloom-doctools-080407-r2.ebuild
Date: Fri, 02 Oct 2009 22:19:30
Message-Id: E1MtqTI-0007vw-Jz@stork.gentoo.org
1 flameeyes 09/10/02 22:19:28
2
3 Modified: ChangeLog heirloom-doctools-080407-r2.ebuild
4 Log:
5 Add further warnings about rebuilding the man implementation, add a warning about the use with man-db.
6 (Portage version: 2.2_rc42/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 app-doc/heirloom-doctools/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/heirloom-doctools/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/heirloom-doctools/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/heirloom-doctools/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 2 Oct 2009 21:34:47 -0000 1.3
22 +++ ChangeLog 2 Oct 2009 22:19:28 -0000 1.4
23 @@ -1,6 +1,11 @@
24 # ChangeLog for app-doc/heirloom-doctools
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/ChangeLog,v 1.3 2009/10/02 21:34:47 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/ChangeLog,v 1.4 2009/10/02 22:19:28 flameeyes Exp $
28 +
29 + 02 Oct 2009; Diego E. Pettenò <flameeyes@g.o>
30 + heirloom-doctools-080407-r2.ebuild:
31 + Add further warnings about rebuilding the man implementation, add a
32 + warning about the use with man-db.
33
34 *heirloom-doctools-080407-r2 (02 Oct 2009)
35
36
37
38
39 1.2 app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild?r1=1.1&r2=1.2
44
45 Index: heirloom-doctools-080407-r2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-doc/heirloom-doctools/heirloom-doctools-080407-r2.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- heirloom-doctools-080407-r2.ebuild 2 Oct 2009 21:34:47 -0000 1.1
52 +++ heirloom-doctools-080407-r2.ebuild 2 Oct 2009 22:19:28 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $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 $
57 +# $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 $
58
59 EAPI=2
60
61 @@ -139,6 +139,8 @@
62 }
63
64 pkg_postinst() {
65 + local manpkg
66 +
67 if has_version sys-apps/man; then
68 elog "To make proper use of heirloom-doctools with sys-apps/man you"
69 elog "need to make sure that /etc/man.conf is configured properly with"
70 @@ -154,6 +156,7 @@
71 elog "PIC /usr/bin/pic"
72 elog "VGRIND /usr/bin/vgrind"
73 elog "GRAP /usr/bin/grap"
74 + manpkg=sys-apps/man
75 elif has_version sys-apps/man-db; then
76 elog "To make proper use of heirloom-doctools with sys-apps/man you"
77 elog "need to make sure that /etc/man_db.conf is configured properly with"
78 @@ -169,5 +172,14 @@
79 elog "DEFINE refer refer"
80 elog "DEFINE grap grap"
81 elog "DEFINE pic pic"
82 + elog
83 + ewarn "The compatibility between heirloom-doctools and man-db is pretty limited"
84 + ewarn "you've been warned. Your man pages might look nothing like you were used"
85 + ewarn "to."
86 + manpkg=sys-apps/man-db
87 fi
88 + elog ""
89 + elog "If you just switched from sys-apps/groff, please make sure to rebuild the"
90 + elog "${manpkg} package, since there are build-time conditionals on the nroff"
91 + elog "implementation available."
92 }