diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-14 18:56:22 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-14 18:58:59 +0100 |
commit | 002382d72ade36880aab165f52d0196653a73b01 (patch) | |
tree | 99daeed924257e0567c5bafa57e4b5e9476ff0e5 /media-gfx/icoutils | |
parent | app-emulation/q4wine: 1.3.12 version bump (diff) | |
download | gentoo-002382d72ade36880aab165f52d0196653a73b01.tar.gz gentoo-002382d72ade36880aab165f52d0196653a73b01.tar.bz2 gentoo-002382d72ade36880aab165f52d0196653a73b01.zip |
media-gfx/icoutils: EAPI-7 bump, add missing || die
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/icoutils')
-rw-r--r-- | media-gfx/icoutils/icoutils-0.32.3.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/media-gfx/icoutils/icoutils-0.32.3.ebuild b/media-gfx/icoutils/icoutils-0.32.3.ebuild index eb74cde3dc66..c4b7e5ddf98f 100644 --- a/media-gfx/icoutils/icoutils-0.32.3.ebuild +++ b/media-gfx/icoutils/icoutils-0.32.3.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 + inherit autotools flag-o-matic DESCRIPTION="Tools to extract and convert images in icon and cursor files (.ico, .cur)" @@ -13,6 +14,9 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="nls" +BDEPEND=" + nls? ( sys-devel/gettext ) +" RDEPEND=" >=dev-lang/perl-5.6 >=dev-perl/libwww-perl-5.64 @@ -20,21 +24,16 @@ RDEPEND=" sys-libs/zlib nls? ( virtual/libintl ) " -DEPEND=" - ${RDEPEND} - nls? ( sys-devel/gettext ) -" +DEPEND="${RDEPEND}" DOCS=( AUTHORS ChangeLog NEWS README TODO ) -PATCHES=( - "${FILESDIR}"/${PN}-0.29.1-{locale,gettext}.patch -) +PATCHES=( "${FILESDIR}"/${PN}-0.29.1-{locale,gettext}.patch ) src_prepare() { default rm m4/po.m4* || die - cp /usr/share/aclocal/po.m4 m4/ + cp /usr/share/aclocal/po.m4 m4/ || die AT_M4DIR=m4 eautoreconf } |