diff options
author | David Seifert <soap@gentoo.org> | 2022-06-19 20:50:43 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-06-19 20:50:43 +0200 |
commit | 934e63ef21285f9ae9ee1089d36e0b0360e01c09 (patch) | |
tree | 6cde49ba4bdd0f59754dc4ff2326694615bd8789 /dev-libs | |
parent | dev-libs/librevenge: update EAPI 6 -> 8 (diff) | |
download | gentoo-934e63ef21285f9ae9ee1089d36e0b0360e01c09.tar.gz gentoo-934e63ef21285f9ae9ee1089d36e0b0360e01c09.tar.bz2 gentoo-934e63ef21285f9ae9ee1089d36e0b0360e01c09.zip |
dev-libs/librevenge: sync live ebuild
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/librevenge/librevenge-9999.ebuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/dev-libs/librevenge/librevenge-9999.ebuild b/dev-libs/librevenge/librevenge-9999.ebuild index eff06c57664d..1507cf6e091a 100644 --- a/dev-libs/librevenge/librevenge-9999.ebuild +++ b/dev-libs/librevenge/librevenge-9999.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit flag-o-matic multilib-minimal +inherit multilib-minimal -if [[ ${PV} == *9999* ]] ; then +if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="https://git.code.sf.net/p/libwpd/librevenge" inherit git-r3 autotools else @@ -19,19 +19,17 @@ HOMEPAGE="https://sf.net/p/libwpd/librevenge" LICENSE="|| ( MPL-2.0 LGPL-2.1 )" SLOT="0" IUSE="doc test" - RESTRICT="!test? ( test )" RDEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} dev-libs/boost - test? ( dev-util/cppunit[${MULTILIB_USEDEP}] ) -" + test? ( dev-util/cppunit[${MULTILIB_USEDEP}] )" BDEPEND="doc? ( app-doc/doxygen )" src_prepare() { default - [[ ${PV} == *9999* ]] && eautoreconf + [[ ${PV} == *9999 ]] && eautoreconf } multilib_src_configure() { @@ -45,5 +43,5 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs - find "${D}" -name '*.la' -type f -delete || die + find "${ED}" -name '*.la' -type f -delete || die } |