Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunistring/
Date: Tue, 24 Jan 2017 09:57:50
Message-Id: 1485251852.76b5e49b87f29e2efa18a713493ed5b4e6325ec4.grobian@gentoo
1 commit: 76b5e49b87f29e2efa18a713493ed5b4e6325ec4
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 24 09:47:00 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 24 09:57:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76b5e49b
7
8 dev-libs/libunistring: marked *-macos, *-solaris
9
10 Package-Manager: portage-2.3.0
11
12 dev-libs/libunistring/libunistring-0.9.7.ebuild | 11 ++++++++---
13 1 file changed, 8 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-libs/libunistring/libunistring-0.9.7.ebuild b/dev-libs/libunistring/libunistring-0.9.7.ebuild
16 index 0c3abab..88b5623 100644
17 --- a/dev-libs/libunistring/libunistring-0.9.7.ebuild
18 +++ b/dev-libs/libunistring/libunistring-0.9.7.ebuild
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2016 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 EAPI=6
26
27 -inherit eutils multilib-minimal
28 +inherit eutils multilib-minimal libtool
29
30 DESCRIPTION="Library for manipulating Unicode strings and C strings according to the Unicode standard"
31 HOMEPAGE="https://www.gnu.org/software/libunistring/"
32 @@ -12,13 +12,18 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
33
34 LICENSE="LGPL-3 GPL-3"
35 SLOT="0/2"
36 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux"
37 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
38 IUSE="doc static-libs"
39
40 PATCHES=(
41 "${FILESDIR}"/${PN}-nodocs.patch
42 )
43
44 +src_prepare() {
45 + default
46 + elibtoolize # for Solaris shared libraries
47 +}
48 +
49 multilib_src_configure() {
50 ECONF_SOURCE="${S}" \
51 econf $(use_enable static-libs static)