commit: 59231e3dc0a1e6ad3ad359627bd7a426eed2f833
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 20 17:05:29 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 20 19:04:40 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59231e3d
sci-libs/cddlib: drop 094m-r1, EAPI=7--
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sci-libs/cddlib/cddlib-094m-r1.ebuild | 62 -----------------------------------
1 file changed, 62 deletions(-)
diff --git a/sci-libs/cddlib/cddlib-094m-r1.ebuild
b/sci-libs/cddlib/cddlib-094m-r1.ebuild
deleted file mode 100644
index 4a38f957054c..000000000000
--- a/sci-libs/cddlib/cddlib-094m-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit libtool
-
-# This can't work forever; but for now, it's better than hard-coding the
-# correct version string.
-MY_PV="${PV:0:1}.${PV:1}"
-QA_PKGCONFIG_VERSION="${MY_PV}"
-
-MY_P="${PN}-${MY_PV}"
-DESCRIPTION="C library implementing the Double Description Method"
-HOMEPAGE="https://www.inf.ethz.ch/personal/fukudak/cdd_home/"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${MY_PV}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2+"
-KEYWORDS="amd64 ~arm ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples static-libs tools"
-
-DEPEND="dev-libs/gmp:0"
-RDEPEND="dev-libs/gmp:0="
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
- elibtoolize
-}
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- default
-
- if ! use tools; then
- rm "${ED}"/usr/bin/* || die
- fi
-
- if ! use static-libs; then
- find "${ED}" -name '*.la' -delete || die
- fi
-
- # Nobody wants the dvi/ps manual...
- rm "${ED}/usr/share/doc/${PF}"/cddlibman.{dvi,ps} || die
-
- # since the PDF manual is installed by default.
- if ! use doc; then
- rm "${ED}/usr/share/doc/${PF}"/cddlibman.pdf || die
- fi
-
- # The docs and examples are *both* installed by default, so we
- # have to remove the examples if the user doesn't want them.
- docompress -x "/usr/share/doc/${PF}"/examples{,-ext,-ine,-ine3d}
- if ! use examples; then
- rm -r "${ED}/usr/share/doc/${PF}"/examples{,-ext,-ine,-ine3d}
|| die
- fi
-}