diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-28 20:45:45 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-28 20:45:58 +0100 |
commit | c2a075b83e0434292b67db62eca200a6da4b63e4 (patch) | |
tree | 3b8405a84f30fc99c5432d648497fd9387e65def /dev-libs/libx86 | |
parent | app-doc/python-docs: Stabilize 3.13.0 ppc64, #942282 (diff) | |
download | gentoo-c2a075b83e0434292b67db62eca200a6da4b63e4.tar.gz gentoo-c2a075b83e0434292b67db62eca200a6da4b63e4.tar.bz2 gentoo-c2a075b83e0434292b67db62eca200a6da4b63e4.zip |
dev-libs/libx86: drop 1.1-r5
Bug: https://bugs.gentoo.org/880429
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'dev-libs/libx86')
-rw-r--r-- | dev-libs/libx86/libx86-1.1-r5.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-libs/libx86/libx86-1.1-r5.ebuild b/dev-libs/libx86/libx86-1.1-r5.ebuild deleted file mode 100644 index ac4aa8723d12..000000000000 --- a/dev-libs/libx86/libx86-1.1-r5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="A hardware-independent library for executing real-mode x86 code" -HOMEPAGE="https://www.codon.org.uk/~mjg59/libx86/" -SRC_URI="https://www.codon.org.uk/~mjg59/${PN}/downloads/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm -ppc -riscv -sparc x86" - -PATCHES=( - # fix compile failure with linux-headers-2.6.26, bug 235599 - "${FILESDIR}"/${PN}-0.99-ifmask.patch - # Patch for bugs #236888 and #456648 - "${FILESDIR}"/${P}-makefile.patch - # Wider arch compatibility, bug #579682 - "${FILESDIR}"/${P}-x86emu.patch -) - -src_configure() { - tc-export AR CC - append-cflags -fno-delete-null-pointer-checks #523276 -} - -src_compile() { - emake $(usev !x86 BACKEND=x86emu) LIBRARY=shared shared -} - -src_install() { - emake \ - LIBDIR=/usr/$(get_libdir) \ - DESTDIR="${ED}" \ - install-header install-shared -} |