public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/epiar/files/, games-arcade/epiar/
@ 2021-04-07  1:58 Sam James
  0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2021-04-07  1:58 UTC (permalink / raw
  To: gentoo-commits

commit:     b37e88acde2bc04a4d132d0ead74ff7c511260b1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  7 00:35:27 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr  7 01:57:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b37e88ac

games-arcade/epiar: add 0.5.1

Includes patches to:
* Unbundle Lua 5.1
* Fix Bashisms

Signed-off-by: Sam James <sam <AT> gentoo.org>

 games-arcade/epiar/Manifest                        |  1 +
 games-arcade/epiar/epiar-0.5.1.ebuild              | 49 ++++++++++++++++++++++
 .../epiar/files/epiar-0.5.1-fix-bashisms.patch     | 41 ++++++++++++++++++
 .../epiar/files/epiar-0.5.1-unbundle-lua5.1.patch  | 49 ++++++++++++++++++++++
 4 files changed, 140 insertions(+)

diff --git a/games-arcade/epiar/Manifest b/games-arcade/epiar/Manifest
index baa5cbae42a..2c4d09e0caa 100644
--- a/games-arcade/epiar/Manifest
+++ b/games-arcade/epiar/Manifest
@@ -1 +1,2 @@
 DIST epiar-0.5.0-src.zip 8809392 BLAKE2B c29c541f5841da91d13f7ccddfa2d2175265a434ae03e2ed87a64cd5c177d7139ff2cf44ec679ec023fe783427868f0f234c6f5f49d0d52ab08be852d424ba59 SHA512 22d8655aefd3aa071de064aeeed40d8780fb32ee702e657c8b8a723c381b6825ae9b5820cf5b29991e14bc264c443d0b24f88656b4997a6270383aa080c15f3e
+DIST epiar-0.5.1.tar.gz 35576547 BLAKE2B 6648eeccbe86e6935f53d83e5a58aa5839dbec2f5a8c408fd4d8a95e303daa8877c001f5dd4e37a2b72b3c24df646236c850c57c1a1d000fca63177cf075c729 SHA512 ce09aaafc455f3f9721d46a1703bf110ae00041234627b2b5fb4a9489f38672d0d0600b01a65d210728a50b596a51aacddc525d50d1138a6959db421b9384c40

diff --git a/games-arcade/epiar/epiar-0.5.1.ebuild b/games-arcade/epiar/epiar-0.5.1.ebuild
new file mode 100644
index 00000000000..0d640921c5d
--- /dev/null
+++ b/games-arcade/epiar/epiar-0.5.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-1 )
+inherit autotools lua-single
+
+DESCRIPTION="A space adventure/combat game"
+HOMEPAGE="https://epiar.net/"
+SRC_URI="https://github.com/cthielen/Epiar/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~x86"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+RDEPEND="
+	dev-games/physfs
+	dev-libs/libxml2
+	media-libs/ftgl
+	media-libs/libsdl[video]
+	media-libs/sdl-image[png]
+	${LUA_DEPS}
+"
+DEPEND="
+	${RDEPEND}
+	x11-libs/libX11
+	virtual/opengl
+"
+BDEPEND="
+	app-arch/unzip
+	virtual/pkgconfig
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.5.1-unbundle-lua5.1.patch
+	"${FILESDIR}"/${PN}-0.5.1-fix-bashisms.patch
+)
+
+src_prepare() {
+	default
+
+	# Remove bundled Lua 5.1
+	rm -rf source/lua || die
+
+	eautoreconf
+}

diff --git a/games-arcade/epiar/files/epiar-0.5.1-fix-bashisms.patch b/games-arcade/epiar/files/epiar-0.5.1-fix-bashisms.patch
new file mode 100644
index 00000000000..cc064799366
--- /dev/null
+++ b/games-arcade/epiar/files/epiar-0.5.1-fix-bashisms.patch
@@ -0,0 +1,41 @@
+From 99b92a9d29f61beae05227c4f10ed54c41c02b11 Mon Sep 17 00:00:00 2001
+From: Sam James <sam@gentoo.org>
+Date: Wed, 7 Apr 2021 00:29:01 +0000
+Subject: [PATCH 2/2] Fix bashisms
+
+---
+ configure.ac | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index b5a70d5..4d3d598 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -22,13 +22,13 @@ AC_PROG_RANLIB
+ AC_LANG(C++)
+ 
+ dnl Check for a C++ compiler
+-if test "$ac_cv_prog_cxx_g" == no
++if test "$ac_cv_prog_cxx_g" = no
+ then
+ 	AC_MSG_ERROR([Cannot find a working C++ compiler])
+ fi
+ 
+ dnl Set PKG_CONFIG if necessary
+-if test "$PKG_CONFIG" == ""
++if test "$PKG_CONFIG" = ""
+ then
+ 	PKG_CONFIG=`which pkg-config`
+ fi
+@@ -71,7 +71,7 @@ AC_CHECK_LIB(physfs, PHYSFS_init, have_physfs_lib=yes)
+ if test x$have_physfs_hdr = xyes -a x$have_physfs_lib = xyes; then
+ 	enable_physfs="yes"
+ else
+-dnl if test "$ac_cv_prog_cxx_g" == no
++dnl if test "$ac_cv_prog_cxx_g" = no
+ dnl then
+ 	AC_MSG_ERROR([Could not find PhysicsFS])
+ dnl fi
+-- 
+2.31.1
+

