summaryrefslogtreecommitdiff
path: root/sys-libs/zlib-ng/zlib-ng-2.0.1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'sys-libs/zlib-ng/zlib-ng-2.0.1.ebuild')
-rw-r--r--sys-libs/zlib-ng/zlib-ng-2.0.1.ebuild32
1 files changed, 0 insertions, 32 deletions
diff --git a/sys-libs/zlib-ng/zlib-ng-2.0.1.ebuild b/sys-libs/zlib-ng/zlib-ng-2.0.1.ebuild
deleted file mode 100644
index 6c9d4fdc34fb..000000000000
--- a/sys-libs/zlib-ng/zlib-ng-2.0.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-# $Id: 688f948c5f3067e775bfab5057e8047f467a9ca9 $
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="zlib data compression library"
-HOMEPAGE="https://github.com/zlib-ng/zlib-ng"
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="ZLIB"
-SLOT="0"
-
-#KEYWORDS="~amd64 ~x86"
-IUSE="compat test"
-
-RESTRICT="!test? ( test )"
-
-src_prepare() {
- cmake_src_prepare
- sed "/LIB_INSTALL_DIR/s@/lib\"@/$(get_libdir)\"@" \
- -i CMakeLists.txt || die
-}
-
-src_configure() {
- local mycmakeargs=(
- -DZLIB_COMPAT="$(usex compat)"
- -DZLIB_ENABLE_TESTS="$(usex test)"
- )
- cmake_src_configure
-}