[arch-commits] Commit in simutrans/repos/community-x86_64 (14 files)

2020-01-08 Thread Balló György via arch-commits
Date: Thursday, January 9, 2020 @ 02:21:09
  Author: bgyorgy
Revision: 550968

archrelease: copy trunk to community-x86_64

Added:
  simutrans/repos/community-x86_64/PKGBUILD
(from rev 550967, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-x86_64/config.patch
(from rev 550967, simutrans/trunk/config.patch)
  simutrans/repos/community-x86_64/path-for-game-data.patch
(from rev 550967, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-x86_64/settings-folder.patch
(from rev 550967, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-x86_64/simutrans.appdata.xml
(from rev 550967, simutrans/trunk/simutrans.appdata.xml)
  simutrans/repos/community-x86_64/simutrans.desktop
(from rev 550967, simutrans/trunk/simutrans.desktop)
Deleted:
  simutrans/repos/community-x86_64/Makefile
  simutrans/repos/community-x86_64/PKGBUILD
  simutrans/repos/community-x86_64/common.mk
  simutrans/repos/community-x86_64/config.patch
  simutrans/repos/community-x86_64/path-for-game-data.patch
  simutrans/repos/community-x86_64/settings-folder.patch
  simutrans/repos/community-x86_64/simutrans.appdata.xml
  simutrans/repos/community-x86_64/simutrans.desktop

--+
 Makefile |  720 -
 PKGBUILD |  134 
 common.mk|   56 ---
 config.patch |   66 ++--
 path-for-game-data.patch |   36 +-
 settings-folder.patch|   24 -
 simutrans.appdata.xml|   38 +-
 simutrans.desktop|   18 -
 8 files changed, 156 insertions(+), 936 deletions(-)

Deleted: Makefile
===
--- Makefile2020-01-09 02:21:05 UTC (rev 550967)
+++ Makefile2020-01-09 02:21:09 UTC (rev 550968)
@@ -1,720 +0,0 @@
-CFG ?= default
--include config.$(CFG)
-
-HOSTCC?=$(CC)
-HOSTCXX?=$(CXX)
-
-PROFILE ?= 0
-STATIC ?= 0
-AV_FOUNDATION ?= 0
-
-ALLEGRO_CONFIG ?= allegro-config
-SDL_CONFIG ?= sdl-config
-SDL2_CONFIG ?= sdl2-config
-FREETYPE_CONFIG ?= freetype-config
-
-BACKENDS  = allegro gdi opengl sdl sdl2 mixer_sdl mixer_sdl2 posix
-COLOUR_DEPTHS = 0 16
-OSTYPES   = amiga beos freebsd haiku linux mingw mac openbsd
-
-ifeq ($(findstring $(BACKEND), $(BACKENDS)),)
-  $(error Unkown BACKEND "$(BACKEND)", must be one of "$(BACKENDS)")
-endif
-
-ifeq ($(findstring $(COLOUR_DEPTH), $(COLOUR_DEPTHS)),)
-  $(error Unkown COLOUR_DEPTH "$(COLOUR_DEPTH)", must be one of 
"$(COLOUR_DEPTHS)")
-endif
-
-ifeq ($(findstring $(OSTYPE), $(OSTYPES)),)
-  $(error Unkown OSTYPE "$(OSTYPE)", must be one of "$(OSTYPES)")
-endif
-
-ifeq ($(OSTYPE),amiga)
-  STD_LIBS ?= -lunix -lSDL_mixer -lsmpeg -lvorbisfile -lvorbis -logg
-  CFLAGS += -mcrt=newlib -DSIM_BIG_ENDIAN -gstabs+
-  LDFLAGS += -Bstatic -non_shared
-else
-  # BeOS (obsolete)
-  ifeq ($(OSTYPE),beos)
-LIBS += -lnet
-  else
-ifeq ($(OSTYPE),mingw)
-  CFLAGS  += -DPNG_STATIC -DZLIB_STATIC
-  ifeq ($(shell expr $(STATIC) \>= 1), 1)
-CFLAGS  += -static
-LDFLAGS += -static-libgcc -static-libstdc++ -static
-  endif
-  LDFLAGS += -pthread -Wl,--large-address-aware
-  SOURCES += simsys_w32_png.cc
-  CFLAGS  += -DNOMINMAX -DWIN32_LEAN_AND_MEAN -DWINVER=0x0501 
-D_WIN32_IE=0x0500
-  LIBS+= -lmingw32 -lgdi32 -lwinmm -lws2_32 -limm32
-  # Disable the console on Windows unless WIN32_CONSOLE is set or graphics 
are disabled
-  ifdef WIN32_CONSOLE
-ifeq ($(shell expr $(WIN32_CONSOLE) \>= 1), 1)
-  LDFLAGS += -mconsole
-endif
-  else
-ifeq ($(BACKEND),posix)
-  LDFLAGS += -mconsole
-else
-  LDFLAGS += -mwindows
-endif
-  endif
-else
-  # Haiku (needs to activate the GCC 4x)
-  ifeq ($(OSTYPE),haiku)
-LIBS += -lnetwork -lbe
-  endif
-endif
-  endif
-endif
-
-ifeq ($(OSTYPE),mingw)
-  SOURCES += clipboard_w32.cc
-else
-  ifeq ($(BACKEND),SDL2)
-SOURCES += clipboard_s.cc
-   else
-SOURCES += clipboard_internal.cc
-   endif
-endif
-
-LIBS += -lbz2 -lz
-
-ifdef OPTIMISE
-  ifeq ($(shell expr $(OPTIMISE) \>= 1), 1)
-CFLAGS += -O3
-ifeq ($(findstring $(OSTYPE), amiga),)
-  ifneq ($(findstring $(CXX), clang),)
-CFLAGS += -minline-all-stringops
-  endif
-endif
-  endif
-else
-  CFLAGS += -O
-endif
-
-ifdef DEBUG
-  ifndef MSG_LEVEL
-MSG_LEVEL = 3
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 1), 1)
-CFLAGS += -g -DDEBUG
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 2), 1)
-ifeq ($(shell expr $(PROFILE) \>= 2), 1)
-  CFLAGS += -fno-inline
-endif
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 3), 1)
-ifeq ($(shell expr $(PROFILE) \>= 2), 1)
-  CFLAGS += -O0
-endif
-  endif
-else
-  CFLAGS += -DNDEBUG
-endif
-
-ifdef MSG_LEVEL
-  CFLAGS += -DMSG_LEVEL=$(MSG_LEVEL)
-endif
-
-ifdef USE_FREETYPE
-  ifeq ($(shell expr $(USE_FREETYPE) \>= 1), 1)
-CFLAGS  += -DUSE_FREE

