forked from pool/SDL_bgi
- Update to new upstream release 2.0.6
OBS-URL: https://build.opensuse.org/package/show/graphics/SDL_bgi?expand=0&rev=18
This commit is contained in:
parent
a046263210
commit
bcedcad6d1
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8678b22cc63ca695a11c341bc9e246adce01cdea9d4a2cccbb18800ba1318111
|
|
||||||
size 500083
|
|
3
SDL_bgi-2.0.6.tar.gz
Normal file
3
SDL_bgi-2.0.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1a8d77b4f0a6a89462a9dc25fedacf370d3b49d3830d75f2bd0614912912fe27
|
||||||
|
size 527891
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 4 17:04:06 UTC 2016 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Update to new upstream release 2.0.6
|
||||||
|
* fixed bug in writeimagefile()
|
||||||
|
* implemented clipping in readimagefile()
|
||||||
|
* turtle graphics improvements
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 23 11:34:14 UTC 2015 - jengelh@inai.de
|
Wed Dec 23 11:34:14 UTC 2015 - jengelh@inai.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package SDL_bgi
|
# spec file for package SDL_bgi
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
Name: SDL_bgi
|
Name: SDL_bgi
|
||||||
%define lname libSDL_bgi1
|
%define lname libSDL_bgi1
|
||||||
Version: 2.0.5
|
Version: 2.0.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: BGI-compatible 2D graphics C library with SDL backend
|
Summary: BGI-compatible 2D graphics C library with SDL backend
|
||||||
License: Zlib and GPL-2.0+
|
License: Zlib and GPL-2.0+
|
||||||
|
@ -9,38 +9,35 @@ Author could not decide between "sdlbgifast" and "bgifast"
|
|||||||
Makefile.am | 2 ++
|
Makefile.am | 2 ++
|
||||||
configure.ac | 9 +++++++++
|
configure.ac | 9 +++++++++
|
||||||
src/Makefile.am | 8 ++++++++
|
src/Makefile.am | 8 ++++++++
|
||||||
src/SDL_bgi.c | 8 ++++++++
|
test/Makefile.am | 11 +++++++++++
|
||||||
src/SDL_bgi.h | 2 ++
|
4 files changed, 30 insertions(+)
|
||||||
src/test/Makefile.am | 10 ++++++++++
|
|
||||||
6 files changed, 39 insertions(+)
|
|
||||||
|
|
||||||
Index: SDL_bgi-2.0.0/Makefile.am
|
Index: SDL_bgi-2.0.6/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.0/Makefile.am
|
+++ SDL_bgi-2.0.6/Makefile.am
|
||||||
@@ -0,0 +1,2 @@
|
@@ -0,0 +1,2 @@
|
||||||
+ACLOCAL_AMFLAGS = -I m4
|
+ACLOCAL_AMFLAGS = -I m4
|
||||||
+SUBDIRS = src
|
+SUBDIRS = src test
|
||||||
Index: SDL_bgi-2.0.0/configure.ac
|
Index: SDL_bgi-2.0.6/configure.ac
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.0/configure.ac
|
+++ SDL_bgi-2.0.6/configure.ac
|
||||||
@@ -0,0 +1,9 @@
|
@@ -0,0 +1,9 @@
|
||||||
+AC_INIT([SDL_bgi], [1.0.1])
|
+AC_INIT([SDL_bgi], [2.0.6])
|
||||||
+AC_CONFIG_AUX_DIR([build-aux])
|
+AC_CONFIG_AUX_DIR([build-aux])
|
||||||
+AC_CONFIG_MACRO_DIR([m4])
|
+AC_CONFIG_MACRO_DIR([m4])
|
||||||
+AC_PROG_CC
|
+AC_PROG_CC
|
||||||
+AM_INIT_AUTOMAKE([foreign subdir-objects tar-pax dist-xz no-dist-gzip])
|
+AM_INIT_AUTOMAKE([foreign subdir-objects tar-pax dist-xz no-dist-gzip])
|
||||||
+LT_INIT
|
+LT_INIT
|
||||||
+PKG_CHECK_MODULES([sdl2], [sdl2])
|
+PKG_CHECK_MODULES([sdl2], [sdl2])
|
||||||
+AC_CONFIG_FILES([Makefile src/Makefile src/test/Makefile])
|
+AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
|
||||||
+AC_OUTPUT
|
+AC_OUTPUT
|
||||||
Index: SDL_bgi-2.0.0/src/Makefile.am
|
Index: SDL_bgi-2.0.6/src/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.0/src/Makefile.am
|
+++ SDL_bgi-2.0.6/src/Makefile.am
|
||||||
@@ -0,0 +1,9 @@
|
@@ -0,0 +1,8 @@
|
||||||
+SUBDIRS = . test
|
|
||||||
+AM_CPPFLAGS = ${sdl2_CFLAGS}
|
+AM_CPPFLAGS = ${sdl2_CFLAGS}
|
||||||
+AM_CFLAGS = -Wall
|
+AM_CFLAGS = -Wall
|
||||||
+lib_LTLIBRARIES = libSDL_bgi.la
|
+lib_LTLIBRARIES = libSDL_bgi.la
|
||||||
@ -49,18 +46,19 @@ Index: SDL_bgi-2.0.0/src/Makefile.am
|
|||||||
+libSDL_bgi_la_LDFLAGS = -no-undefined -version-info 1:0:0
|
+libSDL_bgi_la_LDFLAGS = -no-undefined -version-info 1:0:0
|
||||||
+pkgincludedir = ${includedir}/SDL2
|
+pkgincludedir = ${includedir}/SDL2
|
||||||
+pkginclude_HEADERS = SDL_bgi.h
|
+pkginclude_HEADERS = SDL_bgi.h
|
||||||
Index: SDL_bgi-2.0.0/src/test/Makefile.am
|
Index: SDL_bgi-2.0.6/test/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.0/src/test/Makefile.am
|
+++ SDL_bgi-2.0.6/test/Makefile.am
|
||||||
@@ -0,0 +1,10 @@
|
@@ -0,0 +1,11 @@
|
||||||
+AM_CPPFLAGS = -I${top_srcdir}/src
|
+AM_CPPFLAGS = -I${top_srcdir}/src
|
||||||
+AM_CFLAGS = -Wall
|
+AM_CFLAGS = -Wall
|
||||||
+EXTRA_PROGRAMS = \
|
+EXTRA_PROGRAMS = \
|
||||||
+ cellular dla fern floodfilltest hopalong life \
|
+ cellular dla fern floodfilltest hopalong life \
|
||||||
+ mandelbrot mousetest moveit sdlbgidemo simple turtledemo
|
+ mandelbrot mousetest moveit plasma sdlbgidemo simple turtledemo
|
||||||
+LDADD = ../libSDL_bgi.la
|
+LDADD = ../src/libSDL_bgi.la
|
||||||
+hopalong_LDADD = ${LDADD} -lm
|
+hopalong_LDADD = ${LDADD} -lm
|
||||||
|
+plasma_LDADD = ${LDADD} -lm
|
||||||
+sdlbgidemo_LDADD = ${LDADD} -lm
|
+sdlbgidemo_LDADD = ${LDADD} -lm
|
||||||
+turtledemo_SOURCES = turtle.c turtledemo.c
|
+turtledemo_SOURCES = turtle.c turtledemo.c
|
||||||
+turtledemo_LDADD = ${LDADD} -lm
|
+turtledemo_LDADD = ${LDADD} -lm
|
||||||
|
Loading…
Reference in New Issue
Block a user