summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2003-11-28 00:58:09 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2003-11-28 00:58:09 +0000
commitd7938835c8fb1962694c574dacaac938d142f9e6 (patch)
tree329c3cb09d125713beb29fa37f91ebd24cc60867 /app-emulation/fuse
parentInitial import. Closes bug #31956. (diff)
downloadgentoo-2-d7938835c8fb1962694c574dacaac938d142f9e6.tar.gz
gentoo-2-d7938835c8fb1962694c574dacaac938d142f9e6.tar.bz2
gentoo-2-d7938835c8fb1962694c574dacaac938d142f9e6.zip
clean old version of ebuild
Diffstat (limited to 'app-emulation/fuse')
-rw-r--r--app-emulation/fuse/ChangeLog5
-rw-r--r--app-emulation/fuse/Manifest6
-rw-r--r--app-emulation/fuse/files/digest-fuse-0.6.0.11
-rw-r--r--app-emulation/fuse/fuse-0.6.0.1.ebuild56
4 files changed, 6 insertions, 62 deletions
diff --git a/app-emulation/fuse/ChangeLog b/app-emulation/fuse/ChangeLog
index ad8fd1ab8425..4729b1d3641f 100644
--- a/app-emulation/fuse/ChangeLog
+++ b/app-emulation/fuse/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emulation/fuse
# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.2 2003/11/21 04:04:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.3 2003/11/28 00:58:08 mr_bones_ Exp $
+
+ 27 Nov 2003; Michael Sterrett <mr_bones_@gentoo.org> fuse-0.6.0.1.ebuild:
+ clean old version of ebuild
*fuse-0.6.1.1 (20 Nov 2003)
diff --git a/app-emulation/fuse/Manifest b/app-emulation/fuse/Manifest
index 5a89f82774af..a33403d2ecd3 100644
--- a/app-emulation/fuse/Manifest
+++ b/app-emulation/fuse/Manifest
@@ -1,5 +1,3 @@
-MD5 6d5f9c502d125cd007eced64bb3e03d5 ChangeLog 513
-MD5 e5cacd164f23c6c49f190a96fb7ccd9c fuse-0.6.0.1.ebuild 1525
-MD5 e27943e891b82b4ba9d3650b193eb9a6 fuse-0.6.1.1.ebuild 1643
-MD5 5215432e0e5918b1fbcef654f6520514 files/digest-fuse-0.6.0.1 64
+MD5 76cd3bee3e061501242f954535825910 ChangeLog 623
+MD5 e7ff2de3d0f671aa63cdb60b0985aab4 fuse-0.6.1.1.ebuild 1655
MD5 a006698565f857d2c37f037f2c2c5e4a files/digest-fuse-0.6.1.1 64
diff --git a/app-emulation/fuse/files/digest-fuse-0.6.0.1 b/app-emulation/fuse/files/digest-fuse-0.6.0.1
deleted file mode 100644
index 93fffe42d56c..000000000000
--- a/app-emulation/fuse/files/digest-fuse-0.6.0.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 5666a7ed8c79e69b6d400cdde24c0973 fuse-0.6.0.1.tar.gz 478686
diff --git a/app-emulation/fuse/fuse-0.6.0.1.ebuild b/app-emulation/fuse/fuse-0.6.0.1.ebuild
deleted file mode 100644
index 90a40149e6b6..000000000000
--- a/app-emulation/fuse/fuse-0.6.0.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-0.6.0.1.ebuild,v 1.1 2003/07/16 00:54:33 vapier Exp $
-
-DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall"
-HOMEPAGE="http://www.srcf.ucam.org/~pak21/spectrum/fuse.html"
-SRC_URI="http://www.srcf.ucam.org/~pak21/spectrum/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE="X svga libdsk"
-
-# This build is heavily use dependent. USE="svga" will build the svga
-# version of fuse, otherwise X will be used. Libdsk must be specified
-# in order to take advantage of +3 emulation.
-DEPEND="dev-lang/perl
- xml2? ( dev-libs/libxml2 )
- png? ( media-libs/libpng )
- zlib? ( sys-libs/zlib )
- >=app-emulation/libspectrum-0.1.0
- || (
- X? ( virtual/x11 gtk? ( =x11-libs/gtk+-1* ) )
- sdl? ( media-libs/libsdl )
- svga? ( media-libs/svgalib )
- fbcon? ( )
- virtual/x11
- )
- libdsk? ( app-emulation/libdsk
- app-emulation/lib765 )"
-
-src_compile() {
- local guiflag
- if [ `use X` ] ; then
- guiflag="--with-x"
- elif [ `use sdl` ] ; then
- guiflag="--without-x --with-sdl"
- elif [ `use svga` ] ; then
- guiflag="--without-x --with-svgalib"
- elif [ `use fbcon` ] ; then
- guiflag="--without-x --with-fb"
- else
- guiflag="--with-x"
- fi
- # `use_with plus3-disk libdsk` \
- econf \
- --without-gtk --without-glib \
- --without-plus3-disk \
- || die
- emake || die
-}
-
-src_install() {
- make install DESTDIR=${D} || die
- dodoc AUTHORS README THANKS hacking/*.txt
-}