diff options
author | David Seifert <soap@gentoo.org> | 2022-07-26 21:27:10 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-07-26 21:27:10 +0200 |
commit | a3050d0da3cf4976530aa3782391eca839052ffa (patch) | |
tree | dfa05ee404f7c5b684d18f014375f68be3a25076 /app-cdr | |
parent | app-cdr/graveman: update EAPI 6 -> 8 (diff) | |
download | gentoo-a3050d0da3cf4976530aa3782391eca839052ffa.tar.gz gentoo-a3050d0da3cf4976530aa3782391eca839052ffa.tar.bz2 gentoo-a3050d0da3cf4976530aa3782391eca839052ffa.zip |
app-cdr/mirage2iso: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/mirage2iso/mirage2iso-0.4.2-r1.ebuild (renamed from app-cdr/mirage2iso/mirage2iso-0.4.2.ebuild) | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/app-cdr/mirage2iso/mirage2iso-0.4.2.ebuild b/app-cdr/mirage2iso/mirage2iso-0.4.2-r1.ebuild index c1efb10c0087..86120322a7c6 100644 --- a/app-cdr/mirage2iso/mirage2iso-0.4.2.ebuild +++ b/app-cdr/mirage2iso/mirage2iso-0.4.2-r1.ebuild @@ -1,33 +1,28 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="CD/DVD image converter using libmirage" HOMEPAGE="https://github.com/mgorny/mirage2iso/" -SRC_URI="https://github.com/mgorny/${PN}/releases/download/v${PV}/${P}.tar.xz +SRC_URI=" + https://github.com/mgorny/${PN}/releases/download/v${PV}/${P}.tar.xz test? ( https://github.com/mgorny/${PN}/releases/download/v${PV}/${P}-tests.tar.xz )" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" IUSE="pinentry test" +RESTRICT="!test? ( test )" -COMMON_DEPEND=">=dev-libs/libmirage-2.0.0:0= +DEPEND=" + >=dev-libs/libmirage-2.0.0:0= dev-libs/glib:2= pinentry? ( dev-libs/libassuan:0= )" -DEPEND="${COMMON_DEPEND} - app-arch/xz-utils - virtual/pkgconfig" -RDEPEND="${COMMON_DEPEND} +RDEPEND="${DEPEND} pinentry? ( app-crypt/pinentry )" - -RESTRICT="!test? ( test )" +BDEPEND="virtual/pkgconfig" src_configure() { - local myconf=( - $(use_with pinentry libassuan) - ) - - econf "${myconf[@]}" + econf $(use_with pinentry libassuan) } |