diff options
author | Michael Palimaka <kensington@gentoo.org> | 2012-06-27 16:39:41 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2012-06-27 16:39:41 +0000 |
commit | 9590c8d4dcffd34c539957538c5c455bde12337f (patch) | |
tree | 0ca470023dd7c68edba59dc4c5f030bdbe23236e /dev-libs/libx86 | |
parent | Bump. (diff) | |
download | gentoo-2-9590c8d4dcffd34c539957538c5c455bde12337f.tar.gz gentoo-2-9590c8d4dcffd34c539957538c5c455bde12337f.tar.bz2 gentoo-2-9590c8d4dcffd34c539957538c5c455bde12337f.zip |
Remove old.
(Portage version: 2.1.11.2/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libx86')
-rw-r--r-- | dev-libs/libx86/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/libx86/files/libx86-0.99-build.patch | 25 | ||||
-rw-r--r-- | dev-libs/libx86/libx86-0.99.ebuild | 37 | ||||
-rw-r--r-- | dev-libs/libx86/libx86-1.1.ebuild | 33 |
4 files changed, 6 insertions, 98 deletions
diff --git a/dev-libs/libx86/ChangeLog b/dev-libs/libx86/ChangeLog index a4f804179851..7acf9cf5c208 100644 --- a/dev-libs/libx86/ChangeLog +++ b/dev-libs/libx86/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/libx86 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86/ChangeLog,v 1.13 2009/07/01 20:30:01 maekke Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86/ChangeLog,v 1.14 2012/06/27 16:39:40 kensington Exp $ + + 27 Jun 2012; Michael Palimaka <kensington@gentoo.org> + -files/libx86-0.99-build.patch, -libx86-0.99.ebuild, -libx86-1.1.ebuild: + Remove old. 01 Jul 2009; Markus Meier <maekke@gentoo.org> libx86-1.1-r1.ebuild: amd64 stable, bug #267719 @@ -51,4 +55,3 @@ 17 Sep 2007; Alon Bar-Lev <alonbl@gentoo.org> +files/libx86-0.99-build.patch, +metadata.xml, +libx86-0.99.ebuild: Initial add, bug#156431 - diff --git a/dev-libs/libx86/files/libx86-0.99-build.patch b/dev-libs/libx86/files/libx86-0.99-build.patch deleted file mode 100644 index 80d2a8297499..000000000000 --- a/dev-libs/libx86/files/libx86-0.99-build.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -urNp libx86-0.99.org/Makefile libx86-0.99/Makefile ---- libx86-0.99.org/Makefile 2006-10-30 02:14:18.000000000 +0200 -+++ libx86-0.99/Makefile 2007-10-10 21:05:34.000000000 +0200 -@@ -1,5 +1,8 @@ - OBJECTS = x86-common.o --CFLAGS = -O2 -Wall -DDEBUG -g -+CFLAGS ?= -O2 -Wall -DDEBUG -g -+PREFIX ?= /usr -+LIBDIR ?= $(PREFIX)/lib -+INCDIR ?= $(PREFIX)/include - - ifeq ($(BACKEND), x86emu) - OBJECTS += thunk.o x86emu/decode.o x86emu/debug.o x86emu/fpu.o \ -@@ -31,7 +34,7 @@ clean: objclean - rm -f *.so.1 *.a - - install: libx86.so.1 -- install -D libx86.so.1 $(DESTDIR)/usr/lib/libx86.so.1 -- install -D libx86.a $(DESTDIR)/usr/lib/libx86.a -- ln -sf /usr/lib/libx86.so.1 $(DESTDIR)/usr/lib/libx86.so -- install -D lrmi.h $(DESTDIR)/usr/include/libx86.h -+ install -D libx86.so.1 $(DESTDIR)/$(LIBDIR)/libx86.so.1 -+ install -D libx86.a $(DESTDIR)/$(LIBDIR)/libx86.a -+ ln -sf libx86.so.1 $(DESTDIR)/$(LIBDIR)/libx86.so -+ install -D lrmi.h $(DESTDIR)/$(INCDIR)/libx86.h diff --git a/dev-libs/libx86/libx86-0.99.ebuild b/dev-libs/libx86/libx86-0.99.ebuild deleted file mode 100644 index bc690ee4797a..000000000000 --- a/dev-libs/libx86/libx86-0.99.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86/libx86-0.99.ebuild,v 1.6 2008/09/06 20:44:56 ulm Exp $ - -inherit eutils multilib - -DESCRIPTION="A hardware-independent library for executing real-mode x86 code" -HOMEPAGE="http://www.codon.org.uk/~mjg59/libx86" -SRC_URI="http://www.codon.org.uk/~mjg59/libx86/downloads/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-build.patch - # fix compile failure with linux-headers-2.6.26, bug 235599 - epatch "${FILESDIR}"/${PN}-0.99-ifmask.patch -} - -src_compile() { - local ARGS - if use amd64; then - ARGS="BACKEND=x86emu" - fi - emake ${ARGS} || die -} - -src_install() { - emake install LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" || die -} diff --git a/dev-libs/libx86/libx86-1.1.ebuild b/dev-libs/libx86/libx86-1.1.ebuild deleted file mode 100644 index d66fa79a173a..000000000000 --- a/dev-libs/libx86/libx86-1.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86/libx86-1.1.ebuild,v 1.2 2008/09/06 20:44:56 ulm Exp $ - -inherit eutils multilib - -DESCRIPTION="A hardware-independent library for executing real-mode x86 code" -HOMEPAGE="http://www.codon.org.uk/~mjg59/libx86" -SRC_URI="http://www.codon.org.uk/~mjg59/${PN}/downloads/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - # fix compile failure with linux-headers-2.6.26, bug 235599 - epatch "${FILESDIR}"/${PN}-0.99-ifmask.patch -} - -src_compile() { - local ARGS - if use amd64; then - ARGS="BACKEND=x86emu" - fi - emake ${ARGS} || die -} - -src_install() { - emake LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" install || die -} |