aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/gentoo/librb-1.0.0.ebuild
blob: 8d6aae2f4df813131d90bf8a4dd2500f496965f4 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit autotools

DESCRIPTION="ring buffer c library with posix-like read/write interface and thread awarness"
HOMEPAGE="http://librb.kurwinet.pl"
SRC_URI="http://distfiles.kurwinet.pl/${PN}/${P}.tar.gz"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="threads"

DEPEND=""
RDEPEND="${DEPEND}"

src_configure() {
	econf $(use_enable threads threads)
}

src_install() {
	default
}