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/uthash: uthash-1.9.5.ebuild ChangeLog
Date: Sat, 26 Nov 2011 16:32:17
Message-Id: 20111126163208.78C3C2004B@flycatcher.gentoo.org
1 hwoarang 11/11/26 16:32:08
2
3 Modified: ChangeLog
4 Added: uthash-1.9.5.ebuild
5 Log:
6 version bump. Thanks to Johan Bergström
7
8 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-libs/uthash/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 14 Nov 2011 18:54:00 -0000 1.1
24 +++ ChangeLog 26 Nov 2011 16:32:08 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/uthash
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v 1.1 2011/11/14 18:54:00 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v 1.2 2011/11/26 16:32:08 hwoarang Exp $
30 +
31 +*uthash-1.9.5 (26 Nov 2011)
32 +
33 + 26 Nov 2011; Markos Chandras <hwoarang@g.o> +uthash-1.9.5.ebuild:
34 + version bump. Thanks to Johan Bergström
35
36 *uthash-1.9.4 (14 Nov 2011)
37
38
39
40
41 1.1 dev-libs/uthash/uthash-1.9.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/uthash-1.9.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/uthash-1.9.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: uthash-1.9.5.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/uthash-1.9.5.ebuild,v 1.1 2011/11/26 16:32:08 hwoarang Exp $
51
52 inherit toolchain-funcs
53
54 DESCRIPTION="An easy-to-use hash implementation for C programmers"
55 HOMEPAGE="http://uthash.sourceforge.net"
56 SRC_URI="mirror://sourceforge/uthash/${P}.tar.bz2"
57
58 LICENSE="BSD-1"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 IUSE="test"
62
63 DEPEND="test? ( dev-lang/perl )"
64 RDEPEND=""
65
66 src_test() {
67 cd tests
68 sed -i "/CFLAGS/s/-O3/${CFLAGS}/" Makefile || die "sed cflags failed"
69 emake CC="$(tc-getCC)" || die "emake failed"
70 }
71
72 src_install() {
73 insinto /usr/include
74 doins src/*.h || die "doins failed"
75
76 dodoc doc/txt/{ChangeLog,userguide,ut*}.txt || die "dodoc failed"
77 }