diff options
author | Daniel Scharrer <daniel@constexpr.org> | 2018-12-12 20:11:18 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-31 22:13:44 +0100 |
commit | 07877618211b9642a96509077b993167da9506cc (patch) | |
tree | c3dd8e7c732b3e8970b2f78fac0c7061c6108978 /app-arch/innoextract | |
parent | media-gfx/kphotoalbum: Fix build with exiv2-0.27 (diff) | |
download | gentoo-07877618211b9642a96509077b993167da9506cc.tar.gz gentoo-07877618211b9642a96509077b993167da9506cc.tar.bz2 gentoo-07877618211b9642a96509077b993167da9506cc.zip |
app-arch/innoextract: Drop old
Signed-off-by: Daniel Scharrer <daniel@constexpr.org>
Closes: https://github.com/gentoo/gentoo/pull/10625
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-arch/innoextract')
-rw-r--r-- | app-arch/innoextract/Manifest | 1 | ||||
-rw-r--r-- | app-arch/innoextract/innoextract-1.6.ebuild | 35 |
2 files changed, 0 insertions, 36 deletions
diff --git a/app-arch/innoextract/Manifest b/app-arch/innoextract/Manifest index 20c9a908547d..4ecec7c6a20d 100644 --- a/app-arch/innoextract/Manifest +++ b/app-arch/innoextract/Manifest @@ -1,2 +1 @@ -DIST innoextract-1.6.tar.gz 183380 BLAKE2B 581c0e28ececbabc8785f50472f312bc39c62d9174c1902645a961f06877c3e702ce0386aa611fe954c412997a1a69355e441cc33e243abd1828ff5e9d2ff8a2 SHA512 4c1b50a050d45e1a56d7236150a801cb85d15de8c80f5f1fd94750f3dd2392bdfb3f0e98c214e9504fe6132c7dce3a0dfbe0815ede438aa0f76a88380ceeef62 DIST innoextract-1.7.tar.gz 195123 BLAKE2B 5dffb49da7ec3f8e48a70d0809e059179e84610dd50397b8ca472b9f5a96a5edd0cf36898f0e513b3f70685829e2b8edbd7d7932c9f1b47706c2929f596867e5 SHA512 5e92625a411a4351dd4639d4b63e8664519c6697122a0679c010412e94a1e5da95324c33be16211f91c2b25b8cea40fe4ba4da5e19c12d0c27a4916159465ca4 diff --git a/app-arch/innoextract/innoextract-1.6.ebuild b/app-arch/innoextract/innoextract-1.6.ebuild deleted file mode 100644 index 509f67a4b24c..000000000000 --- a/app-arch/innoextract/innoextract-1.6.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils - -DESCRIPTION="A tool to unpack installers created by Inno Setup" -HOMEPAGE="http://constexpr.org/innoextract/" -SRC_URI="http://constexpr.org/innoextract/files/${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug +iconv +lzma" - -RDEPEND=" - dev-libs/boost:= - iconv? ( virtual/libiconv ) - lzma? ( app-arch/xz-utils )" -DEPEND="${RDEPEND}" - -DOCS=( README.md CHANGELOG ) - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_use lzma LZMA) - $(cmake-utils_use debug DEBUG) - -DSET_OPTIMIZATION_FLAGS=OFF - -DSTRICT_USE=ON - -DWITH_CONV=$(usex iconv iconv builtin) - ) - - cmake-utils_src_configure -} |