diff --git a/games-arcade/epiar/files/epiar-0.5.1-unbundle-lua5.1.patch b/games-arcade/epiar/files/epiar-0.5.1-unbundle-lua5.1.patch
new file mode 100644
index 00000000000..e80615e549b
--- /dev/null
+++ b/games-arcade/epiar/files/epiar-0.5.1-unbundle-lua5.1.patch
@@ -0,0 +1,49 @@
+From 0ed05474a5ea50cc972fae620fd1580ed0026fca Mon Sep 17 00:00:00 2001
+From: Sam James <sam@gentoo.org>
+Date: Wed, 7 Apr 2021 00:28:07 +0000
+Subject: [PATCH 1/2] Unbundle Lua 5.1 and dynamically link with system copy
+
+Signed-off-by: Sam James <sam@gentoo.org>
+---
+ Makefile.am  | 6 ++----
+ configure.ac | 3 +++
+ 2 files changed, 5 insertions(+), 4 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index 334b80e..b24ad29 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -1,4 +1,4 @@
+-AM_CXXFLAGS = -I$(top_srcdir)/source/ -I$(top_srcdir)/source/lua/src
++AM_CXXFLAGS = -I$(top_srcdir)/source/ $(LUA_CFLAGS)
+ 
+ bin_PROGRAMS = epiar
+ 
+@@ -74,9 +74,7 @@ epiar_SOURCES = source/main.cpp \
+                 source/Utilities/trig.cpp \
+                 source/Utilities/xml.cpp
+ 
+-epiar_LDADD = source/lua/src/liblua.a
+-
+-SUBDIRS=source/lua
++epiar_LDADD = $(LUA_LIBS)
+ 
+ include resources/Animations/Makefile.am
+ include resources/audio/Makefile.am
+diff --git a/configure.ac b/configure.ac
+index 17202ae..b5a70d5 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -99,6 +99,9 @@ case "$target" in *-apple-darwin*)
+ 	LIBS="$LIBS `xml2-config --libs`"
+ esac
+ 
++dnl Check for Lua 5.1
++PKG_CHECK_MODULES([LUA], [lua5.1], [], [AC_MSG_ERROR([Could not find needed Lua 5.1])])
++
+ dnl Check for SDL
+ SDL_VERSION=1.2.10
+ 
+-- 
+2.31.1
+


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

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/epiar/files/, games-arcade/epiar/
@ 2021-06-23  2:24 Ionen Wolkens
  0 siblings, 0 replies; 2+ messages in thread
From: Ionen Wolkens @ 2021-06-23  2:24 UTC (permalink / raw
  To: gentoo-commits

commit:     ff443e5c584aeb3212348ed4c5d6f6c3509861c3
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 23 00:03:45 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Jun 23 02:22:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff443e5c

games-arcade/epiar: drop 0.5-r1

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-arcade/epiar/Manifest                        |   1 -
 games-arcade/epiar/epiar-0.5-r1.ebuild             |  66 ---
 .../epiar/files/epiar-0.5-Makefile.linux.patch     |  20 -
 games-arcade/epiar/files/epiar-0.5-gcc41.patch     |  10 -
 games-arcade/epiar/files/epiar-0.5-paths.patch     |  86 ----
 .../epiar/files/epiar-0.5-respect-CC.patch         |  37 --
 games-arcade/epiar/files/epiar-0.5-underlink.patch |  10 -
 .../epiar/files/epiar-0.5-unsilence-build.patch    | 445 ---------------------
 8 files changed, 675 deletions(-)

diff --git a/games-arcade/epiar/Manifest b/games-arcade/epiar/Manifest
index 2c4d09e0caa..269567abfb5 100644
--- a/games-arcade/epiar/Manifest
+++ b/games-arcade/epiar/Manifest
@@ -1,2 +1 @@
-DIST epiar-0.5.0-src.zip 8809392 BLAKE2B c29c541f5841da91d13f7ccddfa2d2175265a434ae03e2ed87a64cd5c177d7139ff2cf44ec679ec023fe783427868f0f234c6f5f49d0d52ab08be852d424ba59 SHA512 22d8655aefd3aa071de064aeeed40d8780fb32ee702e657c8b8a723c381b6825ae9b5820cf5b29991e14bc264c443d0b24f88656b4997a6270383aa080c15f3e
 DIST epiar-0.5.1.tar.gz 35576547 BLAKE2B 6648eeccbe86e6935f53d83e5a58aa5839dbec2f5a8c408fd4d8a95e303daa8877c001f5dd4e37a2b72b3c24df646236c850c57c1a1d000fca63177cf075c729 SHA512 ce09aaafc455f3f9721d46a1703bf110ae00041234627b2b5fb4a9489f38672d0d0600b01a65d210728a50b596a51aacddc525d50d1138a6959db421b9384c40

diff --git a/games-arcade/epiar/epiar-0.5-r1.ebuild b/games-arcade/epiar/epiar-0.5-r1.ebuild
deleted file mode 100644
index ba57731041d..00000000000
--- a/games-arcade/epiar/epiar-0.5-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="A space adventure/combat game"
-HOMEPAGE="https://sourceforge.net/projects/epiar/"
-SRC_URI="mirror://sourceforge/epiar/${P}.0-src.zip"
-S="${WORKDIR}"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86"
-
-RDEPEND="
-	media-libs/libsdl[video]
-	media-libs/sdl-image[png]
-"
-DEPEND="
-	${RDEPEND}
-	x11-libs/libX11
-	virtual/opengl
-"
-BDEPEND="app-arch/unzip"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-paths.patch
-	"${FILESDIR}"/${P}-gcc41.patch
-	"${FILESDIR}"/${P}-Makefile.linux.patch
-	"${FILESDIR}"/${P}-underlink.patch
-	"${FILESDIR}"/${P}-unsilence-build.patch
-	"${FILESDIR}"/${P}-respect-CC.patch
-)
-
-src_prepare() {
-	default
-
-	append-cflags -fcommon
-
-	sed -i \
-		-e "/^CFLAGS/s:-pg -g:${CFLAGS} ${CPPFLAGS} ${LDFLAGS}:" \
-		Makefile.linux || die
-
-	sed -i \
-		-e "s:GENTOO_DATADIR:/usr/share/${PN}/:" \
-		src/main.c || die
-}
-
-src_compile() {
-	emake \
-		-j1 \
-		-f Makefile.linux \
-		CC="$(tc-getCC)"
-}
-
-src_install() {
-	dobin epiar
-
-	insinto /usr/share/${PN}
-	doins -r missions *.eaf
-
-	keepdir /usr/share/${PN}/plugins
-	dodoc AUTHORS ChangeLog README
-}

