Gentoo Archives: gentoo-commits

From: "Rafael Martins (rafaelmartins)" <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/fossil: fossil-20101101142335.ebuild ChangeLog
Date: Tue, 02 Nov 2010 06:35:07
Message-Id: 20101102063458.202C720051@flycatcher.gentoo.org
1 rafaelmartins 10/11/02 06:34:58
2
3 Modified: ChangeLog
4 Added: fossil-20101101142335.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 dev-vcs/fossil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 20 Oct 2010 05:31:21 -0000 1.5
24 +++ ChangeLog 2 Nov 2010 06:34:58 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-vcs/fossil
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v 1.5 2010/10/20 05:31:21 rafaelmartins Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v 1.6 2010/11/02 06:34:58 rafaelmartins Exp $
30 +
31 +*fossil-20101101142335 (02 Nov 2010)
32 +
33 + 02 Nov 2010; Rafael G. Martins <rafaelmartins@g.o>
34 + +files/20101101142335-gentoo.patch, +fossil-20101101142335.ebuild:
35 + Version bump.
36
37 20 Oct 2010; Rafael G. Martins <rafaelmartins@g.o>
38 fossil-20100918155143.ebuild, fossil-20101005035549.ebuild:
39
40
41
42 1.1 dev-vcs/fossil/fossil-20101101142335.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/fossil-20101101142335.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/fossil-20101101142335.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fossil-20101101142335.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/fossil-20101101142335.ebuild,v 1.1 2010/11/02 06:34:58 rafaelmartins Exp $
52
53 EAPI="2"
54
55 inherit eutils toolchain-funcs
56
57 MY_P="${PN}-src-${PV}"
58
59 DESCRIPTION="simple, high-reliability, distributed software configuration management"
60 HOMEPAGE="http://www.fossil-scm.org/"
61 SRC_URI="http://www.fossil-scm.org/download/${MY_P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 DEPEND=">=dev-db/sqlite-3.7.0
69 dev-libs/openssl
70 sys-libs/zlib"
71 RDEPEND="${DEPEND}"
72
73 S="${WORKDIR}/${MY_P}"
74
75 src_prepare() {
76 epatch "${FILESDIR}/${PV}-gentoo.patch"
77 sed -i \
78 -e "/^TCC *=/s:=.*:=$(tc-getCC) -Wall \$(CFLAGS) \$(CPPFLAGS):" \
79 -e "/^BCC/s:gcc:$(tc-getBUILD_CC):" \
80 Makefile || die 'sed failed.'
81 }
82
83 src_install() {
84 dobin fossil || die 'dobin failed.'
85 dodoc ci_cvs.txt ci_fossil.txt cvs2fossil.txt || die 'dodoc failed.'
86 }