diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-07-07 22:04:21 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-07-20 09:42:14 -0700 |
commit | f21f1d5b81b47ceb5b371497d25cb99fc4a7f045 (patch) | |
tree | 4892422d97d4ae5ef99b6317fcf053788f1ff46b /dev-util | |
parent | stardict.eclass: Rename IUSE=gzip->zlib (diff) | |
download | gentoo-f21f1d5b81b47ceb5b371497d25cb99fc4a7f045.tar.gz gentoo-f21f1d5b81b47ceb5b371497d25cb99fc4a7f045.tar.bz2 gentoo-f21f1d5b81b47ceb5b371497d25cb99fc4a7f045.zip |
dev-util/archdiff: Rename IUSE=gzip->zlib
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/archdiff/archdiff-1.1.6.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-util/archdiff/archdiff-1.1.6.ebuild b/dev-util/archdiff/archdiff-1.1.6.ebuild index 9ae08696e947..4b48705b0c7e 100644 --- a/dev-util/archdiff/archdiff-1.1.6.ebuild +++ b/dev-util/archdiff/archdiff-1.1.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,10 +10,10 @@ SRC_URI="https://frigidcode.com/code/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+bzip2 +lzma +gzip" +IUSE="+bzip2 +lzma +zlib" DEPEND="app-arch/libarchive[bzip2?,lzma?] - gzip? ( app-arch/libarchive[zlib] ) + zlib? ( app-arch/libarchive[zlib] ) dev-libs/rremove" RDEPEND="${DEPEND} app-misc/colordiff" @@ -21,6 +21,6 @@ RDEPEND="${DEPEND} src_configure() { econf \ $(use_enable bzip2) \ - $(use_enable gzip) \ + $(use_enable zlib gzip) \ $(use_enable lzma) } |