Gentoo Archives: gentoo-commits

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ustr: ustr-1.0.4-r5.ebuild ChangeLog
Date: Mon, 02 Jun 2014 19:17:58
Message-Id: 20140602191753.5E2562004E@flycatcher.gentoo.org
1 swift 14/06/02 19:17:53
2
3 Modified: ChangeLog
4 Added: ustr-1.0.4-r5.ebuild
5 Log:
6 Update multilib support in ustr with many thanks to Arfrever
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)
9
10 Revision Changes Path
11 1.15 dev-libs/ustr/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 30 May 2014 13:59:12 -0000 1.14
24 +++ ChangeLog 2 Jun 2014 19:17:53 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/ustr
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.14 2014/05/30 13:59:12 swift Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.15 2014/06/02 19:17:53 swift Exp $
30 +
31 +*ustr-1.0.4-r5 (02 Jun 2014)
32 +
33 + 02 Jun 2014; Sven Vermeulen <swift@g.o> +ustr-1.0.4-r5.ebuild:
34 + Update multilib support in ustr with many thanks to Arfrever
35
36 *ustr-1.0.4-r4 (30 May 2014)
37
38
39
40
41 1.1 dev-libs/ustr/ustr-1.0.4-r5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ustr-1.0.4-r5.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r5.ebuild,v 1.1 2014/06/02 19:17:53 swift Exp $
51
52 EAPI=5
53
54 inherit toolchain-funcs multilib-minimal
55
56 DESCRIPTION="Low-overhead managed string library for C"
57 HOMEPAGE="http://www.and.org/ustr"
58 SRC_URI="ftp://ftp.and.org/pub/james/ustr/${PV}/${P}.tar.bz2"
59
60 LICENSE="|| ( BSD-2 MIT LGPL-2 )"
61 SLOT="0"
62 KEYWORDS="~amd64 ~arm ~mips ~x86"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND=""
67
68 DOCS=(ChangeLog README README-DEVELOPERS AUTHORS NEWS TODO)
69
70 MULTILIB_WRAPPED_HEADERS=(
71 /usr/include/ustr-conf.h
72 /usr/include/ustr-conf-debug.h
73 )
74
75 src_prepare() {
76 multilib_copy_sources
77 }
78
79 multilib_src_compile() {
80 emake \
81 AR="$(tc-getAR)" \
82 CC="$(tc-getCC)" \
83 CFLAGS="${CFLAGS}" \
84 LDFLAGS="${LDFLAGS}" \
85 prefix="${EPREFIX}/usr" \
86 SHRDIR="/usr/share/${P}" \
87 HIDE= \
88 all-shared
89 }
90
91 multilib_src_install() {
92 emake \
93 DESTDIR="${D}" \
94 prefix="${EPREFIX}/usr" \
95 libdir="${EPREFIX}/usr/$(get_libdir)" \
96 mandir="/usr/share/man" \
97 SHRDIR="/usr/share/${P}" \
98 DOCSHRDIR="/usr/share/doc/${PF}" \
99 HIDE= \
100 install
101 }
102
103 multilib_src_test() {
104 emake \
105 AR="$(tc-getAR)" \
106 CC="$(tc-getCC)" \
107 CFLAGS="${CFLAGS}" \
108 LDFLAGS="${LDFLAGS}" \
109 prefix="${EPREFIX}/usr" \
110 SHRDIR="/usr/share/${P}" \
111 HIDE= \
112 check
113 }