diff options
author | Nils Freydank <holgersson@posteo.de> | 2020-03-02 23:24:34 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-16 22:25:43 +0100 |
commit | aba42a26f32c730e74b62f16e34983be4b14ebce (patch) | |
tree | 19d621aceb8888f6a1ef296cf7b65f0abb7d3b22 /dev-libs/libixion | |
parent | dev-util/mdds: Update live ebuild (diff) | |
download | gentoo-aba42a26f32c730e74b62f16e34983be4b14ebce.tar.gz gentoo-aba42a26f32c730e74b62f16e34983be4b14ebce.tar.bz2 gentoo-aba42a26f32c730e74b62f16e34983be4b14ebce.zip |
dev-libs/libixion: Update live ebuild
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Nils Freydank <holgersson@posteo.de>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/libixion')
-rw-r--r-- | dev-libs/libixion/libixion-9999.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/dev-libs/libixion/libixion-9999.ebuild b/dev-libs/libixion/libixion-9999.ebuild index f52b1d4a22b5..741d54be08e4 100644 --- a/dev-libs/libixion/libixion-9999.ebuild +++ b/dev-libs/libixion/libixion-9999.ebuild @@ -9,7 +9,7 @@ inherit python-single-r1 DESCRIPTION="General purpose formula parser & interpreter" HOMEPAGE="https://gitlab.com/ixion/ixion" -if [[ ${PV} == 9999 ]]; then +if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://gitlab.com/ixion/ixion.git" inherit git-r3 autotools else @@ -38,15 +38,17 @@ pkg_setup() { src_prepare() { default - [[ ${PV} == 9999 ]] && eautoreconf + [[ ${PV} == *9999 ]] && eautoreconf } src_configure() { - econf \ - $(use_enable debug) \ - $(use_enable python) \ - $(use_enable static-libs static) \ + local myeconfargs=( + $(use_enable debug) + $(use_enable python) + $(use_enable static-libs static) $(use_enable threads) + ) + econf "${myeconfargs[@]}" } src_install() { |