summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-emulation/fuse-utils/ChangeLog6
-rw-r--r--app-emulation/fuse-utils/files/fuse-utils-1.0.0-libgcrypt.patch36
-rw-r--r--app-emulation/fuse-utils/fuse-utils-1.0.0.ebuild43
3 files changed, 5 insertions, 80 deletions
diff --git a/app-emulation/fuse-utils/ChangeLog b/app-emulation/fuse-utils/ChangeLog
index 8aa0a200ed28..34f4736ed7b9 100644
--- a/app-emulation/fuse-utils/ChangeLog
+++ b/app-emulation/fuse-utils/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-emulation/fuse-utils
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse-utils/ChangeLog,v 1.17 2015/06/09 11:08:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse-utils/ChangeLog,v 1.18 2015/07/22 22:49:03 mrueg Exp $
+
+ 22 Jul 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/fuse-utils-1.0.0-libgcrypt.patch, -fuse-utils-1.0.0.ebuild:
+ Remove old.
09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Updating remote-id in metadata.xml
diff --git a/app-emulation/fuse-utils/files/fuse-utils-1.0.0-libgcrypt.patch b/app-emulation/fuse-utils/files/fuse-utils-1.0.0-libgcrypt.patch
deleted file mode 100644
index 6212cf670b4a..000000000000
--- a/app-emulation/fuse-utils/files/fuse-utils-1.0.0-libgcrypt.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- configure.in 2010-12-16 21:47:12.000000000 +0000
-+++ configure.in 2011-02-03 19:13:29.000000000 +0000
-@@ -48,12 +48,16 @@
- LDFLAGS="$LDFLAGS -L$prefix/lib"
- fi)
-
--dnl Check that libgcrypt is available
--AC_CHECK_LIB(gcrypt,gcry_check_version,
-- AC_DEFINE([HAVE_LIBGCRYPT], 1, [Defined if we've got libgcrypt])
-- GCRYPT_LIBS="$LIBS -lgcrypt"
-- gcrypt=yes
--)
-+dnl Check whether to use libgcrypt
-+AC_MSG_CHECKING(whether to use libgcrypt)
-+AC_ARG_WITH(libgcrypt,
-+[ --without-libgcrypt don't use libgcrypt],
-+if test "$withval" = no; then libgcrypt=no; else libgcrypt=yes; fi,
-+libgcrypt=yes)
-+AC_MSG_RESULT($libgcrypt)
-+if test "$libgcrypt" = yes; then
-+ AC_CHECK_HEADERS(gcrypt.h,LIBS="$LIBS -lgcrypt")
-+fi
- AC_SUBST(GCRYPT_LIBS)
- AM_CONDITIONAL(BUILD_RZXCHECK, test "$gcrypt" = yes)
-
---- audio2tape.h 2010-12-16 21:47:12.000000000 +0000
-+++ audio2tape.h 2011-02-03 19:13:02.000000000 +0000
-@@ -26,6 +26,8 @@
- #ifndef AUDIO2TAPE_H
- #define AUDIO2TAPE_H
-
-+#include <string.h>
-+
- class audio2tape_exception : public std::exception
- {
- public:
diff --git a/app-emulation/fuse-utils/fuse-utils-1.0.0.ebuild b/app-emulation/fuse-utils/fuse-utils-1.0.0.ebuild
deleted file mode 100644
index 73a4ee4b2a49..000000000000
--- a/app-emulation/fuse-utils/fuse-utils-1.0.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse-utils/fuse-utils-1.0.0.ebuild,v 1.3 2012/05/03 18:49:07 jdhore Exp $
-
-EAPI="3"
-
-inherit autotools eutils
-
-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 gcrypt"
-
-RDEPEND="~app-emulation/libspectrum-1.0.0[gcrypt?]
- audiofile? ( >=media-libs/audiofile-0.2.3 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare () {
- epatch "${FILESDIR}/${P}-libgcrypt.patch"
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with audiofile ) \
- $(use_with gcrypt libgcrypt) \
- || die "Configure failed!"
-}
-
-src_compile() {
- emake || die "Make failed!"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "install failed"
- dodoc AUTHORS ChangeLog README
- doman man/*.1
-}