diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-02 15:41:06 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-02 16:07:13 +0200 |
commit | 4ac67447dd76e377ace3616300f2fb83cf8e1ad5 (patch) | |
tree | c78ffc06f2526f79073a764a4a7b15b34fa7d604 /dev-libs/quazip | |
parent | media-sound/abcde: Drop 2.8.1 (diff) | |
download | gentoo-4ac67447dd76e377ace3616300f2fb83cf8e1ad5.tar.gz gentoo-4ac67447dd76e377ace3616300f2fb83cf8e1ad5.tar.bz2 gentoo-4ac67447dd76e377ace3616300f2fb83cf8e1ad5.zip |
dev-libs/quazip: Drop 0.7.6
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/quazip')
-rw-r--r-- | dev-libs/quazip/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/quazip/quazip-0.7.6.ebuild | 48 |
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-libs/quazip/Manifest b/dev-libs/quazip/Manifest index 3a2e764d5968..b6da0d2bc9a9 100644 --- a/dev-libs/quazip/Manifest +++ b/dev-libs/quazip/Manifest @@ -1,2 +1 @@ -DIST quazip-0.7.6.tar.gz 149029 BLAKE2B 7eb99f550dc06d8d2911b22214294accaa5126657598bfd60614267715ea968790f470cea2820e1a78a8581ab0d4b75c90589c0da1ae815067e083e389020762 SHA512 4325a69918216bb66c6a7c53589ef73473c3752151522a135dd9c92dbf722b29656aea7be0314c84399a214391eca79296ecda5811ab31845d8cf53c010110d1 DIST quazip-0.8.1.tar.gz 150584 BLAKE2B 4a1d61b65b01eee06e1292ee88b543675c77ac922d0fb1726ac0afd447d74e8c8154db82da0ce95c2f2c303c036f2795e8938a412dc22e921ee09a0ef99278f6 SHA512 d65dab16c2cbc4d8bb23dae5b2fdff5ef787aaff2653b8e75c3fc8ba1701f5568a52bdde39009f83c5069a9fe3331cd1a49cf965822c4180e88bbc341faa2bfb diff --git a/dev-libs/quazip/quazip-0.7.6.ebuild b/dev-libs/quazip/quazip-0.7.6.ebuild deleted file mode 100644 index 5e502d2c03b7..000000000000 --- a/dev-libs/quazip/quazip-0.7.6.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils flag-o-matic qmake-utils - -DESCRIPTION="Simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package" -HOMEPAGE="https://stachenov.github.io/quazip/" -SRC_URI="https://github.com/stachenov/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1-with-linking-exception" -SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux" -IUSE="static-libs" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtnetwork:5 - sys-libs/zlib[minizip] -" -DEPEND="${RDEPEND}" - -src_prepare() { - if ! use static-libs ; then - sed -e "/^install/ s/quazip_static//" -i CMakeLists.txt || die - fi - cmake-utils_src_prepare -} - -src_configure() { - local libdir=$(get_libdir) - local -x CXXFLAGS="${CXXFLAGS}" - append-cxxflags -std=c++11 -fPIC - - local mycmakeargs=( - -DBUILD_WITH_QT4=OFF - -DLIB_SUFFIX=${libdir/lib/} - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - # compatibility with not yet fixed rdeps (Gentoo bug #598136) - dosym libquazip5.so /usr/$(get_libdir)/libquazip.so -} |