diff --git a/games-arcade/epiar/files/epiar-0.5-Makefile.linux.patch b/games-arcade/epiar/files/epiar-0.5-Makefile.linux.patch
deleted file mode 100644
index baf89abc3f9..00000000000
--- a/games-arcade/epiar/files/epiar-0.5-Makefile.linux.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/Makefile.linux
-+++ b/Makefile.linux
-@@ -24,7 +24,7 @@
- 	@echo Building Epiar 0.5.0 ...
- 	@$(CC) $(CFLAGS) -I/usr/X11R6/lib/ $(OBJS) -o epiar $(LIBS)
- 	@echo Building plugins ...
--	@make -f Makefile.linux plugin
-+	@$(MAKE) -f Makefile.linux plugin
- 	@echo Epiar 0.5.0 build complete.
- 	@echo
- 	@echo Type './epiar' to play.
-@@ -33,7 +33,7 @@
- 	@echo Building Epiar 0.5.0 and linking statically ...
- 	@$(CC) $(CFLAGS) -L/usr/X11R6/lib -L/opt/gnome-2.1/lib $(OBJS) -o epiar $(STATIC_LIBS)
- 	@echo Building plugins ...
--	@make plugin
-+	@$(MAKE) plugin
- 	@echo Epiar 0.5.0 build complete.
- 	@echo
- 	@echo Type './epiar' to play.

diff --git a/games-arcade/epiar/files/epiar-0.5-gcc41.patch b/games-arcade/epiar/files/epiar-0.5-gcc41.patch
deleted file mode 100644
index 7bc0e28d99c..00000000000
--- a/games-arcade/epiar/files/epiar-0.5-gcc41.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/src/game/game.h
-+++ b/src/game/game.h
-@@ -2,7 +2,6 @@
- #include "includes.h"
- 
- extern Uint32 average_loop_time;
--extern Uint32 game_start_time;
- extern Uint32 total_play_time, total_frames_drawn;
- extern float average_session_fps, current_fps;
- 

