mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
42 lines
800 B
Bash
42 lines
800 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Fork of the json-c library, which is optimized for liblognorm processing"
|
|
HOMEPAGE="http://www.rsyslog.com/tag/libfastjson/"
|
|
SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
|
|
LICENSE="MIT"
|
|
SLOT="0/4.0.0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86"
|
|
IUSE="static-libs"
|
|
|
|
DEPEND=">=sys-devel/autoconf-archive-2015.02.24"
|
|
RDEPEND=""
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--enable-compile-warnings=yes
|
|
$(use_enable static-libs static)
|
|
--disable-rdrand
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
local DOCS=( AUTHORS ChangeLog )
|
|
default
|
|
|
|
find "${ED}"usr/lib* -name '*.la' -delete || die
|
|
}
|