diff options
author | Matthias Maier <tamiko@gentoo.org> | 2020-03-14 16:17:58 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2020-03-14 16:43:56 -0500 |
commit | d147dd05f0c3afc43709177987d43bef2e7fee65 (patch) | |
tree | c305c4c4c25846c75c03ae8bb77ff2038856ce6b /app-emulation | |
parent | app-emulation/spice-html5: version bump to 0.2.2 (diff) | |
download | gentoo-d147dd05f0c3afc43709177987d43bef2e7fee65.tar.gz gentoo-d147dd05f0c3afc43709177987d43bef2e7fee65.tar.bz2 gentoo-d147dd05f0c3afc43709177987d43bef2e7fee65.zip |
app-emulation/spice-protocol: port live ebuild to meson
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Matthias Maier <tamiko@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/spice-protocol/spice-protocol-9999.ebuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/app-emulation/spice-protocol/spice-protocol-9999.ebuild b/app-emulation/spice-protocol/spice-protocol-9999.ebuild index 781224a6a4c7..a2dc0bc3006d 100644 --- a/app-emulation/spice-protocol/spice-protocol-9999.ebuild +++ b/app-emulation/spice-protocol/spice-protocol-9999.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit meson + if [[ ${PV} = *9999* ]]; then - inherit git-r3 autotools + inherit git-r3 EGIT_REPO_URI="https://anongit.freedesktop.org/git/spice/spice-protocol.git" SRC_URI="" KEYWORDS="" @@ -22,8 +24,3 @@ IUSE="" DEPEND="" RDEPEND="${DEPEND}" - -src_prepare() { - [[ ${PV} = *9999* ]] && eautoreconf - default -} |