diff --git a/games-arcade/epiar/files/epiar-0.5-paths.patch b/games-arcade/epiar/files/epiar-0.5-paths.patch
deleted file mode 100644
index 0401a029e03..00000000000
--- a/games-arcade/epiar/files/epiar-0.5-paths.patch
+++ /dev/null
@@ -1,86 +0,0 @@
---- a/src/input/input.c
-+++ b/src/input/input.c
-@@ -240,7 +240,10 @@
- *
- ******************************************************************************/
- int load_input_cfg(void) {
--	FILE *fp = fopen("./.epiar-input.ecf", "rb");
-+	char filename[PATH_MAX];
-+	FILE *fp;
-+	snprintf(filename, sizeof(filename), "%s/.epiar-input.ecf", getenv("HOME"));
-+	fp = fopen(filename, "rb");
- 
- 	/* make sure all keys are enabled */
- 	unlock_keys();
-@@ -282,7 +285,7 @@
- 	} else {
- 		float file_version = 0.0f;
- 		/* read the file into the struct */
--		fp = fopen("./.epiar-input.ecf", "rb");
-+		fp = fopen(filename, "rb");
- 
- 		if (fp == NULL) {
- 			fprintf(stdout, "Could not open \"./.epiar-input.ecf\" for reading, assuming default bindings.\n");
-@@ -472,10 +475,12 @@
- }
- 
- void save_keybindings(void) {
-+	char filename[PATH_MAX];
- 	float file_version = 0.2f;
- 	FILE *fp;
- 
--	fp = fopen("./.epiar-input.ecf", "wb");
-+	snprintf(filename, sizeof(filename), "%s/.epiar-input.ecf", getenv("HOME"));
-+	fp = fopen(filename, "wb");
- 	if (fp == NULL) {
- 		fprintf(stdout, "Could not create '~/.epiar-input.ecf' to save keybindings\n");
- 		return;
---- a/src/main.c
-+++ b/src/main.c
-@@ -16,7 +16,7 @@
- unsigned char view_mode = 0;
- int ship_to_follow = 0;
- int desired_bpp = 16;
--char *game_path;
-+const char * const game_path = "GENTOO_DATADIR";
- unsigned char use_ogl = 0;
- unsigned char skip_intro = 0;
- FILE *epiar_eaf = NULL, *main_eaf = NULL;
-@@ -78,8 +78,6 @@
- 
- 	parse_commandline(argc, argv);
- 
--	get_absolute_path(argv[0]);
--
- 	init(desired_bpp);
- 
- 	menu();
---- a/src/main.h
-+++ b/src/main.h
-@@ -1,2 +1,2 @@
- extern char epiar_version[6];
--extern char *game_path;
-+extern const char * const game_path;
---- a/src/system/init.c
-+++ b/src/system/init.c
-@@ -89,9 +89,6 @@
- 		main_eaf = NULL;
- 	}
- 
--	assert(game_path != NULL);
--	free(game_path);
--	game_path = NULL;
- 
- 	if (average_loop_time == 0) average_loop_time = 18; /* in case they quit on menu */
- #ifndef NDEBUG
---- a/src/system/path.c
-+++ b/src/system/path.c
-@@ -45,7 +45,7 @@
- }
- #endif
- 
--#ifdef LINUX
-+#if 0
- char *strip_path_of_binary(char *argv) {
- 	int len = 0, i, blen = 0;
- 	char *stripped = NULL;

diff --git a/games-arcade/epiar/files/epiar-0.5-respect-CC.patch b/games-arcade/epiar/files/epiar-0.5-respect-CC.patch
deleted file mode 100644
index cf2d1d866f9..00000000000
--- a/games-arcade/epiar/files/epiar-0.5-respect-CC.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 74b0233e06365262ca6fc9bde1cfb70051acb83c Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Tue, 6 Apr 2021 23:38:53 +0000
-Subject: [PATCH 2/2] respect CC
-
----
- Makefile.linux | 2 +-
- tools/Makefile | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile.linux b/Makefile.linux
-index 903e392..aad4b49 100644
---- a/Makefile.linux
-+++ b/Makefile.linux
-@@ -18,7 +18,7 @@ timer.o target.o zoom.o r_ships.o warship.o maneuvers.o gate_defender.o
- 
- PLUGIN_OBJS=
- 
--CC=cc
-+CC?=cc
- 
- default: $(OBJS)
- 	echo Building Epiar 0.5.0 ...
-diff --git a/tools/Makefile b/tools/Makefile
-index 8491658..a3f940d 100644
---- a/tools/Makefile
-+++ b/tools/Makefile
-@@ -1,5 +1,5 @@
- default:
--	gcc -Wall main.c -o eaf_util
-+	$(CC) -Wall main.c -o eaf_util
- 
- clean:
- 	rm -rf eaf_util
--- 
-2.31.1
-

diff --git a/games-arcade/epiar/files/epiar-0.5-underlink.patch b/games-arcade/epiar/files/epiar-0.5-underlink.patch
deleted file mode 100644
index fb4669be90c..00000000000
--- a/games-arcade/epiar/files/epiar-0.5-underlink.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/Makefile.linux
-+++ b/Makefile.linux
-@@ -1,6 +1,6 @@
- CFLAGS=-W -Wall `sdl-config --cflags` -Isrc/ -DLINUX -DDEVEL -export-dynamic -I/usr/include/SDL -I/usr/local/include/SDL -DBLIT_METHOD_2 -DNAUDIO -O2 -march=pentium4 -pipe -mfpmath=sse -ggdb -Wl,-O1 -Wl,--as-needed
- 
--LIBS=-lm `sdl-config --libs` -lSDL_image
-+LIBS=-lm `sdl-config --libs` -lSDL_image -ldl
- STATIC_LIBS=-lm /usr/local/lib/libSDL.a /usr/local/lib/libSDL_image.a /usr/local/lib/libSDL_ttf.a /usr/local/lib/libopenal.a /usr/local/lib/libvorbisfile.a /usr/local/lib/libvorbis.a /usr/local/lib/libogg.a /usr/lib/libpng.a /usr/lib/libz.a -lpthread -ldl -lfreetype /usr/lib/libjpeg.a -lX11 -lXext -lesd
- 
- OBJS=main.o init.o video.o backbuffer.o debug.o audio.o linux_video.o \

diff --git a/games-arcade/epiar/files/epiar-0.5-unsilence-build.patch b/games-arcade/epiar/files/epiar-0.5-unsilence-build.patch
deleted file mode 100644
index 20a6d6755c8..00000000000
--- a/games-arcade/epiar/files/epiar-0.5-unsilence-build.patch
+++ /dev/null
@@ -1,445 +0,0 @@
-From 5cc36cce65329d946140feb78f17fc3c91cc7496 Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Tue, 6 Apr 2021 23:38:27 +0000
-Subject: [PATCH 1/2] unsilence build
-
----
- Makefile       |  20 ++---
- Makefile.linux | 218 ++++++++++++++++++++++++-------------------------
- 2 files changed, 119 insertions(+), 119 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index d0aa7a8..f2c4641 100644
---- a/Makefile
-+++ b/Makefile
-@@ -1,13 +1,13 @@
- default:
--	@echo "To build Epiar, please type the command that corresponds to your system:"
--	@echo ""
--	@echo "Linux   - make -f Makefile.linux"
--	@echo "FreeBSD - make -f Makefile.freebsd"
--	@echo "Windows - Documentation not available yet"
-+	echo "To build Epiar, please type the command that corresponds to your system:"
-+	echo ""
-+	echo "Linux   - make -f Makefile.linux"
-+	echo "FreeBSD - make -f Makefile.freebsd"
-+	echo "Windows - Documentation not available yet"
- 
- clean:
--	@echo "Please specify your system:"
--	@echo ""
--	@echo "Linux   - make -f Makefile.linux clean"
--	@echo "FreeBSD - make -f Makefile.freebsd clean"
--	@echo "Windows - Documentation not available yet"
-+	echo "Please specify your system:"
-+	echo ""
-+	echo "Linux   - make -f Makefile.linux clean"
-+	echo "FreeBSD - make -f Makefile.freebsd clean"
-+	echo "Windows - Documentation not available yet"
-diff --git a/Makefile.linux b/Makefile.linux
-index 40ae1ff..903e392 100644
---- a/Makefile.linux
-+++ b/Makefile.linux
-@@ -21,290 +21,290 @@ PLUGIN_OBJS=
- CC=cc
- 
- default: $(OBJS)
--	@echo Building Epiar 0.5.0 ...
--	@$(CC) $(CFLAGS) -I/usr/X11R6/lib/ $(OBJS) -o epiar $(LIBS)
--	@echo Building plugins ...
--	@$(MAKE) -f Makefile.linux plugin
--	@echo Epiar 0.5.0 build complete.
--	@echo
--	@echo Type './epiar' to play.
-+	echo Building Epiar 0.5.0 ...
-+	$(CC) $(CFLAGS) -I/usr/X11R6/lib/ $(OBJS) -o epiar $(LIBS)
-+	echo Building plugins ...
-+	$(MAKE) -f Makefile.linux plugin
-+	echo Epiar 0.5.0 build complete.
-+	echo
-+	echo Type './epiar' to play.
- 
- static:  $(OBJS)
--	@echo Building Epiar 0.5.0 and linking statically ...
--	@$(CC) $(CFLAGS) -L/usr/X11R6/lib -L/opt/gnome-2.1/lib $(OBJS) -o epiar $(STATIC_LIBS)
--	@echo Building plugins ...
--	@$(MAKE) plugin
--	@echo Epiar 0.5.0 build complete.
--	@echo
--	@echo Type './epiar' to play.
-+	echo Building Epiar 0.5.0 and linking statically ...
-+	$(CC) $(CFLAGS) -L/usr/X11R6/lib -L/opt/gnome-2.1/lib $(OBJS) -o epiar $(STATIC_LIBS)
-+	echo Building plugins ...
-+	$(MAKE) plugin
-+	echo Epiar 0.5.0 build complete.
-+	echo
-+	echo Type './epiar' to play.
- 
- clean:
--	@rm -f $(OBJS)
--	@rm -f plugins/*.so
--	@rm -f *~
--	@rm -f src/*~
--	@rm -f src/system/*~
--	@rm -f src/system/video/*~
--	@rm -f src/audio/*~
--	@rm -f epiar
-+	rm -f $(OBJS)
-+	rm -f plugins/*.so
-+	rm -f *~
-+	rm -f src/*~
-+	rm -f src/system/*~
-+	rm -f src/system/video/*~
-+	rm -f src/audio/*~
-+	rm -f epiar
- 
- main.o: src/main.c
--	@$(CC) $(CFLAGS) -c src/main.c
-+	$(CC) $(CFLAGS) -c src/main.c
- 
- init.o: src/system/init.c
--	@$(CC) $(CFLAGS) -c src/system/init.c
-+	$(CC) $(CFLAGS) -c src/system/init.c
- 
- video.o: src/system/video/video.c
--	@$(CC) $(CFLAGS) -c src/system/video/video.c
-+	$(CC) $(CFLAGS) -c src/system/video/video.c
- 
- backbuffer.o: src/system/video/backbuffer.c
--	@$(CC) $(CFLAGS) -c src/system/video/backbuffer.c
-+	$(CC) $(CFLAGS) -c src/system/video/backbuffer.c
- 
- debug.o: src/system/debug.c
--	@$(CC) $(CFLAGS) -c src/system/debug.c
-+	$(CC) $(CFLAGS) -c src/system/debug.c
- 
- audio.o: src/audio/audio.c
--	@$(CC) $(CFLAGS) -c src/audio/audio.c
-+	$(CC) $(CFLAGS) -c src/audio/audio.c
- 
- linux_video.o: src/osdep/linux/linux_video.c
--	@$(CC) $(CFLAGS) -c src/osdep/linux/linux_video.c
-+	$(CC) $(CFLAGS) -c src/osdep/linux/linux_video.c
- 
- sprite.o: src/sprite/sprite.c
--	@$(CC) $(CFLAGS) -c src/sprite/sprite.c
-+	$(CC) $(CFLAGS) -c src/sprite/sprite.c
- 
- menu.o: src/menu/menu.c
--	@$(CC) $(CFLAGS) -c src/menu/menu.c
-+	$(CC) $(CFLAGS) -c src/menu/menu.c
- 
- game.o: src/game/game.c
--	@$(CC) $(CFLAGS) -c src/game/game.c
-+	$(CC) $(CFLAGS) -c src/game/game.c
- 
- update.o: src/game/update.c
--	@$(CC) $(CFLAGS) -c src/game/update.c
-+	$(CC) $(CFLAGS) -c src/game/update.c
- 
- input.o: src/input/input.c
--	@$(CC) $(CFLAGS) -c src/input/input.c
-+	$(CC) $(CFLAGS) -c src/input/input.c
- 
- rander.o: src/system/rander.c
--	@$(CC) $(CFLAGS) -c src/system/rander.c
-+	$(CC) $(CFLAGS) -c src/system/rander.c
- 
- planet.o: src/sprite/planet.c src/sprite/planet.h
--	@$(CC) $(CFLAGS) -c src/sprite/planet.c
-+	$(CC) $(CFLAGS) -c src/sprite/planet.c
- 
- fire.o: src/sprite/fire.c src/sprite/fire.h
--	@$(CC) $(CFLAGS) -c src/sprite/fire.c
-+	$(CC) $(CFLAGS) -c src/sprite/fire.c
- 
- ai.o: src/ai/ai.c src/ai/ai.h
--	@$(CC) $(CFLAGS) -c src/ai/ai.c
-+	$(CC) $(CFLAGS) -c src/ai/ai.c
- 
- linux_misc.o: src/osdep/linux/linux_misc.c src/osdep/linux/linux_misc.h
--	@$(CC) $(CFLAGS) -c src/osdep/linux/linux_misc.c
-+	$(CC) $(CFLAGS) -c src/osdep/linux/linux_misc.c
- 
- flare.o: src/sprite/flare.c src/sprite/flare.h
--	@$(CC) $(CFLAGS) -c src/sprite/flare.c
-+	$(CC) $(CFLAGS) -c src/sprite/flare.c
- 
- particle.o: src/sprite/particle.c src/sprite/particle.h
--	@$(CC) $(CFLAGS) -c src/sprite/particle.c
-+	$(CC) $(CFLAGS) -c src/sprite/particle.c
- 
- music.o: src/audio/music.c src/audio/music.h
--	@$(CC) $(CFLAGS) -c src/audio/music.c
-+	$(CC) $(CFLAGS) -c src/audio/music.c
- 
- hud.o: src/hud/hud.c src/hud/hud.h
--	@$(CC) $(CFLAGS) -c src/hud/hud.c
-+	$(CC) $(CFLAGS) -c src/hud/hud.c
- 
- afont_base.o: src/system/afont_base.c src/system/afont.h
--	@$(CC) $(CFLAGS) -c src/system/afont_base.c
-+	$(CC) $(CFLAGS) -c src/system/afont_base.c
- 
- afont_sdl.o: src/system/afont_sdl.c src/system/afont_sdl.h
--	@$(CC) $(CFLAGS) -c src/system/afont_sdl.c
-+	$(CC) $(CFLAGS) -c src/system/afont_sdl.c
- 
- trig.o: src/system/trig.c src/system/trig.h
--	@$(CC) $(CFLAGS) -c src/system/trig.c
-+	$(CC) $(CFLAGS) -c src/system/trig.c
- 
- playlist.o: src/audio/playlist.c src/audio/playlist.h
--	@$(CC) $(CFLAGS) -c src/audio/playlist.c
-+	$(CC) $(CFLAGS) -c src/audio/playlist.c
- 
- options.o: src/menu/options.c src/menu/options.h
--	@$(CC) $(CFLAGS) -c src/menu/options.c
-+	$(CC) $(CFLAGS) -c src/menu/options.c
- 
- save.o: src/system/save.c src/system/save.h
--	@$(CC) $(CFLAGS) -c src/system/save.c
-+	$(CC) $(CFLAGS) -c src/system/save.c
- 
- land.o: src/land/land.c src/land/land.h
--	@$(CC) $(CFLAGS) -c src/land/land.c
-+	$(CC) $(CFLAGS) -c src/land/land.c
- 
- land_dlg.o: src/land/land_dlg.c src/land/land_dlg.h
--	@$(CC) $(CFLAGS) -c src/land/land_dlg.c
-+	$(CC) $(CFLAGS) -c src/land/land_dlg.c
- 
- math.o: src/system/math.c src/system/math.h
--	@$(CC) $(CFLAGS) -c src/system/math.c
-+	$(CC) $(CFLAGS) -c src/system/math.c
- 
- status.o: src/menu/status.c src/menu/status.h
--	@$(CC) $(CFLAGS) -c src/menu/status.c
-+	$(CC) $(CFLAGS) -c src/menu/status.c
- 
- shipyard.o: src/land/shipyard.c src/land/shipyard.h
--	@$(CC) $(CFLAGS) -c src/land/shipyard.c
-+	$(CC) $(CFLAGS) -c src/land/shipyard.c
- 
- gui_commdlg.o: src/gui/gui_commdlg.c src/gui/gui_commdlg.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_commdlg.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_commdlg.c
- 
- navigation.o: src/navigation/navigation.c src/navigation/navigation.h
--	@$(CC) $(CFLAGS) -c src/navigation/navigation.c
-+	$(CC) $(CFLAGS) -c src/navigation/navigation.c
- 
- gate.o: src/sprite/gate.c src/sprite/gate.h
--	@$(CC) $(CFLAGS) -c src/sprite/gate.c
-+	$(CC) $(CFLAGS) -c src/sprite/gate.c
- 
- comm.o: src/comm/comm.c src/comm/comm.h
--	@$(CC) $(CFLAGS) -c src/comm/comm.c
-+	$(CC) $(CFLAGS) -c src/comm/comm.c
- 
- plugin.o: src/system/plugin.c src/system/plugin.h
--	@$(CC) $(CFLAGS) -c src/system/plugin.c
-+	$(CC) $(CFLAGS) -c src/system/plugin.c
- 
- path.o: src/system/path.c src/system/path.h
--	@$(CC) $(CFLAGS) -c src/system/path.c
-+	$(CC) $(CFLAGS) -c src/system/path.c
- 
- tutorial.o: src/tutorial/tutorial.c src/tutorial/tutorial.h
--	@$(CC) $(CFLAGS) -c src/tutorial/tutorial.c
-+	$(CC) $(CFLAGS) -c src/tutorial/tutorial.c
- 
- defender.o: src/ai/defender.c src/ai/defender.h
--	@$(CC) $(CFLAGS) -c src/ai/defender.c
-+	$(CC) $(CFLAGS) -c src/ai/defender.c
- 
- missions.o: src/missions/missions.c src/missions/missions.h
--	@$(CC) $(CFLAGS) -c src/missions/missions.c
-+	$(CC) $(CFLAGS) -c src/missions/missions.c
- 
- trader.o: src/ai/trader.c src/ai/trader.h
--	@$(CC) $(CFLAGS) -c src/ai/trader.c
-+	$(CC) $(CFLAGS) -c src/ai/trader.c
- 
- explorer.o: src/ai/explorer.c src/ai/explorer.h
--	@$(CC) $(CFLAGS) -c src/ai/explorer.c
-+	$(CC) $(CFLAGS) -c src/ai/explorer.c
- 
- alliances.o: src/alliances/alliances.c src/alliances/alliances.h
--	@$(CC) $(CFLAGS) -c src/alliances/alliances.c
-+	$(CC) $(CFLAGS) -c src/alliances/alliances.c
- 
- summary.o: src/land/summary.c src/land/summary.h
--	@$(CC) $(CFLAGS) -c src/land/summary.c
-+	$(CC) $(CFLAGS) -c src/land/summary.c
- 
- employment.o: src/land/employment.c src/land/employment.h
--	@$(CC) $(CFLAGS) -c src/land/employment.c
-+	$(CC) $(CFLAGS) -c src/land/employment.c
- 
- bar.o: src/land/bar.c src/land/bar.h
--	@$(CC) $(CFLAGS) -c src/land/bar.c
-+	$(CC) $(CFLAGS) -c src/land/bar.c
- 
- track.o: src/racing/track.c src/racing/track.h
--	@$(CC) $(CFLAGS) -c src/racing/track.c
-+	$(CC) $(CFLAGS) -c src/racing/track.c
- 
- model.o: src/sprite/model.c src/sprite/model.h
--	@$(CC) $(CFLAGS) -c src/sprite/model.c
-+	$(CC) $(CFLAGS) -c src/sprite/model.c
- 
- force.o: src/force/force.c src/force/force.h
--	@$(CC) $(CFLAGS) -c src/force/force.c
-+	$(CC) $(CFLAGS) -c src/force/force.c
- 
- weapon.o: src/sprite/weapon.c src/sprite/weapon.h
--	@$(CC) $(CFLAGS) -c src/sprite/weapon.c
-+	$(CC) $(CFLAGS) -c src/sprite/weapon.c
- 
- asteroid.o: src/asteroid/asteroid.c src/asteroid/asteroid.h
--	@$(CC) $(CFLAGS) -c src/asteroid/asteroid.c
-+	$(CC) $(CFLAGS) -c src/asteroid/asteroid.c
- 
- network.o: src/network/network.c src/network/network.h
--	@$(CC) $(CFLAGS) -c src/network/network.c
-+	$(CC) $(CFLAGS) -c src/network/network.c
- 
- chunk.o: src/sprite/chunk.c src/sprite/chunk.h
--	@$(CC) $(CFLAGS) -c src/sprite/chunk.c
-+	$(CC) $(CFLAGS) -c src/sprite/chunk.c
- 
- gui_btab.o: src/gui/gui_btab.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_btab.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_btab.c
- 
- gui_button.o: src/gui/gui_button.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_button.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_button.c
- 
- gui.o: src/gui/gui.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui.c
-+	$(CC) $(CFLAGS) -c src/gui/gui.c
- 
- gui_checkbox.o: src/gui/gui_checkbox.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_checkbox.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_checkbox.c
- 
- gui_commondlg.o: src/gui/gui_commondlg.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_commondlg.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_commondlg.c
- 
- gui_frame.o: src/gui/gui_frame.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_frame.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_frame.c
- 
- gui_image.o: src/gui/gui_image.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_image.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_image.c
- 
- gui_keybox.o: src/gui/gui_keybox.c
--	@$(CC) $(CFLAGS) -c src/gui/gui_keybox.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_keybox.c
- 
- gui_label.o: src/gui/gui_label.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_label.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_label.c
- 
- gui_scrollbar.o: src/gui/gui_scrollbar.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_scrollbar.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_scrollbar.c
- 
- gui_session.o: src/gui/gui_session.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_session.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_session.c
- 
- gui_tab.o: src/gui/gui_tab.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_tab.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_tab.c
- 
- gui_textbox.o: src/gui/gui_textbox.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_textbox.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_textbox.c
- 
- gui_text_entry.o: src/gui/gui_text_entry.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_text_entry.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_text_entry.c
- 
- gui_window.o: src/gui/gui_window.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_window.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_window.c
- 
- gui_listbox.o: src/gui/gui_listbox.c src/gui/gui.h
--	@$(CC) $(CFLAGS) -c src/gui/gui_listbox.c
-+	$(CC) $(CFLAGS) -c src/gui/gui_listbox.c
- 
- net_sprite.o: src/network/net_sprite.c
--	@$(CC) $(CFLAGS) -c src/network/net_sprite.c
-+	$(CC) $(CFLAGS) -c src/network/net_sprite.c
- 
- upgrade.o: src/sprite/upgrade.c
--	@$(CC) $(CFLAGS) -c src/sprite/upgrade.c
-+	$(CC) $(CFLAGS) -c src/sprite/upgrade.c
- 
- eaf.o: src/system/eaf.c src/system/eaf.h
--	@$(CC) $(CFLAGS) -c src/system/eaf.c
-+	$(CC) $(CFLAGS) -c src/system/eaf.c
- 
- scenario.o: src/game/scenario.c src/game/scenario.h
--	@$(CC) $(CFLAGS) -c src/game/scenario.c
-+	$(CC) $(CFLAGS) -c src/game/scenario.c
- 
- pirate.o: src/ai/pirate.c src/ai/pirate.h
--	@$(CC) $(CFLAGS) -c src/ai/pirate.c
-+	$(CC) $(CFLAGS) -c src/ai/pirate.c
- 
- outfit.o: src/outfit/outfit.c src/outfit/outfit.h
--	@$(CC) $(CFLAGS) -c src/outfit/outfit.c
-+	$(CC) $(CFLAGS) -c src/outfit/outfit.c
- 
- esf.o: src/system/esf.c src/system/esf.h
--	@$(CC) $(CFLAGS) -c src/system/esf.c
-+	$(CC) $(CFLAGS) -c src/system/esf.c
- 
- timer.o: src/system/timer.c src/system/timer.h
--	@$(CC) $(CFLAGS) -c src/system/timer.c
-+	$(CC) $(CFLAGS) -c src/system/timer.c
- 
- font.o: src/system/font.c src/system/font.h
--	@$(CC) $(CFLAGS) -c src/system/font.c
-+	$(CC) $(CFLAGS) -c src/system/font.c
- 
- target.o: src/sprite/target.c src/sprite/target.h
--	@$(CC) $(CFLAGS) -c src/sprite/target.c
-+	$(CC) $(CFLAGS) -c src/sprite/target.c
- 
- zoom.o: src/system/video/zoom.c src/system/video/zoom.h
--	@$(CC) $(CFLAGS) -c src/system/video/zoom.c
-+	$(CC) $(CFLAGS) -c src/system/video/zoom.c
- 
- r_ships.o: src/sprite/r_ships.c src/sprite/r_ships.h
--	@$(CC) $(CFLAGS) -c src/sprite/r_ships.c
-+	$(CC) $(CFLAGS) -c src/sprite/r_ships.c
- 
- warship.o: src/ai/warship.c src/ai/warship.h
--	@$(CC) $(CFLAGS) -c src/ai/warship.c
-+	$(CC) $(CFLAGS) -c src/ai/warship.c
- 
- gate_defender.o: src/ai/gate_defender.c src/ai/gate_defender.h
--	@$(CC) $(CFLAGS) -c src/ai/gate_defender.c
-+	$(CC) $(CFLAGS) -c src/ai/gate_defender.c
- 
- maneuvers.o: src/ai/maneuvers.c src/ai/maneuvers.h
--	@$(CC) $(CFLAGS) -c src/ai/maneuvers.c
-+	$(CC) $(CFLAGS) -c src/ai/maneuvers.c
- 
- plugin: $(PLUGIN_OBJS)
--	@echo Plugins built.
-+	echo Plugins built.
- 
- plugins/radar.so: src/plugins/radar.c
--	@$(CC) $(CFLAGS) $(OBJS) -shared src/plugins/radar.c -o plugins/radar.so
-+	$(CC) $(CFLAGS) $(OBJS) -shared src/plugins/radar.c -o plugins/radar.so
--- 
-2.31.1
-


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

end of thread, other threads:[~2021-06-23  2:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-07  1:58 [gentoo-commits] repo/gentoo:master commit in: games-arcade/epiar/files/, games-arcade/epiar/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2021-06-23  2:24 Ionen Wolkens

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