Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/man-pages: ChangeLog man-pages-3.01-r1.ebuild
Date: Mon, 30 Jun 2008 20:46:08
Message-Id: E1KDQG9-0001mc-TI@stork.gentoo.org
1 cardoe 08/06/30 20:46:01
2
3 Modified: ChangeLog
4 Added: man-pages-3.01-r1.ebuild
5 Log:
6 add the ability to allow Gentoo to provide extra man pages and also override some man pages from the defaults
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r5 x86_64)
8
9 Revision Changes Path
10 1.111 sys-apps/man-pages/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.111&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.111&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-pages/ChangeLog?r1=1.110&r2=1.111
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v
19 retrieving revision 1.110
20 retrieving revision 1.111
21 diff -u -r1.110 -r1.111
22 --- ChangeLog 28 Jun 2008 16:21:14 -0000 1.110
23 +++ ChangeLog 30 Jun 2008 20:46:01 -0000 1.111
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-apps/man-pages
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.110 2008/06/28 16:21:14 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.111 2008/06/30 20:46:01 cardoe Exp $
29 +
30 +*man-pages-3.01-r1 (30 Jun 2008)
31 +
32 + 30 Jun 2008; Doug Goldstein <cardoe@g.o> +man-pages-3.01-r1.ebuild:
33 + add the ability to allow Gentoo to provide extra man pages and also
34 + override some man pages from the defaults
35
36 *man-pages-3.01 (28 Jun 2008)
37
38
39
40
41 1.1 sys-apps/man-pages/man-pages-3.01-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-pages/man-pages-3.01-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-pages/man-pages-3.01-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: man-pages-3.01-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-3.01-r1.ebuild,v 1.1 2008/06/30 20:46:01 cardoe Exp $
51
52 GENTOO_PATCH=1
53
54 DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
55 HOMEPAGE="http://www.win.tue.nl/~aeb/linux/man/"
56 SRC_URI="mirror://kernel/linux/docs/manpages/${P}.tar.bz2
57 mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
58 http://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
59
60 LICENSE="freedist"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63 IUSE="nls linguas_cs linguas_da linguas_de linguas_es linguas_fr linguas_it
64 linguas_ja linguas_nl linguas_pl linguas_ro linguas_ru linguas_zh_CN"
65 RESTRICT="binchecks"
66
67 RDEPEND="virtual/man"
68 PDEPEND="nls? (
69 linguas_cs? ( app-i18n/man-pages-cs )
70 linguas_da? ( app-i18n/man-pages-da )
71 linguas_de? ( app-i18n/man-pages-de )
72 linguas_es? ( app-i18n/man-pages-es )
73 linguas_fr? ( app-i18n/man-pages-fr )
74 linguas_it? ( app-i18n/man-pages-it )
75 linguas_ja? ( app-i18n/man-pages-ja )
76 linguas_nl? ( app-i18n/man-pages-nl )
77 linguas_pl? ( app-i18n/man-pages-pl )
78 linguas_ro? ( app-i18n/man-pages-ro )
79 linguas_ru? ( app-i18n/man-pages-ru )
80 linguas_zh_CN? ( app-i18n/man-pages-zh_CN )
81 )
82 sys-apps/man-pages-posix"
83
84 src_compile() { :; }
85
86 src_install() {
87 emake install DESTDIR="${D}" || die
88 dodoc man-pages-*.Announce README Changes*
89
90 # Override with Gentoo specific or additional Gentoo pages
91 cd ../man-pages-gentoo/
92 emake install DESTDIR="${D}" || die
93 }
94
95 pkg_postinst() {
96 einfo "If you don't have a makewhatis cronjob, then you"
97 einfo "should update the whatis database yourself:"
98 einfo " # makewhatis -u"
99 }
100
101
102
103 --
104 gentoo-commits@l.g.o mailing list