This commit is contained in:
Rmys
2018-11-24 23:11:52 +03:00
parent 1c6fa459b9
commit f2ee86df82
7 changed files with 168097 additions and 167956 deletions
-43
View File
@@ -1,43 +0,0 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import libtools
from pisi.actionsapi import get
WorkDir = "SDL_gfx-%s" % get.srcVERSION()
def setup():
pisitools.dosed("configure.in", "-O")
shelltools.makedirs("m4")
autotools.autoreconf("-vfi")
options = "--disable-dependency-tracking \
--enable-mmx \
--disable-static"
if get.buildTYPE() == "emul32":
options += " --includedir=/usr/include \
--libdir=/usr/lib32"
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
shelltools.export("CXXFLAGS", "%s -m32" % get.CXXFLAGS())
shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS())
autotools.configure(options)
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "LICENSE", "README")
pisitools.insinto("/%s/sdl-gfx/" % get.docDIR(), "Docs", "html")
-90
View File
@@ -1,90 +0,0 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>sdl-gfx</Name>
<Homepage>http://www.ferzkopp.net/Software/SDL_gfx-2.0/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>SDL graphics drawing primitives and other support functions</Summary>
<Description>SDL_gfx library evolved out of the SDL_gfxPrimitives code which provided basic drawing routines such as lines, circles or polygons and SDL_rotozoom which implemented a interpolating rotozoomer for SDL surfaces.</Description>
<Archive sha1sum="20a89d0b71b7b790b830c70f17ed2c44100bc0f4" type="targz">https://netix.dl.sourceforge.net/project/sdlgfx/SDL_gfx-2.0.25.tar.gz</Archive>
<BuildDependencies>
<Dependency>libsdl-devel</Dependency>
</BuildDependencies>
<!--
<Patches>
<Patch level="1">gcc43.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>SDL_gfx</Name>
<Name>sdl-gfx</Name>
<RuntimeDependencies>
<Dependency>libsdl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/</Path>
<Path fileType="doc">/usr/share/doc/sdl-gfx</Path>
</Files>
</Package>
<Package>
<Name>sdl-gfx-devel</Name>
<Summary>Development files for sdl-gfx</Summary>
<RuntimeDependencies>
<Dependency release="current">SDL_gfx</Dependency>
<Dependency>libsdl-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib32/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc/sdl-gfx/html</Path>
</Files>
</Package>
<Package>
<Name>sdl-gfx-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for sdl-gfx</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>libsdl-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">SDL_gfx</Dependency>
<Dependency>libsdl-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32/</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2018-11-23</Date>
<Version>2.0.25</Version>
<Comment>Version Bump</Comment>
<Name>Aydin Atmaca</Name>
<Email>aydinatmaca@gmail.com</Email>
</Update>
<Update release="2">
<Date>2014-03-09</Date>
<Version>2.0.24</Version>
<Comment>Rebuild for buildhost</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-29</Date>
<Version>2.0.24</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
-20
View File
@@ -1,20 +0,0 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>sdl-gfx</Name>
<Summary xml:lang="tr">SDL grafik çizim ve destek fonksiyonları kitaplığı</Summary>
<Description xml:lang="tr">SDL_gfx, çizgi, çember ve poligon çizmekte kullanılan bir SDL kitaplığıdır.</Description>
<Description xml:lang="fr">La librairie SDL_gfx a évolué en dehors du code des SDL_gfxPrimitives fournissant les routines de dessin de base tels que les lignes, les cercles, les polygones et SDL_rorozoom qui implémentait un rotozoomer d'interpolation de surfaces SDL.</Description>
<Description xml:lang="es">La librería SDL_gfx evoucionó del código de SDL_gfxPrimitives, que facilitaba rutinas básicas de dibujo como líneas, círculos o polígonos y SDL_rotozoom, que implementa un rotozoomer interpolado para superficies SDL.</Description>
</Source>
<Package>
<Name>sdl-gfx-devel</Name>
<Summary xml:lang="tr">sdl-gfx için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>sdl-gfx-32bit</Name>
<Summary xml:lang="tr">sdl-gfx için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>
+168095 -167801
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
8ca7616ef300c94706f3c92894bcf5f3d5fe434a
de7417e0509bcd2bd194fa4e6e77d8b3b8e3a956
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
6542581a05e0cd9e4d84a8fab2ef16067e1cfbd4
4b5212a05db73389d6b360da134dfce59809400c