diff options
author | Nils Freydank <holgersson@posteo.de> | 2020-03-02 23:24:41 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-16 22:25:44 +0100 |
commit | 54998eaa4f10c368088a3f5a8dabe98617153e89 (patch) | |
tree | 234ee13e2f6747a12124260b129285a6ded46721 /dev-libs/liborcus | |
parent | dev-libs/libixion: Bump to 0.15.0 (diff) | |
download | gentoo-54998eaa4f10c368088a3f5a8dabe98617153e89.tar.gz gentoo-54998eaa4f10c368088a3f5a8dabe98617153e89.tar.bz2 gentoo-54998eaa4f10c368088a3f5a8dabe98617153e89.zip |
dev-libs/liborcus: 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/liborcus')
-rw-r--r-- | dev-libs/liborcus/liborcus-9999.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/dev-libs/liborcus/liborcus-9999.ebuild b/dev-libs/liborcus/liborcus-9999.ebuild index f5373a258060..91bbf3019d27 100644 --- a/dev-libs/liborcus/liborcus-9999.ebuild +++ b/dev-libs/liborcus/liborcus-9999.ebuild @@ -39,16 +39,18 @@ pkg_setup() { src_prepare() { default - [[ ${PV} == 9999 ]] && eautoreconf + [[ ${PV} == *9999 ]] && eautoreconf } src_configure() { - econf \ - --disable-werror \ - $(use_enable python) \ - $(use_enable spreadsheet-model) \ - $(use_enable static-libs static) \ + local myeconfargs=( + --disable-werror + $(use_enable python) + $(use_enable spreadsheet-model) + $(use_enable static-libs static) $(use_with tools) + ) + econf "${myeconfargs[@]}" } src_install() { |