Sync from SUSE:SLFO:Main SDL_gfx revision 139b0f116e20591d64f8777b290ce763
This commit is contained in:
parent
44ff0cb51f
commit
4132cc2d3b
BIN
SDL_gfx-2.0.26.tar.gz
(Stored with Git LFS)
BIN
SDL_gfx-2.0.26.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
SDL_gfx-2.0.27.tar.gz
(Stored with Git LFS)
Normal file
BIN
SDL_gfx-2.0.27.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 12 10:49:39 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 2.0.27
|
||||||
|
* fixed rotozoom locking bug and colorkey bug
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 17 21:09:08 UTC 2018 - bjorn.lie@gmail.com
|
Fri Aug 17 21:09:08 UTC 2018 - bjorn.lie@gmail.com
|
||||||
|
|
||||||
|
34
SDL_gfx.spec
34
SDL_gfx.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package SDL_gfx
|
# spec file for package SDL_gfx
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -12,13 +12,13 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define lname libSDL_gfx15
|
%define lname libSDL_gfx16
|
||||||
Name: SDL_gfx
|
Name: SDL_gfx
|
||||||
Version: 2.0.26
|
Version: 2.0.27
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: SDL Graphics Routines for Primitives and Other Support Functions
|
Summary: SDL Graphics Routines for Primitives and Other Support Functions
|
||||||
License: Zlib
|
License: Zlib
|
||||||
@ -26,8 +26,11 @@ Group: Development/Libraries/X11
|
|||||||
URL: http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/
|
URL: http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/
|
||||||
Source: http://www.ferzkopp.net/Software/SDL_gfx-2.0/%name-%version.tar.gz
|
Source: http://www.ferzkopp.net/Software/SDL_gfx-2.0/%name-%version.tar.gz
|
||||||
Source2: baselibs.conf
|
Source2: baselibs.conf
|
||||||
|
#https://sourceforge.net/p/sdlgfx/code/HEAD/tree/ChangeLog
|
||||||
|
BuildRequires: automake
|
||||||
BuildRequires: dos2unix
|
BuildRequires: dos2unix
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: libtool
|
||||||
|
BuildRequires: pkg-config
|
||||||
BuildRequires: pkgconfig(sdl)
|
BuildRequires: pkgconfig(sdl)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -61,25 +64,23 @@ provided basic drawing routines such as lines, circles or polygons and
|
|||||||
SDL_rotozoom which implemented a interpolating rotozoomer for SDL
|
SDL_rotozoom which implemented a interpolating rotozoomer for SDL
|
||||||
surfaces. The current components of the SDL_gfx library are:
|
surfaces. The current components of the SDL_gfx library are:
|
||||||
|
|
||||||
- Graphic Primitives (SDL_gfxPrimitves.h)
|
* Graphic Primitives (SDL_gfxPrimitves.h)
|
||||||
|
* Rotozoomer (SDL_rotozoom.h)
|
||||||
- Rotozoomer (SDL_rotozoom.h)
|
* Framerate control (SDL_framerate.h)
|
||||||
|
* MMX image filters (SDL_imageFilter.h)
|
||||||
- Framerate control (SDL_framerate.h)
|
|
||||||
|
|
||||||
- MMX image filters (SDL_imageFilter.h)
|
|
||||||
|
|
||||||
The library is backwards compatible to the above mentioned code. It is
|
The library is backwards compatible to the above mentioned code. It is
|
||||||
written in plain C and can be used in C++ code.
|
written in plain C and can be used in C++ code.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
autoreconf -fi
|
||||||
# MMX code has a problem with uninitialized variables; we would only turn it
|
# MMX code has a problem with uninitialized variables; we would only turn it
|
||||||
# on for x86_64 anyway - but that one can use SSE instead.
|
# on for x86_64 anyway - but that one can use SSE instead.
|
||||||
%configure --disable-static --disable-mmx
|
%configure --disable-static --disable-mmx
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
dos2unix README
|
dos2unix README
|
||||||
chmod 644 LICENSE AUTHORS ChangeLog NEWS README
|
chmod 644 LICENSE AUTHORS ChangeLog NEWS README
|
||||||
|
|
||||||
@ -87,13 +88,12 @@ chmod 644 LICENSE AUTHORS ChangeLog NEWS README
|
|||||||
%make_install
|
%make_install
|
||||||
find %buildroot -type f -name "*.la" -delete -print
|
find %buildroot -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n %lname -p /sbin/ldconfig
|
%ldconfig_scriptlets -n %lname
|
||||||
%postun -n %lname -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files -n %lname
|
%files -n %lname
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc AUTHORS ChangeLog NEWS README
|
%doc AUTHORS ChangeLog NEWS README
|
||||||
%_libdir/libSDL_gfx.so.15*
|
%_libdir/libSDL_gfx.so.[0-9]*
|
||||||
|
|
||||||
%files -n libSDL_gfx-devel
|
%files -n libSDL_gfx-devel
|
||||||
%_includedir/SDL/
|
%_includedir/SDL/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
libSDL_gfx15
|
libSDL_gfx16
|
||||||
provides "SDL_gfx-<targettype> = <version>"
|
provides "SDL_gfx-<targettype> = <version>"
|
||||||
obsoletes "SDL_gfx-<targettype> <= <version>"
|
obsoletes "SDL_gfx-<targettype> <= <version>"
|
||||||
libSDL_gfx-devel
|
libSDL_gfx-devel
|
||||||
requires -libSDL_gfx-<targettype>
|
requires -libSDL_gfx-<targettype>
|
||||||
requires "libSDL_gfx15-<targettype> = <version>"
|
requires "libSDL_gfx16-<targettype> = <version>"
|
||||||
|
Loading…
Reference in New Issue
Block a user