From b8e939b021d1f06ab188bc46f6397eca3d6cb739 Mon Sep 17 00:00:00 2001 From: Jeremy Olexa Date: Sun, 25 Jan 2009 02:43:49 +0000 Subject: Version bump by José Manuel Ferrer Ortiz, remove old Package-Manager: portage-2.2_rc23/cvs/Linux x86_64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app-emulation/fuse-utils/ChangeLog | 12 +++++-- .../files/fuse-utils-0.9.0-without-audiofile.patch | 27 --------------- .../fuse-utils/fuse-utils-0.10.0.1.ebuild | 28 ++++++++++++++++ .../fuse-utils/fuse-utils-0.9.0-r1.ebuild | 23 ------------- .../fuse-utils/fuse-utils-0.9.0-r2.ebuild | 38 ---------------------- 5 files changed, 38 insertions(+), 90 deletions(-) delete mode 100644 app-emulation/fuse-utils/files/fuse-utils-0.9.0-without-audiofile.patch create mode 100644 app-emulation/fuse-utils/fuse-utils-0.10.0.1.ebuild delete mode 100644 app-emulation/fuse-utils/fuse-utils-0.9.0-r1.ebuild delete mode 100644 app-emulation/fuse-utils/fuse-utils-0.9.0-r2.ebuild (limited to 'app-emulation') diff --git a/app-emulation/fuse-utils/ChangeLog b/app-emulation/fuse-utils/ChangeLog index 9a8855f81e71..89284ad3691d 100644 --- a/app-emulation/fuse-utils/ChangeLog +++ b/app-emulation/fuse-utils/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-emulation/fuse-utils -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse-utils/ChangeLog,v 1.6 2008/10/05 16:44:01 flameeyes Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse-utils/ChangeLog,v 1.7 2009/01/25 02:43:48 darkside Exp $ + +*fuse-utils-0.10.0.1 (25 Jan 2009) + + 25 Jan 2009; Jeremy Olexa + -files/fuse-utils-0.9.0-without-audiofile.patch, + -fuse-utils-0.9.0-r1.ebuild, -fuse-utils-0.9.0-r2.ebuild, + +fuse-utils-0.10.0.1.ebuild: + Version bump by José Manuel Ferrer Ortiz, remove old 05 Oct 2008; Diego Pettenò fuse-utils-0.9.0-r2.ebuild: diff --git a/app-emulation/fuse-utils/files/fuse-utils-0.9.0-without-audiofile.patch b/app-emulation/fuse-utils/files/fuse-utils-0.9.0-without-audiofile.patch deleted file mode 100644 index 17b288eba7ba..000000000000 --- a/app-emulation/fuse-utils/files/fuse-utils-0.9.0-without-audiofile.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- fuse-utils-0.9.0/configure.in 2008-01-05 18:03:07.000000000 +0100 -+++ configure.in 2008-06-02 20:07:40.000000000 +0200 -@@ -111,11 +111,19 @@ - fi - fi - --AM_PATH_AUDIOFILE( -- 0.2.3, -- AC_DEFINE([HAVE_LIB_AUDIOFILE], 1, [Defined if we've got audiofile]) -- audiofile=yes --) -+# Look for audiofile (default=yes) -+AC_MSG_CHECKING(whether to use audiofile) -+AC_ARG_WITH(audiofile, -+[ --without-audiofile don't use audiofile], -+if test "$withval" = no; then audiofile=no; else audiofile=yes; fi, -+audiofile=yes) -+AC_MSG_RESULT($audiofile) -+if test "$audiofile" = yes; then -+ AM_PATH_AUDIOFILE( -+ 0.2.3, -+ AC_DEFINE([HAVE_LIB_AUDIOFILE], 1, [Defined if we've got audiofile]) -+ ) -+fi - AM_CONDITIONAL(BUILD_AUDIOTOOLS, test "$audiofile" = yes) - - AC_OUTPUT(Makefile \ diff --git a/app-emulation/fuse-utils/fuse-utils-0.10.0.1.ebuild b/app-emulation/fuse-utils/fuse-utils-0.10.0.1.ebuild new file mode 100644 index 000000000000..908f85be96dd --- /dev/null +++ b/app-emulation/fuse-utils/fuse-utils-0.10.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse-utils/fuse-utils-0.10.0.1.ebuild,v 1.1 2009/01/25 02:43:48 darkside Exp $ + +DESCRIPTION="Utils for the 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 ~x86" +IUSE="audiofile" + +RDEPEND=">=app-emulation/libspectrum-0.5 + audiofile? ( >=media-libs/audiofile-0.2.3 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf $(use_with audiofile ) || die "Configure failed!" + emake || die "Make failed!" +} + +src_install() { + emake install DESTDIR="${D}" || die "install failed" + dodoc AUTHORS ChangeLog README + doman man/*.1 +} diff --git a/app-emulation/fuse-utils/fuse-utils-0.9.0-r1.ebuild b/app-emulation/fuse-utils/fuse-utils-0.9.0-r1.ebuild deleted file mode 100644 index 0948e86a2c16..000000000000 --- a/app-emulation/fuse-utils/fuse-utils-0.9.0-r1.ebuild +++ /dev/null @@ -1,23 +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/fuse-utils/fuse-utils-0.9.0-r1.ebuild,v 1.1 2008/06/02 02:56:41 darkside Exp $ - -DESCRIPTION="Utils for the 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="~x86" -IUSE="audiofile" - -DEPEND="${RDEPEND} - dev-util/pkgconfig" -RDEPEND=">=app-emulation/libspectrum-0.4.0 - audiofile? ( >=media-libs/audiofile-0.2.3 )" - -src_install() { - emake install DESTDIR="${D}" || die "install failed" - dodoc AUTHORS ChangeLog README - doman man/*.1 -} diff --git a/app-emulation/fuse-utils/fuse-utils-0.9.0-r2.ebuild b/app-emulation/fuse-utils/fuse-utils-0.9.0-r2.ebuild deleted file mode 100644 index df1ae5a63637..000000000000 --- a/app-emulation/fuse-utils/fuse-utils-0.9.0-r2.ebuild +++ /dev/null @@ -1,38 +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/fuse-utils/fuse-utils-0.9.0-r2.ebuild,v 1.3 2008/10/05 16:44:01 flameeyes Exp $ - -inherit eutils autotools - -DESCRIPTION="Utils for the 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 ~x86" -IUSE="audiofile" - -RDEPEND=">=app-emulation/libspectrum-0.4.0 - audiofile? ( >=media-libs/audiofile-0.2.3 )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - #submitted upstream, see bug #224321 - epatch "${FILESDIR}/${P}-without-audiofile.patch" - eautoreconf -} - -src_compile() { - econf $(use_with audiofile ) || die "Configure failed!" - emake || die "Make failed!" -} - -src_install() { - emake install DESTDIR="${D}" || die "install failed" - dodoc AUTHORS ChangeLog README - doman man/*.1 -} -- cgit v1.2.3-65-gdbad