summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2009-11-14 13:27:18 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2009-11-14 13:27:18 +0000
commitd0ec302d1de917865629f344d215b28a73dd74c1 (patch)
tree99dc4826052ca49461c446d8051dd0c32dc16ef3 /app-emulation/qemu-user
parentQA: Drop keywords and not required || die from live ebuild (diff)
downloadgentoo-2-d0ec302d1de917865629f344d215b28a73dd74c1.tar.gz
gentoo-2-d0ec302d1de917865629f344d215b28a73dd74c1.tar.bz2
gentoo-2-d0ec302d1de917865629f344d215b28a73dd74c1.zip
Drop old masked version.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/qemu-user')
-rw-r--r--app-emulation/qemu-user/ChangeLog6
-rw-r--r--app-emulation/qemu-user/qemu-user-0.9.1.ebuild71
2 files changed, 5 insertions, 72 deletions
diff --git a/app-emulation/qemu-user/ChangeLog b/app-emulation/qemu-user/ChangeLog
index e2e69d3646f3..f58015046c1c 100644
--- a/app-emulation/qemu-user/ChangeLog
+++ b/app-emulation/qemu-user/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-emulation/qemu-user
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-user/ChangeLog,v 1.37 2009/03/22 23:25:57 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-user/ChangeLog,v 1.38 2009/11/14 13:27:18 scarabeus Exp $
+
+ 14 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org>
+ -qemu-user-0.9.1.ebuild:
+ Drop old masked version.
*qemu-user-0.10.1 (22 Mar 2009)
diff --git a/app-emulation/qemu-user/qemu-user-0.9.1.ebuild b/app-emulation/qemu-user/qemu-user-0.9.1.ebuild
deleted file mode 100644
index c78030c0f33c..000000000000
--- a/app-emulation/qemu-user/qemu-user-0.9.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-user/qemu-user-0.9.1.ebuild,v 1.3 2009/09/23 15:34:15 patrick Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="Multi-platform & multi-targets cpu emulator and dynamic translator"
-HOMEPAGE="http://fabrice.bellard.free.fr/qemu/"
-SRC_URI="http://fabrice.bellard.free.fr/qemu/${P/-user/}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="" #qvm86 debug nptl qemu-fast nptlonly"
-RESTRICT="strip test"
-
-DEPEND="app-text/texi2html
- !<=app-emulation/qemu-0.7.0"
-RDEPEND=""
-
-S="${WORKDIR}/${P/-user/}"
-
-QA_TEXTRELS="usr/bin/qemu-armeb
- usr/bin/qemu-i386
- usr/bin/qemu-mips
- usr/bin/qemu-arm
- usr/bin/qemu-ppc"
-
-#RUNTIME_PATH="/emul/gnemul/"
-src_unpack() {
- unpack ${A}
-
- cd "${S}"
-
- # Alter target makefiles to accept CFLAGS set via flag-o.
- sed -i 's/^\(C\|OP_C\|HELPER_C\)FLAGS=/\1FLAGS+=/' \
- Makefile Makefile.target tests/Makefile
- # Ensure mprotect restrictions are relaxed for emulator binaries
- [[ -x /sbin/paxctl ]] && \
- sed -i 's/^VL_LDFLAGS=$/VL_LDFLAGS=-Wl,-z,execheap/' \
- Makefile.target
- # Prevent install of kernel module by qemu's makefile
- sed -i 's/\(.\/install.sh\)/#\1/' Makefile
- # avoid strip
- sed -i 's:$(INSTALL) -m 755 -s:$(INSTALL) -m 755:' Makefile Makefile.target
-}
-
-src_compile() {
- #Let the application set its cflags
- unset CFLAGS
-
- # Switch off hardened tech
- filter-flags -fpie -fstack-protector
-
- myconf="--disable-gcc-check"
- ./configure \
- --prefix=/usr \
- --enable-linux-user \
- --disable-system \
- ${myconf} \
- || die "could not configure"
-
- emake || die "make failed"
-}
-
-src_install() {
- einstall docdir="${D}/usr/share/doc/${P}" || die
-
- rm -fR "${D}/usr/share/{man,qemu}"
- rm -fR "${D}/usr/bin/qemu-img"
-}