Lines 13-19
Link Here
|
13 |
LICENSE="|| ( MPL-1.0 LGPL-2.1 )" |
13 |
LICENSE="|| ( MPL-1.0 LGPL-2.1 )" |
14 |
SLOT="0/1" |
14 |
SLOT="0/1" |
15 |
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" |
15 |
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" |
16 |
IUSE="doc examples introspection static-libs" |
16 |
IUSE="doc elibc_uclibc examples introspection static-libs" |
17 |
|
17 |
|
18 |
RDEPEND="introspection? ( dev-libs/gobject-introspection )" |
18 |
RDEPEND="introspection? ( dev-libs/gobject-introspection )" |
19 |
DEPEND="${RDEPEND} |
19 |
DEPEND="${RDEPEND} |
Lines 24-32
Link Here
|
24 |
doc/{AddingOrModifyingComponents,UsingLibical}.txt |
24 |
doc/{AddingOrModifyingComponents,UsingLibical}.txt |
25 |
) |
25 |
) |
26 |
|
26 |
|
|
|
27 |
src_prepare() { |
28 |
epatch "${FILESDIR}/${P}-tests.patch" |
29 |
} |
30 |
|
27 |
src_configure() { |
31 |
src_configure() { |
28 |
local mycmakeargs=( $(cmake-utils_use introspection GOBJECT_INTROSPECTION) ) |
32 |
local mycmakeargs=( $(cmake-utils_use introspection GOBJECT_INTROSPECTION) ) |
29 |
use static-libs || mycmakeargs+=( -DSHARED_ONLY=ON ) |
33 |
use static-libs || mycmakeargs+=( -DSHARED_ONLY=ON ) |
|
|
34 |
use elibc_uclibc && mycmakeargs+=( -DUSE_BUILTIN_TZDATA=ON ) |
30 |
cmake-utils_src_configure |
35 |
cmake-utils_src_configure |
31 |
} |
36 |
} |
32 |
|
37 |
|