summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChema Alonso Josa <nimiux@gentoo.org>2017-12-16 17:36:19 +0100
committerChema Alonso Josa <nimiux@gentoo.org>2017-12-16 17:36:19 +0100
commitdd224c328316f56b64d19438266c737ab45c26d1 (patch)
treefbcd56ab9d3295898f18c2c1bc31941086194821 /dev-libs/ffcall
parentdev-libs/ffcall: Drops old version 1.10-r2 (diff)
downloadgentoo-dd224c328316f56b64d19438266c737ab45c26d1.tar.gz
gentoo-dd224c328316f56b64d19438266c737ab45c26d1.tar.bz2
gentoo-dd224c328316f56b64d19438266c737ab45c26d1.zip
dev-libs/ffcall: Drops version 1.10-r5
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'dev-libs/ffcall')
-rw-r--r--dev-libs/ffcall/Manifest1
-rw-r--r--dev-libs/ffcall/ffcall-1.10-r5.ebuild75
2 files changed, 0 insertions, 76 deletions
diff --git a/dev-libs/ffcall/Manifest b/dev-libs/ffcall/Manifest
index 4ec5b1e549e8..4dad06986392 100644
--- a/dev-libs/ffcall/Manifest
+++ b/dev-libs/ffcall/Manifest
@@ -1,3 +1,2 @@
-DIST clisp-2.41.tar.bz2 8319471 BLAKE2B 1fe03518b5a524711e4fcdb6426a500ce6d469bc71f8be076c29252cb4b120940251ab97d60b1c3fe8cff93b7a558078e83ac3f387a8bf1036695b33dd37a894 SHA512 638417834cc8b81a893ea98801d8ec3f6e591062bf799a1462fc36ceb3fa0107eb1c55e335cd32e1f9d931692e806d0c59c7557cfaf3af9cb00349b715111489
DIST libffcall-1.13.tar.gz 985185 BLAKE2B 78d9b9f046185a9a658ed2864167c64e373359e709cde7abc9360b21959c015b201423b46b8048120b98edfd0047dd20184c5f543c7d1d33a7ffad983036c043 SHA512 c059fa89eb3e85bad22d045de074bfc88fae42454821e10905ffd67209b6e6ea44eeab120b869696f77b816aacb9a5af3e4b51c640512e876df1b6da6f296bd4
DIST libffcall-2.0.tar.gz 938605 BLAKE2B 1e6fcae8f1dcaad52ca84d0dcf97f8dde5bb8153244bbb9047dbab5f6a1dade0a00f149507e6bb14225369a7081cadb069d23c8bc7cdcfaec937d7b9d47d08c1 SHA512 d75aa1df97b14692a9137745bae5b24c4d8f739cb1c7f854e7ed47e4a77a49759122abd6b0e445efa56381f47932c13cd21a154b2783649afb9c7a39e73fea04
diff --git a/dev-libs/ffcall/ffcall-1.10-r5.ebuild b/dev-libs/ffcall/ffcall-1.10-r5.ebuild
deleted file mode 100644
index 19bcd6a89fb3..000000000000
--- a/dev-libs/ffcall/ffcall-1.10-r5.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils flag-o-matic toolchain-funcs
-
-# CLISP maintains ffcall now
-CLISP_PACKAGE="clisp-2.41"
-
-DESCRIPTION="foreign function call libraries"
-HOMEPAGE="https://www.haible.de/bruno/packages-ffcall.html"
-SRC_URI="mirror://sourceforge/clisp/${CLISP_PACKAGE}.tar.bz2"
-
-# "Ffcall is under GNU GPL. As a special exception, if used in GNUstep
-# or in derivate works of GNUstep, the included parts of ffcall are
-# under GNU LGPL." -ffcall author
-LICENSE="|| ( GPL-2 LGPL-2 )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-S=${WORKDIR}/${CLISP_PACKAGE}/${PN}
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-make-jN.patch
-
- # The build system is a strange mix of autogenerated
- # files and manual tweaks on top. Uses $CFLAGS / $LDFLAGS randomly.
- # We are adding them consistently here and a bit over the top:
- # bugs: #334581
-
- for mfi in {,*/,*/*/,}Makefile.in
- do
- elog "Patching '${mfi}'"
- # usually uses only assembler here, but -march=
- # and -Wa, are a must to pass here.
- sed -e 's/$(CC) /&$(CFLAGS) /g' \
- -i "${mfi}" || die
-
- # usually uses '$(CC) ... -o something' for linking
- sed -e 's/\($(CC) .* \)-o /\1 $(LDFLAGS) -o /g' \
- -i "${mfi}" || die
- done
-}
-
-src_configure() {
- append-flags -fPIC
- append-flags $(test-flags-CC -Wa,--noexecstack) #253963
-
- # Doc goes in datadir
- econf \
- --datadir="${EPREFIX}"/usr/share/doc/${PF} \
- --enable-shared \
- --disable-static
-}
-
-src_compile() {
- # Because CHOST is set to (for example)
- # alphaev67-unknown-linux-gnu, CPU gets set to alphaev67 which
- # doesn't work in the Makefile (29 Jan 2004 agriffis)
- local cpu_setting
- [[ "${ARCH}" == "alpha" ]] && cpu_setting='CPU=alpha'
-
- emake ${cpu_setting}
-}
-
-src_install() {
- dodoc NEWS README
- dodir /usr/share/man
- default
- prune_libtool_files
-}