Gentoo Archives: gentoo-commits

From: "PaweA Hajdan (phajdan.jr)" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/bcpp: bcpp-20090630.ebuild ChangeLog
Date: Thu, 01 Jul 2010 17:14:01
Message-Id: 20100701171359.0A0062C621@corvid.gentoo.org
1 phajdan.jr 10/07/01 17:13:58
2
3 Modified: ChangeLog
4 Added: bcpp-20090630.ebuild
5 Log:
6 Version bump wrt bug #325481 by Nicolas Kaiser <nikai@×××××.net>
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.15 dev-util/bcpp/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bcpp/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bcpp/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bcpp/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/bcpp/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 15 Jan 2010 21:17:31 -0000 1.14
23 +++ ChangeLog 1 Jul 2010 17:13:58 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/bcpp
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/bcpp/ChangeLog,v 1.14 2010/01/15 21:17:31 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/bcpp/ChangeLog,v 1.15 2010/07/01 17:13:58 phajdan.jr Exp $
29 +
30 +*bcpp-20090630 (01 Jul 2010)
31 +
32 + 01 Jul 2010; Pawel Hajdan jr <phajdan.jr@g.o>
33 + +bcpp-20090630.ebuild:
34 + Version bump wrt bug #325481 by Nicolas Kaiser <nikai@×××××.net>
35
36 15 Jan 2010; Christian Faulhammer <fauli@g.o> bcpp-20050725.ebuild:
37 Transfer Prefix keywords
38
39
40
41 1.1 dev-util/bcpp/bcpp-20090630.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bcpp/bcpp-20090630.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bcpp/bcpp-20090630.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bcpp-20090630.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/bcpp/bcpp-20090630.ebuild,v 1.1 2010/07/01 17:13:58 phajdan.jr Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 DESCRIPTION="Indents C/C++ source code"
57 HOMEPAGE="http://invisible-island.net/bcpp/"
58 SRC_URI="ftp://invisible-island.net/bcpp/${P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND=""
67
68 src_prepare() {
69 epatch "${FILESDIR}/${PN}-20050725-etc-cfg-files.patch"
70 }
71
72 src_install() {
73 make DESTDIR="${D}" install || die "make install failed"
74 dodoc CHANGES MANIFEST README VERSION txtdocs/hirachy.txt \
75 txtdocs/manual.txt || die "dodoc failed"
76
77 # Install our configuration files.
78 insinto /etc/bcpp
79 doins bcpp.cfg indent.cfg || die "doins failed"
80 }
81
82 pkg_postinst() {
83 elog "Check the documentation for more information on how to"
84 elog "Run bcpp. Please note that in order to get help for"
85 elog "bcpp, please run bcpp -h and not the command by itself."
86 elog ""
87 elog "Configuration files are at /etc/bcpp."
88 elog "To use them, use the -c option followed by the filename."
89 }