Lines 1-9
Link Here
|
1 |
# Copyright 1999-2021 Gentoo Authors |
1 |
# Copyright 1999-2021 Gentoo Authors |
2 |
# Distributed under the terms of the GNU General Public License v2 |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
|
3 |
|
4 |
EAPI=6 |
4 |
EAPI=7 |
5 |
|
5 |
|
6 |
inherit eutils multilib-minimal libtool ltprune |
6 |
inherit multilib-minimal libtool |
7 |
|
7 |
|
8 |
DESCRIPTION="Library for manipulating Unicode and C strings according to Unicode standard" |
8 |
DESCRIPTION="Library for manipulating Unicode and C strings according to Unicode standard" |
9 |
HOMEPAGE="https://www.gnu.org/software/libunistring/" |
9 |
HOMEPAGE="https://www.gnu.org/software/libunistring/" |
Lines 28-44
multilib_src_configure() {
Link Here
|
28 |
econf $(use_enable static-libs static) |
28 |
econf $(use_enable static-libs static) |
29 |
} |
29 |
} |
30 |
|
30 |
|
31 |
multilib_src_install() { |
|
|
32 |
default |
33 |
|
34 |
prune_libtool_files |
35 |
} |
36 |
|
37 |
multilib_src_install_all() { |
31 |
multilib_src_install_all() { |
38 |
default |
32 |
default |
39 |
|
33 |
|
40 |
if use doc; then |
34 |
if use doc; then |
41 |
dohtml doc/*.html |
35 |
docinto html |
|
|
36 |
dodoc doc/*.html |
42 |
doinfo doc/*.info |
37 |
doinfo doc/*.info |
43 |
fi |
38 |
fi |
|
|
39 |
|
40 |
find "${ED}" -name '*.la' -delete || die |
44 |
} |
41 |
} |
45 |
- |
|
|