diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-12 22:37:41 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-12 22:37:41 +0000 |
commit | cd45268235a0485676c9ea78f841b373de3ce7b6 (patch) | |
tree | 46cb81fa6fe91d9910c482eea9622ee751a607d8 /app-emulation/plex86/plex86-20021117.ebuild | |
parent | Moving gnome-extra/libgtkhtml to gnome-extra/gtkhtml (diff) | |
download | gentoo-2-cd45268235a0485676c9ea78f841b373de3ce7b6.tar.gz gentoo-2-cd45268235a0485676c9ea78f841b373de3ce7b6.tar.bz2 gentoo-2-cd45268235a0485676c9ea78f841b373de3ce7b6.zip |
remove plex86 from the tree
Diffstat (limited to 'app-emulation/plex86/plex86-20021117.ebuild')
-rw-r--r-- | app-emulation/plex86/plex86-20021117.ebuild | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/app-emulation/plex86/plex86-20021117.ebuild b/app-emulation/plex86/plex86-20021117.ebuild deleted file mode 100644 index 7684e1467387..000000000000 --- a/app-emulation/plex86/plex86-20021117.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/plex86/plex86-20021117.ebuild,v 1.12 2005/08/20 17:38:44 vanquirius Exp $ - -DESCRIPTION="Plex86 is THE opensource free-software alternative for VMWare, VirtualPC, and other IA-32 on IA-32 \"Virtual PC products.\"" -HOMEPAGE="http://savannah.gnu.org/projects/plex86/ http://sourceforge.net/projects/plex86/" -SRC_URI="http://savannah.nongnu.org/download/plex86/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="x86" -IUSE="X sdl" - -RDEPEND=">=sys-libs/ncurses-5.2-r7 - X? ( virtual/x11 ) - sdl? ( >=media-libs/libsdl-1.2.4 )" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A}; cd ${S} - - # fix malign warnings - sed -e 's:malign:falign:g' \ - -i kernel/{.,dt,iodev,emulation}/Makefile.in || die - - # fix typo (bug submitted) - sed -i \ - -e s/'inclide'/'include'/ user/plugins/bochs/iodev/eth_fbsd.cc \ - || die "sed eth_fbsd.cc failed" -} - -src_compile() { - MY_CONF="--with-Linux --enable-cdrom --enable-split-hd --enable-pci --enable-vbe --enable-sb16=linux --enable-instrumentation" - # --enable-ne2000 not working at the moment - - MY_GUI="curses" - use X && MY_GUI="x" - use sdl && MY_GUI="sdl" - use sdl && export SDL_CFLAGS="`sdl-config --cflags`" - - use X && MY_CONF="${MY_CONF} --with-x --with-linux-source=/usr/src/linux" - MY_CONF="${MY_CONF} --with-gui=${MY_GUI}" - - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man ${MY_CONF} || die "./configure failed" - - emake || die "emake failed" -} - -src_install() { - #make DESTDIR=${D} install || die - # for now just this: - dodir /opt/${P} - cp -r * ${D}/opt/${P} || die "cp failed" -} - -pkg_postinst() { - echo - ewarn "This code is EXTREMELY EXPERIMENTAL, and may well result in a" - ewarn "SYSTEM CRASH, and who knows what other ill effects. RUN THIS" - ewarn "SOFTWARE AT YOUR OWN RISK. As a precaution, do not attempt to" - ewarn "run this software on a system with important data on it, and" - ewarn "make liberal use of the sync command! Expect to have to use" - ewarn "the power button." - echo - einfo "Contact me (lordvan@lordvan.com) if you encounter any problems." - echo -} |