Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/boolstuff: ChangeLog boolstuff-0.1.13.ebuild
Date: Thu, 29 Apr 2010 07:40:18
Message-Id: 20100429074015.081772C04C@corvid.gentoo.org
1 hwoarang 10/04/29 07:40:14
2
3 Modified: ChangeLog
4 Added: boolstuff-0.1.13.ebuild
5 Log:
6 Version bump. Fixes bug #317169
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 dev-libs/boolstuff/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boolstuff/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boolstuff/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boolstuff/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boolstuff/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 23 Nov 2009 20:10:33 -0000 1.4
23 +++ ChangeLog 29 Apr 2010 07:40:14 -0000 1.5
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-libs/boolstuff
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boolstuff/ChangeLog,v 1.4 2009/11/23 20:10:33 hwoarang Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boolstuff/ChangeLog,v 1.5 2010/04/29 07:40:14 hwoarang Exp $
30 +
31 +*boolstuff-0.1.13 (29 Apr 2010)
32 +
33 + 29 Apr 2010; Markos Chandras <hwoarang@g.o>
34 + +boolstuff-0.1.13.ebuild:
35 + Version bump. Fixes bug #317169. Thanks to Tim Harder
36 + <radhermit@×××××.com> for the ebuild
37
38 *boolstuff-0.1.12-r2 (23 Nov 2009)
39
40
41
42
43 1.1 dev-libs/boolstuff/boolstuff-0.1.13.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boolstuff/boolstuff-0.1.13.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boolstuff/boolstuff-0.1.13.ebuild?rev=1.1&content-type=text/plain
47
48 Index: boolstuff-0.1.13.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/boolstuff/boolstuff-0.1.13.ebuild,v 1.1 2010/04/29 07:40:14 hwoarang Exp $
53
54 EAPI="2"
55
56 inherit autotools
57
58 DESCRIPTION="A C++ library that supports a few operations on boolean expression binary trees."
59 HOMEPAGE="http://perso.b2b2c.ca/sarrazip/dev/boolstuff.html"
60 SRC_URI="http://perso.b2b2c.ca/sarrazip/dev/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="static"
66
67 src_prepare(){
68 #fix documentation installation
69 sed -i "s/doc\/\$(PACKAGE)-\$(VERSION)/doc\/${PF}/" \
70 Makefile.am || die "failed to fix docdir"
71 eautoreconf
72
73 }
74
75 src_configure(){
76 econf $(use_enable static)
77 }
78
79 src_install () {
80 emake DESTDIR="${D}" install || die "install failed"
81 }