[arch-commits] Commit in simutrans/repos/community-x86_64 (14 files)

2018-12-11 Thread Balló György via arch-commits
Date: Tuesday, December 11, 2018 @ 14:55:20
  Author: bgyorgy
Revision: 415355

archrelease: copy trunk to community-x86_64

Added:
  simutrans/repos/community-x86_64/Makefile
(from rev 415354, simutrans/trunk/Makefile)
  simutrans/repos/community-x86_64/PKGBUILD
(from rev 415354, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-x86_64/common.mk
(from rev 415354, simutrans/trunk/common.mk)
  simutrans/repos/community-x86_64/config.patch
(from rev 415354, simutrans/trunk/config.patch)
  simutrans/repos/community-x86_64/path-for-game-data.patch
(from rev 415354, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-x86_64/settings-folder.patch
(from rev 415354, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-x86_64/simutrans.desktop
(from rev 415354, simutrans/trunk/simutrans.desktop)
Deleted:
  simutrans/repos/community-x86_64/Makefile
  simutrans/repos/community-x86_64/PKGBUILD
  simutrans/repos/community-x86_64/common.mk
  simutrans/repos/community-x86_64/config.patch
  simutrans/repos/community-x86_64/path-for-game-data.patch
  simutrans/repos/community-x86_64/settings-folder.patch
  simutrans/repos/community-x86_64/simutrans.desktop

--+
 Makefile | 1440 ++---
 PKGBUILD |  130 ++--
 common.mk|  112 +--
 config.patch |   66 +-
 path-for-game-data.patch |   36 -
 settings-folder.patch|   24 
 simutrans.desktop|   18 
 7 files changed, 913 insertions(+), 913 deletions(-)

Deleted: Makefile
===
--- Makefile2018-12-11 14:55:14 UTC (rev 415354)
+++ Makefile2018-12-11 14:55:20 UTC (rev 415355)
@@ -1,720 +0,0 @@
-CFG ?= default
--include config.$(CFG)
-
-HOSTCC?=$(CC)
-HOSTCXX?=$(CXX)
-
-PROFILE ?= 0
-STATIC ?= 0
-AV_FOUNDATION ?= 0
-
-ALLEGRO_CONFIG ?= allegro-config
-SDL_CONFIG ?= sdl-config
-SDL2_CONFIG ?= sdl2-config
-FREETYPE_CONFIG ?= freetype-config
-
-BACKENDS  = allegro gdi opengl sdl sdl2 mixer_sdl mixer_sdl2 posix
-COLOUR_DEPTHS = 0 16
-OSTYPES   = amiga beos freebsd haiku linux mingw mac openbsd
-
-ifeq ($(findstring $(BACKEND), $(BACKENDS)),)
-  $(error Unkown BACKEND "$(BACKEND)", must be one of "$(BACKENDS)")
-endif
-
-ifeq ($(findstring $(COLOUR_DEPTH), $(COLOUR_DEPTHS)),)
-  $(error Unkown COLOUR_DEPTH "$(COLOUR_DEPTH)", must be one of 
"$(COLOUR_DEPTHS)")
-endif
-
-ifeq ($(findstring $(OSTYPE), $(OSTYPES)),)
-  $(error Unkown OSTYPE "$(OSTYPE)", must be one of "$(OSTYPES)")
-endif
-
-ifeq ($(OSTYPE),amiga)
-  STD_LIBS ?= -lunix -lSDL_mixer -lsmpeg -lvorbisfile -lvorbis -logg
-  CFLAGS += -mcrt=newlib -DSIM_BIG_ENDIAN -gstabs+
-  LDFLAGS += -Bstatic -non_shared
-else
-  # BeOS (obsolete)
-  ifeq ($(OSTYPE),beos)
-LIBS += -lnet
-  else
-ifeq ($(OSTYPE),mingw)
-  CFLAGS  += -DPNG_STATIC -DZLIB_STATIC
-  ifeq ($(shell expr $(STATIC) \>= 1), 1)
-CFLAGS  += -static
-LDFLAGS += -static-libgcc -static-libstdc++ -static
-  endif
-  LDFLAGS += -pthread -Wl,--large-address-aware
-  SOURCES += simsys_w32_png.cc
-  CFLAGS  += -DNOMINMAX -DWIN32_LEAN_AND_MEAN -DWINVER=0x0501 
-D_WIN32_IE=0x0500
-  LIBS+= -lmingw32 -lgdi32 -lwinmm -lws2_32 -limm32
-  # Disable the console on Windows unless WIN32_CONSOLE is set or graphics 
are disabled
-  ifdef WIN32_CONSOLE
-ifeq ($(shell expr $(WIN32_CONSOLE) \>= 1), 1)
-  LDFLAGS += -mconsole
-endif
-  else
-ifeq ($(BACKEND),posix)
-  LDFLAGS += -mconsole
-else
-  LDFLAGS += -mwindows
-endif
-  endif
-else
-  # Haiku (needs to activate the GCC 4x)
-  ifeq ($(OSTYPE),haiku)
-LIBS += -lnetwork -lbe
-  endif
-endif
-  endif
-endif
-
-ifeq ($(OSTYPE),mingw)
-  SOURCES += clipboard_w32.cc
-else
-  ifeq ($(BACKEND),SDL2)
-SOURCES += clipboard_s.cc
-   else
-SOURCES += clipboard_internal.cc
-   endif
-endif
-
-LIBS += -lbz2 -lz
-
-ifdef OPTIMISE
-  ifeq ($(shell expr $(OPTIMISE) \>= 1), 1)
-CFLAGS += -O3
-ifeq ($(findstring $(OSTYPE), amiga),)
-  ifneq ($(findstring $(CXX), clang),)
-CFLAGS += -minline-all-stringops
-  endif
-endif
-  endif
-else
-  CFLAGS += -O
-endif
-
-ifdef DEBUG
-  ifndef MSG_LEVEL
-MSG_LEVEL = 3
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 1), 1)
-CFLAGS += -g -DDEBUG
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 2), 1)
-ifeq ($(shell expr $(PROFILE) \>= 2), 1)
-  CFLAGS += -fno-inline
-endif
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 3), 1)
-ifeq ($(shell expr $(PROFILE) \>= 2), 1)
-  CFLAGS += -O0
-endif
-  endif
-else
-  CFLAGS += -DNDEBUG
-endif
-
-ifdef MSG_LEVEL
-  CFLAGS += -DMSG_LEVEL=$(MSG_LEVEL)
-endif
-
-ifdef USE_FREETYPE
-  ifeq ($(shell expr $(USE_FREETYPE) \>= 1), 1)
-CFLAGS  += -DUSE_FREETYPE
-ifneq ($(FREETYPE_CONFI