diff options
author | 2008-09-06 13:03:19 +0000 | |
---|---|---|
committer | 2008-09-06 13:03:19 +0000 | |
commit | 0991ad8bcefe2797f7306331c0c01d5e2ae3ce56 (patch) | |
tree | c418dc41a30ca093e6a1e2c7b130d91bd8065463 /dev-libs | |
parent | Stable on sparc, bug #236131 (diff) | |
download | gentoo-2-0991ad8bcefe2797f7306331c0c01d5e2ae3ce56.tar.gz gentoo-2-0991ad8bcefe2797f7306331c0c01d5e2ae3ce56.tar.bz2 gentoo-2-0991ad8bcefe2797f7306331c0c01d5e2ae3ce56.zip |
Version bump. This new version is vaccinated of the bug from bug #235599
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libx86/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libx86/libx86-1.1.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-libs/libx86/ChangeLog b/dev-libs/libx86/ChangeLog index 1d695d978c11..ac2d5387315d 100644 --- a/dev-libs/libx86/ChangeLog +++ b/dev-libs/libx86/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libx86 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86/ChangeLog,v 1.7 2008/08/07 21:54:46 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86/ChangeLog,v 1.8 2008/09/06 13:03:19 gentoofan23 Exp $ + +*libx86-1.1 (06 Sep 2008) + + 06 Sep 2008; Thomas Anderson <gentoofan23@gentoo.org> +libx86-1.1.ebuild: + Version bump. This new version is vaccinated of the bug from bug #235599 07 Aug 2008; Markus Meier <maekke@gentoo.org> libx86-0.99.ebuild: amd64/x86 stable, bug #231739 diff --git a/dev-libs/libx86/libx86-1.1.ebuild b/dev-libs/libx86/libx86-1.1.ebuild new file mode 100644 index 000000000000..1c81d56e8833 --- /dev/null +++ b/dev-libs/libx86/libx86-1.1.ebuild @@ -0,0 +1,26 @@ +# 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.1 2008/09/06 13:03:19 gentoofan23 Exp $ + +inherit 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_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 +} |