aboutsummaryrefslogtreecommitdiff
blob: 9fad1cafad0b71304da342432fc99a653e631a14 (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit autotools

DESCRIPTION="library to parse and evaluate symbolic expressions"
HOMEPAGE="https://www.gnu.org/software/libmatheval/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"

PATCHES=( "${FILESDIR}"/"${P}"_update_configure.ac.patch  )

src_prepare() {
	# rename configure.in -> configure.ac for Q/A
	mv configure.in configure.ac || die
	# patch configure.ac
	default
	# remove test subdirectory depends on masked guile-1*
	# Bug: https://bugs.gentoo.org/755353
	sed -e 's/SUBDIRS = doc lib tests/SUBDIRS = doc lib/' -i Makefile.am || die
	eautoreconf
}

src_configure() {
	econf $(use_enable static-libs static)
}