Gentoo Archives: gentoo-commits

From: "Chris PeBenito (pebenito)" <pebenito@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ustr: ChangeLog ustr-1.0.4-r1.ebuild
Date: Sun, 02 Aug 2009 04:42:40
Message-Id: E1MXSu5-0007At-94@stork.gentoo.org
1 pebenito 09/08/02 04:42:37
2
3 Modified: ChangeLog
4 Added: ustr-1.0.4-r1.ebuild
5 Log:
6 Fix bugs #240230, #241280, and #243954.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-libs/ustr/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/ustr/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 22 Jul 2009 13:24:12 -0000 1.2
23 +++ ChangeLog 2 Aug 2009 04:42:37 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/ustr
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.2 2009/07/22 13:24:12 pebenito Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.3 2009/08/02 04:42:37 pebenito Exp $
29 +
30 +*ustr-1.0.4-r1 (02 Aug 2009)
31 +
32 + 02 Aug 2009; Chris PeBenito <pebenito@g.o> +ustr-1.0.4-r1.ebuild:
33 + Fix bugs #240230, #241280, and #243954.
34
35 22 Jul 2009; Chris PeBenito <pebenito@g.o> ustr-1.0.4.ebuild:
36 Mark stable. Remove old ebuilds.
37
38
39
40 1.1 dev-libs/ustr/ustr-1.0.4-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ustr-1.0.4-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild,v 1.1 2009/08/02 04:42:37 pebenito Exp $
50
51 inherit eutils
52
53 DESCRIPTION="Low-overhead managed string library for C"
54 HOMEPAGE="http://www.and.org/ustr"
55 SRC_URI="ftp://ftp.and.org/pub/james/ustr/${PV}/${P}.tar.bz2"
56
57 LICENSE="|| ( BSD-2 MIT LGPL-2 )"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE=""
61
62 src_compile() {
63 make CC="$(tc-getCC)" CFLAGS="${CFLAGS}" HIDE= all-shared || die
64 }
65
66 src_install() {
67 emake install DESTDIR="${D}" HIDE= \
68 mandir="/usr/share/man" \
69 SHRDIR="/usr/share/doc/${PF}" \
70 DOCSHRDIR="/usr/share/doc/${PF}" || die
71 dodoc ChangeLog README README-DEVELOPERS AUTHORS NEWS TODO
72 }