summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-30 21:07:51 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-30 21:08:23 +0100
commit97911599d8f87a417dc9bcece56f3e14c7936af0 (patch)
tree8d1659b57a3891c5b53f1ac54e451749b75b205b /sci-libs
parentsys-libs/libieee1284: drop 0.2.11-r8 (diff)
downloadgentoo-97911599d8f87a417dc9bcece56f3e14c7936af0.tar.gz
gentoo-97911599d8f87a417dc9bcece56f3e14c7936af0.tar.bz2
gentoo-97911599d8f87a417dc9bcece56f3e14c7936af0.zip
sci-libs/primegen: drop 0.97-r2
Bug: https://bugs.gentoo.org/898288 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/primegen/primegen-0.97-r2.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/sci-libs/primegen/primegen-0.97-r2.ebuild b/sci-libs/primegen/primegen-0.97-r2.ebuild
deleted file mode 100644
index 3394131d63df..000000000000
--- a/sci-libs/primegen/primegen-0.97-r2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Small, fast library to generate primes in order"
-HOMEPAGE="http://cr.yp.to/primegen.html"
-SRC_URI="http://cr.yp.to/primegen/${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-
-PATCHES=(
- "${FILESDIR}"/${P}-man.patch
- "${FILESDIR}"/${P}-missing-headers.patch
- "${FILESDIR}"/${P}-respect-ar-ranlib.patch
-)
-
-src_prepare() {
- default
-
- local file
- while IFS="" read -d $'\0' -r file; do
- sed -i -e 's:\(primegen.a\):lib\1:' "${file}" || die
- done < <(find . -type f -print0)
- mkdir usr || die
-}
-
-src_configure() {
- # Fixes bug #161015
- append-flags -fsigned-char
- echo "$(tc-getCC) ${CFLAGS} ${CPPFLAGS}" > conf-cc || die
- echo "${S}/usr" > conf-home || die
- echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
- tc-export AR RANLIB
-}
-
-src_test() {
- [[ $(./primes 1 100000000 | md5sum ) == "4e2b0027288a27e9c99699364877c9db "* ]] || die "test failed"
-}
-
-src_install() {
- dobin primegaps primes primespeed
- doman primegaps.1 primes.1 primespeed.1 primegen.3
- dolib.a libprimegen.a
- # include the 2 typedefs to avoid collision (bug #248327)
- sed -i \
- -e "s/#include \"uint32.h\"/$(grep typedef uint32.h)/" \
- -e "s/#include \"uint64.h\"/$(grep typedef uint64.h)/" \
- primegen.h || die
-
- doheader primegen.h
- dodoc BLURB CHANGES README TODO
-}