summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-12-22 04:40:09 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-12-22 04:40:09 +0000
commit253f6931e46646d9911c555a4fd3b2eedd8c1e0f (patch)
tree7c6590bcbac9762e0bb9cdfc22cd366b15904903 /app-emulation/fuse
parentNew revision to fix dependancy issues. Ebuild by José Manuel Ferrer Ortiz (diff)
downloadgentoo-2-253f6931e46646d9911c555a4fd3b2eedd8c1e0f.tar.gz
gentoo-2-253f6931e46646d9911c555a4fd3b2eedd8c1e0f.tar.bz2
gentoo-2-253f6931e46646d9911c555a4fd3b2eedd8c1e0f.zip
remove old
(Portage version: 2.1.7.14/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/fuse')
-rw-r--r--app-emulation/fuse/ChangeLog5
-rw-r--r--app-emulation/fuse/fuse-0.10.0.2-r2.ebuild85
2 files changed, 4 insertions, 86 deletions
diff --git a/app-emulation/fuse/ChangeLog b/app-emulation/fuse/ChangeLog
index be832ecd9e2e..33734dc61aba 100644
--- a/app-emulation/fuse/ChangeLog
+++ b/app-emulation/fuse/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emulation/fuse
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.28 2009/12/22 04:38:32 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.29 2009/12/22 04:40:09 darkside Exp $
+
+ 22 Dec 2009; Jeremy Olexa <darkside@gentoo.org> -fuse-0.10.0.2-r2.ebuild:
+ remove old
*fuse-0.10.0.2-r3 (22 Dec 2009)
diff --git a/app-emulation/fuse/fuse-0.10.0.2-r2.ebuild b/app-emulation/fuse/fuse-0.10.0.2-r2.ebuild
deleted file mode 100644
index 9cc3e3ac2678..000000000000
--- a/app-emulation/fuse/fuse-0.10.0.2-r2.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-0.10.0.2-r2.ebuild,v 1.1 2009/03/10 05:12:15 darkside Exp $
-
-DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall"
-HOMEPAGE="http://fuse-emulator.sourceforge.net"
-SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="alsa ao fbcon gpm gtk joystick libsamplerate memlimit png sdl svga X xml"
-
-# This build is heavily use dependent. Fuse user interface use flags are, in
-# order of precedence: gtk, sdl, X, svga and fbcon. X version of fuse will
-# be built if no valid user interface flag is chosen. libdsk flag must be
-# specified in order to take advantage of +3 emulation.
-RDEPEND="|| (
- gtk? ( >=x11-libs/gtk+-2
- alsa? ( media-libs/alsa-lib )
- ao? ( !alsa? ( media-libs/libao ) )
- joystick? ( media-libs/libjsw ) )
- sdl? ( >=media-libs/libsdl-1.2.4 )
- X? ( x11-libs/libX11
- x11-libs/libXext
- alsa? ( media-libs/alsa-lib )
- ao? ( !alsa? ( media-libs/libao ) )
- joystick? ( media-libs/libjsw ) )
- svga? ( media-libs/svgalib
- alsa? ( media-libs/alsa-lib )
- ao? ( !alsa? ( media-libs/libao ) ) )
- fbcon? ( virtual/linux-sources
- gpm? ( sys-libs/gpm )
- alsa? ( media-libs/alsa-lib )
- ao? ( !alsa? ( media-libs/libao ) )
- joystick? ( media-libs/libjsw ) )
- ( x11-libs/libX11
- x11-libs/libXext
- alsa? ( media-libs/alsa-lib )
- ao? ( !alsa? ( media-libs/libao ) )
- joystick? ( media-libs/libjsw ) )
- )
- >=app-emulation/libspectrum-0.5
- >=dev-libs/glib-2
- png? ( media-libs/libpng )
- libsamplerate? ( >=media-libs/libsamplerate-0.1.0 )
- xml? ( dev-libs/libxml2 )"
-DEPEND="${RDEPEND}
- dev-lang/perl
- dev-util/pkgconfig"
-
-src_compile() {
- local guiflag
- if use gtk; then
- guiflag=""
- elif use sdl; then
- guiflag="--with-sdl"
- elif use X; then
- guiflag="--without-gtk"
- elif use svga; then
- guiflag="--with-svgalib"
- elif use fbcon; then
- guiflag="--with-fb"
- else
- guiflag="--without-gtk"
- fi
- econf --without-win32 \
- ${guiflag} \
- $(use_with gpm gpm) \
- $(use_with alsa alsa) \
- $(use_with ao libao) \
- $(use_with libsamplerate libsamplerate) \
- $(use_with joystick joystick) \
- $(use_enable joystick ui-joystick) \
- $(use_with xml libxml2) \
- $(use_enable memlimit smallmem) \
- || die "econf failed!"
- emake || die "emake failed!"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc AUTHORS ChangeLog README THANKS
- doman man/fuse.1
-}