aboutsummaryrefslogtreecommitdiff
blob: ef6c8742e144ce928da3b31bedfc4951a6a041b2 (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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=6

DESCRIPTION="A library that allows to determine at runtime what functions to call"
HOMEPAGE="http://www.dyncall.org"
SRC_URI="http://www.dyncall.org/r${PV}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

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

src_configure() {
	# This is a simple shell-script that doesn't play nice with econf
	./configure --prefix="${D}/usr" || die
}

src_test() {
	emake tests
	emake run-tests
}