Gentoo Archives: gentoo-commits

From: "Aaron Swenson (titanofold)" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/fossil: ChangeLog fossil-20111213135356.ebuild
Date: Sun, 04 Mar 2012 20:29:47
Message-Id: 20120304202937.BB2B320034@flycatcher.gentoo.org
1 titanofold 12/03/04 20:29:37
2
3 Modified: ChangeLog
4 Added: fossil-20111213135356.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.44/cvs/Linux i686)
9
10 Revision Changes Path
11 1.11 dev-vcs/fossil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 20 Feb 2012 04:29:33 -0000 1.10
24 +++ ChangeLog 4 Mar 2012 20:29:37 -0000 1.11
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-vcs/fossil
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v 1.10 2012/02/20 04:29:33 floppym Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v 1.11 2012/03/04 20:29:37 titanofold Exp $
30 +
31 +*fossil-20111213135356 (04 Mar 2012)
32 +
33 + 04 Mar 2012; Aaron W. Swenson <titanofold@g.o>
34 + +fossil-20111213135356.ebuild:
35 + Version bump.
36
37 20 Feb 2012; Mike Gilbert <floppym@g.o> metadata.xml:
38 Drop no-herd.
39
40
41
42 1.1 dev-vcs/fossil/fossil-20111213135356.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/fossil-20111213135356.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/fossil/fossil-20111213135356.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fossil-20111213135356.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/fossil-20111213135356.ebuild,v 1.1 2012/03/04 20:29:37 titanofold Exp $
52
53 EAPI="4"
54
55 MY_P="${PN}-src-${PV}"
56
57 DESCRIPTION="Simple, high-reliability, distributed software configuration management"
58 HOMEPAGE="http://www.fossil-scm.org/"
59 SRC_URI="http://www.fossil-scm.org/download/${MY_P}.tar.gz"
60
61 LICENSE="BSD-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="sqlite +ssl tcl"
65
66 DEPEND="sys-libs/zlib
67 ssl? ( dev-libs/openssl )
68 sqlite? ( dev-db/sqlite:3 )
69 tcl? ( dev-lang/tcl )
70 "
71
72 RDEPEND="${DEPEND}"
73
74 S="${WORKDIR}/${MY_P}"
75
76 src_configure() {
77 # --with-tcl: works
78 # --without-tcl: dies
79 local myconf='--with-openssl='
80 use ssl && myconf+='auto' || myconf+='none'
81 use sqlite && myconf+=' --disable-internal-sqlite'
82 use tcl && myconf+=' --with-tcl'
83 econf ${myconf}
84 }
85
86 src_install() {
87 dobin fossil
88 }