Merge pull request #1614 from suvari/master

sdl2-ttf,  sdl2-net add main
This commit is contained in:
Ertuğrul Erata
2016-04-11 21:29:31 +03:00
13 changed files with 516 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/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 get
WorkDir = "SDL2_net-%s" % get.srcVERSION()
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("CHANGES.txt", "COPYING.txt", "README.txt")
+54
View File
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>sdl2-net</Name>
<Homepage>http://www.libsdl.org/projects/SDL_net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>SDL network library 2.0 series</Summary>
<Description>sdl-mixer is a SDL library for network access.</Description>
<Archive sha1sum="99c17ee2ecf32c8a136163bbaa8f018f7a3e31e9" type="targz">http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libsdl2-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>sdl2-net</Name>
<RuntimeDependencies>
<Dependency>libsdl2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>sdl2-net-devel</Name>
<Summary>Development files for sdl-net</Summary>
<RuntimeDependencies>
<Dependency release="current">sdl2-net</Dependency>
<Dependency>libsdl2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-11</Date>
<Version>2.0.1</Version>
<Comment>First release</Comment>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Update>
</History>
</PISI>
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>sdl2-net</Name>
<Summary xml:lang="tr">SDL ağ kütüphanesi 2.0 serisi</Summary>
<Summary xml:lang="fr">Librairie réseau de SDL.</Summary>
<Description xml:lang="tr">sdl-net, SDL için ağ erişim kitaplığıdır.</Description>
</Source>
<Package>
<Name>sdl2-net-devel</Name>
<Summary xml:lang="tr">sdl2-net için geliştirme dosyaları</Summary>
</Package>
</PISI>
+39
View File
@@ -0,0 +1,39 @@
#!/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 get
WorkDir = "SDL2_ttf-%s" % get.srcVERSION()
def setup():
options = "--disable-dependency-tracking \
--disable-static \
--with-x"
if get.buildTYPE() == "emul32":
#options += " --prefix=/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():
pisitools.dosed("Makefile", "-lz -lbz2", "")
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("CHANGES.txt", "COPYING.txt", "README.txt")
+80
View File
@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>sdl2-ttf</Name>
<Homepage>http://www.libsdl.org/projects/SDL_ttf/</Homepage>
<Packager>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>TrueType font support for SDL2</Summary>
<Description>SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable.</Description>
<Archive sha1sum="34c5fdc8508c7e14356579477f9ca2b0d6c06ffc" type="targz">http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz</Archive>
<BuildDependencies>
<Dependency>libsdl2-devel</Dependency>
<Dependency>freetype-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>sdl2-ttf</Name>
<RuntimeDependencies>
<Dependency>libsdl2</Dependency>
<Dependency>harfbuzz</Dependency>
<Dependency>freetype</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>sdl2-ttf-devel</Name>
<Summary>Development files for sdl2-ttf</Summary>
<RuntimeDependencies>
<Dependency>libsdl2-devel</Dependency>
<Dependency release="current">sdl2-ttf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib32/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>sdl2-ttf-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for sdl2-ttf</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>libsdl2-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency>glibc-32bit</Dependency>
<Dependency>libpng-32bit</Dependency>
<Dependency>libsdl2-32bit</Dependency>
<Dependency>harfbuzz-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
<Dependency release="current">sdl2-ttf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-11</Date>
<Version>2.0.14</Version>
<Comment>First release</Comment>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Update>
</History>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>sdl2-ttf</Name>
<Summary xml:lang="tr">SDL2 TTF kitaplığı</Summary>
<Description xml:lang="tr">SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır.</Description>
<Description xml:lang="fr">SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle.</Description>
<Description xml:lang="es">SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable.</Description>
</Source>
<Package>
<Name>sdl2-ttf-devel</Name>
<Summary xml:lang="tr">sdl2-ttf için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>sdl2-ttf-32bit</Name>
<Summary xml:lang="tr">sdl2-ttf için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>
+191
View File
@@ -6644,6 +6644,61 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>sdl2-net</Name>
<Homepage>http://www.libsdl.org/projects/SDL_net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<PartOf>multimedia.misc</PartOf>
<Summary xml:lang="fr">Librairie réseau de SDL.</Summary>
<Summary xml:lang="en">SDL network library 2.0 series</Summary>
<Summary xml:lang="tr">SDL ağ kütüphanesi 2.0 serisi</Summary>
<Description xml:lang="en">sdl-mixer is a SDL library for network access.</Description>
<Description xml:lang="tr">sdl-net, SDL için ağ erişim kitaplığıdır.</Description>
<Archive type="targz" sha1sum="99c17ee2ecf32c8a136163bbaa8f018f7a3e31e9">http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libsdl2-devel</Dependency>
</BuildDependencies>
<SourceURI>multimedia/misc/sdl2-net/pspec.xml</SourceURI>
</Source>
<Package>
<Name>sdl2-net</Name>
<RuntimeDependencies>
<Dependency>libsdl2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>sdl2-net-devel</Name>
<Summary xml:lang="en">Development files for sdl-net</Summary>
<Summary xml:lang="tr">sdl2-net için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="1">sdl2-net</Dependency>
<Dependency>libsdl2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-11</Date>
<Version>2.0.1</Version>
<Comment>First release</Comment>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libbluray</Name>
@@ -7126,6 +7181,88 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>sdl2-ttf</Name>
<Homepage>http://www.libsdl.org/projects/SDL_ttf/</Homepage>
<Packager>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<PartOf>multimedia.misc</PartOf>
<Summary xml:lang="en">TrueType font support for SDL2</Summary>
<Summary xml:lang="tr">SDL2 TTF kitaplığı</Summary>
<Description xml:lang="fr">SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu&apos;elle.</Description>
<Description xml:lang="en">SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable.</Description>
<Description xml:lang="tr">SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır.</Description>
<Description xml:lang="es">SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable.</Description>
<Archive type="targz" sha1sum="34c5fdc8508c7e14356579477f9ca2b0d6c06ffc">http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz</Archive>
<BuildDependencies>
<Dependency>libsdl2-devel</Dependency>
<Dependency>freetype-devel</Dependency>
</BuildDependencies>
<SourceURI>multimedia/misc/sdl2-ttf/pspec.xml</SourceURI>
</Source>
<Package>
<Name>sdl2-ttf</Name>
<RuntimeDependencies>
<Dependency>libsdl2</Dependency>
<Dependency>harfbuzz</Dependency>
<Dependency>freetype</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>sdl2-ttf-devel</Name>
<Summary xml:lang="en">Development files for sdl2-ttf</Summary>
<Summary xml:lang="tr">sdl2-ttf için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency>libsdl2-devel</Dependency>
<Dependency release="1">sdl2-ttf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib32/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>sdl2-ttf-32bit</Name>
<Summary xml:lang="en">32-bit shared libraries for sdl2-ttf</Summary>
<Summary xml:lang="tr">sdl2-ttf için 32-bit paylaşımlı kitaplıklar</Summary>
<PartOf>emul32</PartOf>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>libsdl2-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency>glibc-32bit</Dependency>
<Dependency>libpng-32bit</Dependency>
<Dependency>libsdl2-32bit</Dependency>
<Dependency>harfbuzz-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
<Dependency release="1">sdl2-ttf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-11</Date>
<Version>2.0.14</Version>
<Comment>First release</Comment>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libdvdcss</Name>
@@ -77664,6 +77801,60 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>physfs</Name>
<Homepage>http://icculus.org/physfs/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>ZLIB</License>
<IsA>library</IsA>
<PartOf>programming.misc</PartOf>
<Summary xml:lang="en">Filesystem library</Summary>
<Summary xml:lang="tr">Dosya sistemi kitaplığı</Summary>
<Summary xml:lang="pl">Warstwa abstrakcji plików dla gier</Summary>
<Description xml:lang="fr">Couche d&apos;abstraction pour les systèmes de fichier, généralement utilisée par les jeux.</Description>
<Description xml:lang="en">Abstraction layer for filesystems.</Description>
<Description xml:lang="tr">physfs dosya sistemi katmanı kitaplığıdır.</Description>
<Description xml:lang="es">Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos</Description>
<Description xml:lang="pl">PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów.</Description>
<Archive type="tarbz2" sha1sum="327308c777009a41bbabb9159b18c4c0ac069537">http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>zlib</Dependency>
</BuildDependencies>
<SourceURI>programming/misc/physfs/pspec.xml</SourceURI>
</Source>
<Package>
<Name>physfs</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>physfs-devel</Name>
<Summary xml:lang="en">Development files for physfs</Summary>
<Summary xml:lang="tr">physfs için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="1">physfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-11</Date>
<Version>2.0.3</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libinput</Name>
+1 -1
View File
@@ -1 +1 @@
6513d28c1229775dc5e6add178e0c25b96e0d78b
83593e89d34153f68bfcfbf20dd86044720a1094
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
52923847fa17ad43164c4e44febcea98bd09bd65
6050b90dcca8260458c1e680f65a878f6acf9a59
+28
View File
@@ -0,0 +1,28 @@
#!/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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DPHYSFS_BUILD_STATIC=OFF \
-DPHYSFS_BUILD_SHARED=ON \
-DPHYSFS_ARCHIVE_7Z=OFF \
-DPHYSFS_BUILD_TEST=OFF \
-DPHYSFS_BUILD_WX_TEST=OFF \
-DPHYSFS_INTERNAL_ZLIB=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr ")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall('DESTDIR="%s"' % get.installDIR())
pisitools.dodoc("CHANGELOG.txt", "CREDITS.txt", "TODO.txt")
+50
View File
@@ -0,0 +1,50 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>physfs</Name>
<Homepage>http://icculus.org/physfs/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>ZLIB</License>
<IsA>library</IsA>
<Summary>Filesystem library</Summary>
<Description>Abstraction layer for filesystems.</Description>
<Archive sha1sum="327308c777009a41bbabb9159b18c4c0ac069537" type="tarbz2">http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>zlib</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>physfs</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>physfs-devel</Name>
<Summary>Development files for physfs</Summary>
<RuntimeDependencies>
<Dependency release="current">physfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-11</Date>
<Version>2.0.3</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+17
View File
@@ -0,0 +1,17 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>physfs</Name>
<Summary xml:lang="tr">Dosya sistemi kitaplığı</Summary>
<Summary xml:lang="pl">Warstwa abstrakcji plików dla gier</Summary>
<Description xml:lang="tr">physfs dosya sistemi katmanı kitaplığıdır.</Description>
<Description xml:lang="fr">Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux.</Description>
<Description xml:lang="es">Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos</Description>
<Description xml:lang="pl">PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów.</Description>
</Source>
<Package>
<Name>physfs-devel</Name>
<Summary xml:lang="tr">physfs için geliştirme dosyaları</Summary>
</Package>
</PISI>