public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/
Date: Mon,  5 Mar 2018 16:27:11 +0000 (UTC)	[thread overview]
Message-ID: <1520267226.618c318bc3ca0204b1d2e7a27827cbe93cdd741a.mgorny@gentoo> (raw)

commit:     618c318bc3ca0204b1d2e7a27827cbe93cdd741a
Author:     Jan Ziak <0xe2.0x9a.0x9b <AT> gmail <DOT> com>
AuthorDate: Sun Mar  4 09:28:30 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar  5 16:27:06 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=618c318b

app-emulation/fuse: bump to version 1.5.1

 app-emulation/fuse/Manifest          |  1 +
 app-emulation/fuse/fuse-1.5.1.ebuild | 64 ++++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/app-emulation/fuse/Manifest b/app-emulation/fuse/Manifest
index da21f77b84f..8df76452aa8 100644
--- a/app-emulation/fuse/Manifest
+++ b/app-emulation/fuse/Manifest
@@ -1,2 +1,3 @@
 DIST fuse-1.4.0.tar.gz 1652821 BLAKE2B b7d8c5cd8c5fb13e077029eeee6283c9d2a114057c83e29bacc1d99933b338011ce255b5df34b6039bcf03410af46bf586cb6d6ec038d53b8e83bad2308d2ed1 SHA512 e5d0e65820f54d0ac0447d50aa89ea4ba3e6bb717e270ae813c640a9b36fe015c68f194edacb5cbe8899ee7893c30cab4493ed297919e962e722e9d3e1f72001
 DIST fuse-1.5.0.tar.gz 1619748 BLAKE2B 6ffbea1c7a6572f2cdd3d293a438f6e37da2eadf299396358bed2e65db3aa9720333b62b28b4f0064ec5434c99a6a0b790737230f8ec0c01f96e50f594305bd1 SHA512 c13fdef6b23377e7d2b53e7f5b2db01447d12eafc0b9114fd8b83cd5058964a655a720810ab7dc6a6e1a1d9a33ffc787b5e46bf54df1259f4ba0ff78c3189421
+DIST fuse-1.5.1.tar.gz 1623081 BLAKE2B 4b6cf747d15bc2d33a0baba88254a08187e8a615564236835da19d32f9afb312d5a5c90ac07a88d904019626b153546ecd8cd09b88fa16731af94ea54cd0e346 SHA512 d5f5b8a0e61f298a955450de208b29f8ab4fc0133c5c58e596f36f3834c088c946e19d7437dd1a6e73a89d32dcaf6ca9ce0fed8ec310c37aa6a6568be482abe4

diff --git a/app-emulation/fuse/fuse-1.5.1.ebuild b/app-emulation/fuse/fuse-1.5.1.ebuild
new file mode 100644
index 00000000000..4b8b2fa01d8
--- /dev/null
+++ b/app-emulation/fuse/fuse-1.5.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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 memlimit png sdl svga X xml"
+
+# Only one UI back-end can be enabled at a time
+REQUIRED_USE="^^ ( X fbcon gtk sdl svga )"
+
+RDEPEND=">=app-emulation/libspectrum-1.4.1
+	dev-libs/glib:2
+	alsa? ( media-libs/alsa-lib )
+	ao? ( media-libs/libao )
+	gpm? ( sys-libs/gpm )
+	gtk? ( x11-libs/gtk+:3 )
+	joystick? ( media-libs/libjsw )
+	png? ( media-libs/libpng:0= sys-libs/zlib )
+	sdl? ( media-libs/libsdl )
+	svga? ( media-libs/svgalib )
+	X? ( x11-libs/libX11
+		x11-libs/libXext )
+	xml? ( dev-libs/libxml2:2 )"
+DEPEND="${RDEPEND}
+	fbcon? ( virtual/linux-sources )
+	dev-lang/perl
+	virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog README THANKS )
+
+src_configure() {
+	local myconf=(
+		--without-win32
+		$(use_with alsa)
+		$(use_with ao libao)
+		$(use_with gpm)
+		$(use_with joystick)
+		$(use_enable joystick ui-joystick)
+		$(use_enable memlimit smallmem)
+		$(use_with png)
+		$(use_with xml libxml2)
+	)
+
+	if use gtk; then
+		:
+	elif use sdl; then
+		myconf+=("--with-sdl")
+	elif use X; then
+		myconf+=("--without-gtk")
+	elif use svga; then
+		myconf+=("--with-svgalib")
+	elif use fbcon; then
+		myconf+=("--with-fb")
+	fi
+
+	econf "${myconf[@]}"
+}


             reply	other threads:[~2018-03-05 16:27 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-05 16:27 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-11 18:22 [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/ Andreas Sturmlechner
2023-05-23 19:53 Marek Szuba
2022-10-11  9:11 Marek Szuba
2022-06-29  6:53 Marek Szuba
2021-03-19 11:03 Marek Szuba
2021-03-18 15:04 Marek Szuba
2021-03-15 12:49 Marek Szuba
2021-03-05 19:39 Sam James
2020-10-10  7:22 Joonas Niilola
2020-10-10  7:22 Joonas Niilola
2018-12-16 19:30 Andreas Sturmlechner
2018-12-16 19:30 Andreas Sturmlechner
2018-11-28  9:58 Michał Górny
2018-10-18 19:38 Michał Górny
2018-10-18 19:38 Michał Górny
2018-07-07 12:39 Andreas Sturmlechner
2018-07-07 12:39 Andreas Sturmlechner
2018-05-12 15:55 Michał Górny
2018-05-12 15:55 Michał Górny
2018-05-12 15:55 Michał Górny
2018-04-05 14:12 Andreas Sturmlechner
2018-04-05 14:12 Andreas Sturmlechner
2018-04-05 14:12 Andreas Sturmlechner
2018-03-14 17:27 Michał Górny
2018-03-05 16:27 Michał Górny
2017-12-15  8:23 Patrice Clement
2017-12-10  9:27 Ulrich Müller
2017-09-14 22:21 Patrice Clement
2017-08-10 11:01 Michał Górny
2017-08-06 11:15 Michał Górny
2017-08-06 11:15 Michał Górny
2017-08-01 10:54 Marek Szuba
2017-08-01 10:54 Marek Szuba
2017-06-12 17:29 Andreas Hüttel
2017-03-08  7:37 Göktürk Yüksek
2016-10-12 18:11 Pacho Ramos
2016-08-27 16:37 Sergei Trofimovich
2016-08-06 12:47 Pacho Ramos
2016-04-01  2:29 Ian Delaney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1520267226.618c318bc3ca0204b1d2e7a27827cbe93cdd741a.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox