summaryrefslogtreecommitdiff
blob: 33b911319375ac8fc3cc07914de01192d1e7bbfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit toolchain-funcs multilib-minimal

DESCRIPTION="Compat library for functions like strlcpy(), strlcat(), strnlen(), getline()"
HOMEPAGE="http://ohnopub.net/~ohnobinki/libstrl/"
SRC_URI="http://mirror.ohnopub.net/mirror/${P}.tar.bz2"

LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x64-macos"
IUSE="doc static-libs test"
RESTRICT="!test? ( test )"

DEPEND="
	doc? ( app-doc/doxygen )
	test? ( dev-libs/check )
"

src_prepare() {
	default
	multilib_copy_sources
}

multilib_src_configure() {
	tc-export AR
	econf \
		$(use_enable static-libs static) \
		$(use_with doc doxygen) \
		$(use_with test check)
}