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/einit: ChangeLog einit-0.25.0.ebuild
Date: Sat, 06 Oct 2007 17:46:50
Message-Id: E1IeDag-0000rF-Au@stork.gentoo.org
1 vapier 07/10/06 17:37:26
2
3 Modified: ChangeLog
4 Added: einit-0.25.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.3.11)
8
9 Revision Changes Path
10 1.6 sys-apps/einit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 6 Oct 2007 13:27:38 -0000 1.5
23 +++ ChangeLog 6 Oct 2007 17:37:25 -0000 1.6
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/einit
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.5 2007/10/06 13:27:38 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.6 2007/10/06 17:37:25 vapier Exp $
29 +
30 +*einit-0.25.0 (06 Oct 2007)
31 +
32 + 06 Oct 2007; Mike Frysinger <vapier@g.o> +einit-0.25.0.ebuild:
33 + Version bump.
34
35 *einit-0.24.3 (06 Oct 2007)
36
37
38
39
40 1.1 sys-apps/einit/einit-0.25.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.25.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.25.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: einit-0.25.0.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.25.0.ebuild,v 1.1 2007/10/06 17:37:25 vapier Exp $
50
51 inherit multilib
52
53 DESCRIPTION="an alternate /sbin/init"
54 HOMEPAGE="http://einit.org/"
55 SRC_URI="mirror://berlios/einit/${P}.tar.bz2"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~amd64 ~arm ~ppc ~x86"
60 IUSE="doc"
61
62 RDEPEND="dev-libs/expat"
63 DEPEND="${RDEPEND}
64 doc? ( app-text/docbook-sgml app-doc/doxygen )"
65
66 src_compile() {
67 econf \
68 --enable-linux \
69 --use-posix-regex \
70 --prefix=/ \
71 --libdir-name=$(get_libdir) \
72 || die
73 emake || die
74 if use doc ; then
75 emake documentation-html ||die
76 fi
77 }
78
79 src_install() {
80 emake install DESTDIR="${D}" || die
81 dodoc AUTHORS ChangeLog README NEWS TODO
82 doman documentation/man/*
83 if use doc ; then
84 dohtml build/documentation/html/*.html
85 fi
86 }
87
88 pkg_postinst() {
89 einfo "You can always find the latest documentation at"
90 einfo "http://einit.sourceforge.net/documentation/users/"
91 }
92
93
94
95 --
96 gentoo-commits@g.o mailing list