Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/man-db: ChangeLog man-db-2.5.1.ebuild
Date: Sun, 24 Feb 2008 18:25:53
Message-Id: E1JTLXo-000736-9D@stork.gentoo.org
1 vapier 08/02/24 18:25:48
2
3 Modified: ChangeLog
4 Added: man-db-2.5.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_pre2)
8
9 Revision Changes Path
10 1.4 sys-apps/man-db/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-db/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-db/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-db/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/man-db/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 13 Apr 2007 10:19:41 -0000 1.3
23 +++ ChangeLog 24 Feb 2008 18:25:47 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/man-db
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-db/ChangeLog,v 1.3 2007/04/13 10:19:41 vapier Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-db/ChangeLog,v 1.4 2008/02/24 18:25:47 vapier Exp $
30 +
31 +*man-db-2.5.1 (24 Feb 2008)
32 +
33 + 24 Feb 2008; Mike Frysinger <vapier@g.o> +man-db-2.5.1.ebuild:
34 + Version bump.
35
36 *man-db-2.4.4 (13 Apr 2007)
37
38
39
40
41 1.1 sys-apps/man-db/man-db-2.5.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-db/man-db-2.5.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/man-db/man-db-2.5.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: man-db-2.5.1.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-db/man-db-2.5.1.ebuild,v 1.1 2008/02/24 18:25:47 vapier Exp $
51
52 inherit eutils
53
54 DESCRIPTION="a man replacement that utilizes berkdb instead of flat files"
55 HOMEPAGE="http://www.nongnu.org/man-db/"
56 SRC_URI="http://download.savannah.nongnu.org/releases/man-db/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
61 IUSE="nls"
62
63 DEPEND="nls? ( sys-devel/gettext )
64 sys-libs/db"
65 RDEPEND="sys-libs/db
66 !sys-apps/man"
67 PROVIDE="virtual/man"
68
69 pkg_setup() {
70 enewgroup man 15
71 enewuser man 13 -1 /usr/share/man man
72 }
73
74 src_compile() {
75 econf \
76 --with-sections="1 1p 8 2 3 3p 4 5 6 7 9 0p tcl n l p o 1x 2x 3x 4x 5x 6x 7x 8x" \
77 $(use_enable nls) \
78 || die
79 emake || die
80 }
81
82 src_install() {
83 emake install DESTDIR="${D}" || die
84 dodoc README docs/{ChangeLog,HACKING,NEWS,TODO}
85 }
86
87
88
89 --
90 gentoo-commits@l.g.o mailing list