public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-sports/speed-dreams/, games-sports/speed-dreams/files/
@ 2016-04-20  5:10 Mike Frysinger
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger @ 2016-04-20  5:10 UTC (permalink / raw
  To: gentoo-commits

commit:     23aeb75ade5d9f9399cd4c89e85053ce15dc9acb
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 05:10:03 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 05:10:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23aeb75a

games-sports/speed-dreams: fix build w/newer glibc #580054

 .../files/speed-dreams-1.4.0-math-hack.patch       | 25 ++++++++++++++++++++++
 .../speed-dreams/speed-dreams-1.4.0.ebuild         |  4 +++-
 2 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/games-sports/speed-dreams/files/speed-dreams-1.4.0-math-hack.patch b/games-sports/speed-dreams/files/speed-dreams-1.4.0-math-hack.patch
new file mode 100644
index 0000000..32b4f85
--- /dev/null
+++ b/games-sports/speed-dreams/files/speed-dreams-1.4.0-math-hack.patch
@@ -0,0 +1,25 @@
+https://sourceforge.net/p/speed-dreams/tickets/952/
+https://bugs.gentoo.org/580054
+
+--- a/src/modules/simu/simuv2/simu.cpp
++++ b/src/modules/simu/simuv2/simu.cpp
+@@ -61,7 +61,7 @@
+     if (isnan(car->ctrl->brakeCmd) || isinf(car->ctrl->brakeCmd)) car->ctrl->brakeCmd = 0;
+     if (isnan(car->ctrl->clutchCmd) || isinf(car->ctrl->clutchCmd)) car->ctrl->clutchCmd = 0;
+     if (isnan(car->ctrl->steer) || isinf(car->ctrl->steer)) car->ctrl->steer = 0;
+-    if (isnan(car->ctrl->gear) || isinf(car->ctrl->gear)) car->ctrl->gear = 0;
++    if (isnan((float)car->ctrl->gear) || isinf((float)car->ctrl->gear)) car->ctrl->gear = 0;
+ #else
+     if (isnan(car->ctrl->accelCmd)) car->ctrl->accelCmd = 0;
+     if (isnan(car->ctrl->brakeCmd)) car->ctrl->brakeCmd = 0;
+--- a/src/modules/simu/simuv3/simu.cpp
++++ b/src/modules/simu/simuv3/simu.cpp
+@@ -61,7 +61,7 @@
+     if (isnan(car->ctrl->brakeCmd) || isinf(car->ctrl->brakeCmd)) car->ctrl->brakeCmd = 0;
+     if (isnan(car->ctrl->clutchCmd) || isinf(car->ctrl->clutchCmd)) car->ctrl->clutchCmd = 0;
+     if (isnan(car->ctrl->steer) || isinf(car->ctrl->steer)) car->ctrl->steer = 0;
+-    if (isnan(car->ctrl->gear) || isinf(car->ctrl->gear)) car->ctrl->gear = 0;
++    if (isnan((float)car->ctrl->gear) || isinf((float)car->ctrl->gear)) car->ctrl->gear = 0;
+ #else
+     if (isnan(car->ctrl->accelCmd)) car->ctrl->accelCmd = 0;
+     if (isnan(car->ctrl->brakeCmd)) car->ctrl->brakeCmd = 0;

diff --git a/games-sports/speed-dreams/speed-dreams-1.4.0.ebuild b/games-sports/speed-dreams/speed-dreams-1.4.0.ebuild
index 835908e..cee94c8 100644
--- a/games-sports/speed-dreams/speed-dreams-1.4.0.ebuild
+++ b/games-sports/speed-dreams/speed-dreams-1.4.0.ebuild
@@ -45,7 +45,8 @@ src_prepare() {
 	epatch \
 			"${FILESDIR}"/${P}-asneeded.patch \
 			"${FILESDIR}"/${P}-automake.patch \
-			"${FILESDIR}"/${P}-libpng15.patch
+			"${FILESDIR}"/${P}-libpng15.patch \
+			"${FILESDIR}"/${P}-math-hack.patch
 
 	sed -i \
 		-e '/ADDCFLAGS/s: -O2::' \
@@ -54,6 +55,7 @@ src_prepare() {
 		-e '/COPYING/s:=.*:= \\:' \
 		Makefile || die
 	sed -i \
+		-e '/LDFLAGS/s:-L/usr/lib::' \
 		-e "/^datadir/s:=.*:= ${GAMES_DATADIR}/${PN}:" \
 		Make-config.in || die
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-sports/speed-dreams/, games-sports/speed-dreams/files/
@ 2016-09-29 21:50 Austin English
  0 siblings, 0 replies; 3+ messages in thread
From: Austin English @ 2016-09-29 21:50 UTC (permalink / raw
  To: gentoo-commits

commit:     b6f264d5d2a8f5abed68810df2ba021ba4549c43
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 29 18:38:52 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Sep 29 21:50:30 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6f264d5

games-sports/speed-dreams: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: portage-2.3.0

 .../files/speed-dreams-1.4.0-asneeded.patch        | 24 +++---
 .../files/speed-dreams-1.4.0-automake.patch        |  8 +-
 .../speed-dreams/speed-dreams-1.4.0-r1.ebuild      | 86 ++++++++++++++++++++++
 3 files changed, 102 insertions(+), 16 deletions(-)

diff --git a/games-sports/speed-dreams/files/speed-dreams-1.4.0-asneeded.patch b/games-sports/speed-dreams/files/speed-dreams-1.4.0-asneeded.patch
index 837a251..779119d 100644
--- a/games-sports/speed-dreams/files/speed-dreams-1.4.0-asneeded.patch
+++ b/games-sports/speed-dreams/files/speed-dreams-1.4.0-asneeded.patch
@@ -1,5 +1,5 @@
---- configure.in
-+++ configure.in
+--- a/configure.in
++++ b/configure.in
 @@ -123,8 +123,7 @@
  AC_CHECK_LIB(Xrandr, XRRQueryVersion,,AC_MSG_ERROR([Can't find libXrandr. Please check config.log and if you can't solve the problem send the file to speed-dreams-users@lists.sourceforge.net with the subject \"Speed Dreams compilation problem\"]))
  AC_CHECK_LIB(openal, alEnable,, AC_MSG_ERROR([Can't find AL/al.h. OpenAL can be found on http://www.openal.org/]))
@@ -19,8 +19,8 @@
  AC_CHECK_LIB(plibul, main,,AC_MSG_ERROR([Can't find libplibul. PLIB can be found on http://plib.sourceforge.net/]))
  AC_CHECK_LIB(plibsg, main,,AC_MSG_ERROR([Can't find libplibsg. PLIB can be found on http://plib.sourceforge.net/]))
  AC_CHECK_LIB(plibsl, main,,AC_MSG_ERROR([Can't find libplibsl. PLIB can be found on http://plib.sourceforge.net/]))
---- Make-default.mk
-+++ Make-default.mk
+--- a/Make-default.mk
++++ b/Make-default.mk
 @@ -402,7 +402,7 @@
  ifdef PROGRAM
  
@@ -65,8 +65,8 @@
  	@D=`pwd` ; \
  	createdir="${EXPORTBASE}/${MODULEDIR}" ; \
  	$(mkinstalldirs) $$createdir ; \
---- src/libs/client/Makefile
-+++ src/libs/client/Makefile
+--- a/src/libs/client/Makefile
++++ b/src/libs/client/Makefile
 @@ -23,6 +23,8 @@
  SOURCES   = entry.cpp mainmenu.cpp splash.cpp exitmenu.cpp \
  	    optionmenu.cpp
@@ -76,8 +76,8 @@
  LIBS      =  -lplibssg -lplibsg -lplibul
  
  EXPDIR    = include
---- src/libs/Makefile
-+++ src/libs/Makefile
+--- a/src/libs/Makefile
++++ b/src/libs/Makefile
 @@ -23,7 +23,7 @@
  
  TOOLSUBDIRS	= txml
@@ -87,8 +87,8 @@
  			  portability math
  
  PKGSUBDIRS	= $(SUBDIRS)
---- src/libs/raceengineclient/Makefile
-+++ src/libs/raceengineclient/Makefile
+--- a/src/libs/raceengineclient/Makefile
++++ b/src/libs/raceengineclient/Makefile
 @@ -23,6 +23,8 @@
  SOURCES      = singleplayer.cpp raceinit.cpp racemain.cpp racemanmenu.cpp racestate.cpp racegl.cpp \
  	       raceengine.cpp raceresults.cpp
@@ -98,8 +98,8 @@
  EXPDIR       = include
  
  EXPORTS      = singleplayer.h raceinit.h
---- src/libs/tgf/Makefile
-+++ src/libs/tgf/Makefile
+--- a/src/libs/tgf/Makefile
++++ b/src/libs/tgf/Makefile
 @@ -29,6 +29,7 @@
  		profiler.cpp \
  		hash.cpp

diff --git a/games-sports/speed-dreams/files/speed-dreams-1.4.0-automake.patch b/games-sports/speed-dreams/files/speed-dreams-1.4.0-automake.patch
index 56f9b9b..72c755a 100644
--- a/games-sports/speed-dreams/files/speed-dreams-1.4.0-automake.patch
+++ b/games-sports/speed-dreams/files/speed-dreams-1.4.0-automake.patch
@@ -1,5 +1,5 @@
---- configure.in.old	2012-03-13 08:15:34.891163505 +0100
-+++ configure.in	2012-03-13 08:18:40.154092687 +0100
+--- a/configure.in	2012-03-13 08:15:34.891163505 +0100
++++ b/configure.in	2012-03-13 08:18:40.154092687 +0100
 @@ -14,9 +14,10 @@
  #
  ##############################################################################
@@ -13,8 +13,8 @@
  
  dnl Checks for programs.
  AC_PROG_CC
---- Makefile.old	2012-03-13 10:43:30.563720337 +0100
-+++ Makefile	2012-03-13 10:44:26.339794119 +0100
+--- a/Makefile	2012-03-13 10:43:30.563720337 +0100
++++ b/Makefile	2012-03-13 10:44:26.339794119 +0100
 @@ -88,17 +88,7 @@
  -include ${MAKE_DEFAULT}
  

diff --git a/games-sports/speed-dreams/speed-dreams-1.4.0-r1.ebuild b/games-sports/speed-dreams/speed-dreams-1.4.0-r1.ebuild
new file mode 100644
index 00000000..b45edf3
--- /dev/null
+++ b/games-sports/speed-dreams/speed-dreams-1.4.0-r1.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools eutils versionator
+
+DESCRIPTION="A fork of the famous open racing car simulator TORCS"
+HOMEPAGE="http://speed-dreams.sourceforge.net/"
+SRC_URI="mirror://sourceforge/speed-dreams/${P}-r2307-src.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="xrandr"
+
+RDEPEND="virtual/opengl
+	virtual/glu
+	media-libs/freealut
+	media-libs/freeglut
+	>=media-libs/libpng-1.2.40:0
+	media-libs/openal
+	sys-libs/zlib
+	x11-libs/libX11
+	x11-libs/libXxf86vm
+	xrandr? ( x11-libs/libXrandr )"
+DEPEND="${RDEPEND}
+	>=media-libs/plib-1.8.3
+	x11-libs/libICE
+	x11-libs/libSM
+	x11-libs/libXext
+	x11-libs/libXi
+	x11-libs/libXt
+	x11-libs/libXmu
+	x11-libs/libXrender
+	x11-proto/xproto
+	xrandr? ( x11-proto/randrproto )"
+
+S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)-src
+
+PATCHES=(
+	"${FILESDIR}"/${P}-asneeded.patch
+	"${FILESDIR}"/${P}-automake.patch
+	"${FILESDIR}"/${P}-libpng15.patch
+	"${FILESDIR}"/${P}-math-hack.patch
+)
+
+src_prepare() {
+	default
+
+	# https://sourceforge.net/apps/trac/speed-dreams/ticket/111
+	MAKEOPTS="${MAKEOPTS} -j1"
+
+	sed -i \
+		-e '/ADDCFLAGS/s: -O2::' \
+		configure.in || die
+	sed -i \
+		-e '/COPYING/s:=.*:= \\:' \
+		Makefile || die
+	sed -i \
+		-e '/LDFLAGS/s:-L/usr/lib::' \
+		-e "/^datadir/s:=.*:= /usr/share/games/${PN}:" \
+		Make-config.in || die
+
+	eautoreconf
+}
+
+src_configure() {
+	addpredict $(echo /dev/snd/controlC? | sed 's/ /:/g')
+	[[ -e /dev/dsp ]] && addpredict /dev/dsp
+	econf \
+		--prefix=/usr \
+		--bindir=/usr/bin \
+		$(use_enable xrandr)
+}
+
+src_install() {
+	emake DESTDIR="${D}" install datainstall
+
+	find "${D}" -name Makefile -exec rm -f {} +
+
+	dodoc CHANGES README TODO
+
+	newicon icon.svg ${PN}.svg
+	make_desktop_entry ${PN} "Speed Dreams"
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-sports/speed-dreams/, games-sports/speed-dreams/files/
@ 2021-08-06 12:45 Ionen Wolkens
  0 siblings, 0 replies; 3+ messages in thread
From: Ionen Wolkens @ 2021-08-06 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     5b33038110b1b2092d48f14a3e5208ade3bcfe9e
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  6 11:05:39 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Aug  6 12:43:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b330381

games-sports/speed-dreams: add 2.2.3_rc1

Long overdue 2.x bump with entirely new ebuild.

With 2.2.2 being nearly 3 years old, picked the newer 2.2.3_rc1.

Addons uncondtional unlike formerly proposed given currently doesn't
build without WIP addons and upstream no longer provides a patch.

Use of ${PN}-2 not strictly necessary (won't be slotting), but it
matches what upstream uses.

Closes: https://bugs.gentoo.org/415913
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-sports/speed-dreams/Manifest                 |  4 ++
 .../speed-dreams-2.2.3_rc1-xmlversion-rpath.patch  | 11 +++
 games-sports/speed-dreams/metadata.xml             | 22 +++---
 .../speed-dreams/speed-dreams-2.2.3_rc1.ebuild     | 83 ++++++++++++++++++++++
 4 files changed, 110 insertions(+), 10 deletions(-)

diff --git a/games-sports/speed-dreams/Manifest b/games-sports/speed-dreams/Manifest
index 5bd75a5398a..37ac43b361e 100644
--- a/games-sports/speed-dreams/Manifest
+++ b/games-sports/speed-dreams/Manifest
@@ -1 +1,5 @@
 DIST speed-dreams-1.4.0-r2307-src.tar.bz2 332667666 BLAKE2B 17455c6fc6bbe0cb4b5e00d4217eb49e0f6e39a8aa389f304771e32429c48e2e6bc834d8d0c7a01927376c5b37ae8e7b27399da88784b5f46b9549d46d01222f SHA512 6ae88691f52480351825c20c8bfb3ff54783b84bfbbc385ae2c0578991fa9025b16dcdc4ce136b85246a2a479452f2b209ecbec2be0a7ae85818929ea5fa1195
+DIST speed-dreams-src-base-2.2.3-rc1-r7601.tar.xz 212142540 BLAKE2B 894c29281d4ee75b7917fac2f98e2509beb8b6c92b2743f24636407fb3ea54a362ec6bf8cd13e79e96696d83caa5db9c6d05a5baf74228d07c7d8d75542f8c12 SHA512 42dd12283e55289e00e25edb769e5786f0d45b6be4c3056f72e6af7cdb2493fc7266f0485a91118c9c9b1a609fe78ce97c10db006ee0dd51e07b5fdb969026b3
+DIST speed-dreams-src-hq-cars-and-tracks-2.2.3-rc1-r7601.tar.xz 578684928 BLAKE2B eeb567bc7bd713c349037e3c630791ead8dd53c4e7c8d8f75b534d72e85352e546a031211aae4a42338f64b3d21496318b72b08e9ffbb3615439d82fd983e424 SHA512 a9ca5926bdf70173df18abd6be7be54705c916207371595bda1bdd5e70d5ee9105f0fd16a72f5a713ea359b2b001b6f8a39251aac46e117ea4bc9e5dad7b69b9
+DIST speed-dreams-src-more-hq-cars-and-tracks-2.2.3-rc1-r7601.tar.xz 668750172 BLAKE2B 851f31e52acd604b5bcb0ec7b393d33f513a6f2f84239160709fde6db3a23ec94dc39d554c9fb3bcaddcb90c308ac5d11a74a9e9fd410b4885fc9bedee60fb50 SHA512 1aa25700bb60c7a4d47817f821f54603dca9aaf662a23607a3fad367352f69c5182825a8ff4051736095b1277d4de017f5106200f77d74cb7a59780c97d3536c
+DIST speed-dreams-src-wip-cars-and-tracks-2.2.3-rc1-r7601.tar.xz 429292132 BLAKE2B ffb20028ec792a423cd745db1a47274a5db9115510c33bf28c7323bf23a024aa3441dab045b6e81fdc3d17ac22f8919ffa044d07932d242f8cefaa7e274cbc51 SHA512 a31a592c6d86bc12b8d8df6013fc783677e611f4953b6a8650465dbd6ebfb0adcf51193e5003ff38b30619f145c752fe18121d2630bd64687bac113cd8d8c283

diff --git a/games-sports/speed-dreams/files/speed-dreams-2.2.3_rc1-xmlversion-rpath.patch b/games-sports/speed-dreams/files/speed-dreams-2.2.3_rc1-xmlversion-rpath.patch
new file mode 100644
index 00000000000..784a35f9826
--- /dev/null
+++ b/games-sports/speed-dreams/files/speed-dreams-2.2.3_rc1-xmlversion-rpath.patch
@@ -0,0 +1,11 @@
+Building with install rpath makes things simpler, but this is an issue
+for used-only-at-build-time xmlversion. Suboptimal fix given all these
+are built for CHOST.
+--- a/src/tools/xmlversion/CMakeLists.txt
++++ b/src/tools/xmlversion/CMakeLists.txt
+@@ -2,4 +2,5 @@
+ PROJECT(xmlversion)
+ 
++SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
+ SET(XMLVERSION_SOURCES main.cpp)
+ 

diff --git a/games-sports/speed-dreams/metadata.xml b/games-sports/speed-dreams/metadata.xml
index 7585d6ad418..98a79c4a7da 100644
--- a/games-sports/speed-dreams/metadata.xml
+++ b/games-sports/speed-dreams/metadata.xml
@@ -1,14 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="project">
-    <email>games@gentoo.org</email>
-    <name>Gentoo Games Project</name>
-  </maintainer>
-  <use>
-    <flag name="xrandr">Enable support for the X xrandr extension</flag>
-  </use>
-  <upstream>
-    <remote-id type="sourceforge">speed-dreams</remote-id>
-  </upstream>
+	<maintainer type="project">
+		<email>games@gentoo.org</email>
+		<name>Gentoo Games Project</name>
+	</maintainer>
+	<use>
+		<flag name="osggraph">Enable the new work-in-progress 3D engine using <pkg>dev-games/openscenegraph</pkg></flag>
+		<flag name="webstats">Enable support for sending racing statistics to a web server (experimental)</flag>
+		<flag name="xrandr">Enable support for the X xrandr extension</flag>
+	</use>
+	<upstream>
+		<remote-id type="sourceforge">speed-dreams</remote-id>
+	</upstream>
 </pkgmetadata>

diff --git a/games-sports/speed-dreams/speed-dreams-2.2.3_rc1.ebuild b/games-sports/speed-dreams/speed-dreams-2.2.3_rc1.ebuild
new file mode 100644
index 00000000000..2c31525010c
--- /dev/null
+++ b/games-sports/speed-dreams/speed-dreams-2.2.3_rc1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake desktop
+
+MY_PV="$(ver_rs 3 -)-r7601"
+
+DESCRIPTION="Fork of the famous open racing car simulator TORCS"
+HOMEPAGE="http://www.speed-dreams.org/"
+SRC_URI="
+	mirror://sourceforge/speed-dreams/${PN}-src-base-${MY_PV}.tar.xz
+	mirror://sourceforge/speed-dreams/${PN}-src-hq-cars-and-tracks-${MY_PV}.tar.xz
+	mirror://sourceforge/speed-dreams/${PN}-src-more-hq-cars-and-tracks-${MY_PV}.tar.xz
+	mirror://sourceforge/speed-dreams/${PN}-src-wip-cars-and-tracks-${MY_PV}.tar.xz"
+S="${WORKDIR}"
+
+LICENSE="GPL-2+ BitstreamVera CC0-1.0 Free-Art-1.2 OFL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug osggraph webstats"
+
+RDEPEND="
+	dev-games/freesolid
+	dev-libs/expat
+	media-libs/libpng:=
+	media-libs/libsdl2[X,haptic,opengl,joystick,video]
+	media-libs/libvorbis
+	media-libs/openal
+	media-libs/plib
+	net-libs/enet:1.3
+	sys-libs/zlib:=
+	virtual/glu
+	virtual/jpeg
+	virtual/opengl
+	osggraph? ( dev-games/openscenegraph:=[png] )
+	webstats? ( net-misc/curl )"
+DEPEND="
+	${RDEPEND}
+	x11-base/xorg-proto"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-xmlversion-rpath.patch
+)
+
+src_configure() {
+	local mycmakeargs=(
+		-DCMAKE_BUILD_WITH_INSTALL_RPATH=yes # see xmlversion-rpath patch
+		-DOPTION_3RDPARTY_SOLID=yes
+		-DOPTION_HUDDEBUG=$(usex debug)
+		-DOPTION_OFFICIAL_ONLY=yes
+		-DOPTION_OSGGRAPH=$(usex osggraph)
+		-DOPTION_TRACE_LEVEL=$(usex debug 5 3)
+		-DOPTION_WEBSERVER=$(usex webstats)
+		-DOpenGL_GL_PREFERENCE=LEGACY # legacy needed for gl*ARB symbols
+		-DSD_BINDIR="${EPREFIX}"/usr/bin
+		-DSD_DATADIR="${EPREFIX}"/usr/share/${PN}-2
+		-DSD_LIBDIR="${EPREFIX}"/usr/$(get_libdir)/${PN}-2
+
+		# These features currently lack official support and portions
+		# of the required code is missing in release tarballs.
+		# Check if these directories exist on a version bump.
+		#-DOPTION_3RDPARTY_SQLITE3=yes # src/modules/simu/simureplay/
+		#-DOPTION_CLIENT_SERVER=yes # src/modules/csnetworking/
+	)
+
+	cmake_src_configure
+}
+
+src_install() {
+	local HTML_DOCS=( doc/faq/faq.html doc/userman/. )
+	cmake_src_install
+
+	newicon data/data/icons/icon.png ${PN}-2.png
+	make_desktop_entry ${PN}-2 "Speed Dreams 2" ${PN}-2
+}
+
+pkg_postinst() {
+	# Issue reproduced in testing, warn in case it's widespread.
+	elog "If you experience freezes in menus, try to disable menu music in options."
+	elog "See: https://sourceforge.net/p/speed-dreams/tickets/973/"
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-06 12:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-29 21:50 [gentoo-commits] repo/gentoo:master commit in: games-sports/speed-dreams/, games-sports/speed-dreams/files/ Austin English
  -- strict thread matches above, loose matches on Subject: below --
2021-08-06 12:45 Ionen Wolkens
2016-04-20  5:10 Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox