diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2022-07-14 13:48:10 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2022-07-14 13:49:13 +0200 |
commit | 4b40373172058a4475a81a492e5808060a5dbc6f (patch) | |
tree | b6ac5a4268c2697c6db509e8e914019bb804a82b /gnustep-base | |
parent | gnustep-base/gnustep-updater: update functions.sh path (diff) | |
download | gentoo-4b40373172058a4475a81a492e5808060a5dbc6f.tar.gz gentoo-4b40373172058a4475a81a492e5808060a5dbc6f.tar.bz2 gentoo-4b40373172058a4475a81a492e5808060a5dbc6f.zip |
gnustep-base/gnustep-base: fix automagic iconv dep
Closes: https://bugs.gentoo.org/830276
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'gnustep-base')
-rw-r--r-- | gnustep-base/gnustep-base/gnustep-base-1.28.0-r1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnustep-base/gnustep-base/gnustep-base-1.28.0-r1.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.28.0-r1.ebuild index 8a246c6ba767..13d4cb7f7860 100644 --- a/gnustep-base/gnustep-base/gnustep-base-1.28.0-r1.ebuild +++ b/gnustep-base/gnustep-base/gnustep-base-1.28.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,11 +11,12 @@ SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0/$(ver_cut 1-2)" KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" -IUSE="+gnutls +icu +libffi zeroconf" +IUSE="+gnutls +iconv +icu +libffi zeroconf" RDEPEND="${GNUSTEP_CORE_DEPEND} >=gnustep-base/gnustep-make-2.6.0 gnutls? ( net-libs/gnutls:= ) + iconv? ( virtual/libiconv ) icu? ( >=dev-libs/icu-49.0:= ) !libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) @@ -43,6 +44,7 @@ src_configure() { fi myconf="$myconf $(use_enable gnutls tls)" + myconf="$myconf $(use_enable iconv)" myconf="$myconf $(use_enable icu)" myconf="$myconf $(use_enable zeroconf)" myconf="$myconf --with-xml-prefix=${EPREFIX}/usr" |