Merge pull request #109 from ayhanyalcinsoy/master

some of gstreamer family
This commit is contained in:
Ertuğrul Erata
2015-07-21 16:29:37 +03:00
65 changed files with 4782 additions and 11 deletions
+14 -10
View File
@@ -15,30 +15,33 @@
<Archive sha1sum="2c4b34245107395bc9103649bb2af1c1088a3f7c" type="tarxz">http://ftp.gnome.org/pub/gnome/sources/gst-plugins-base/0.10/gst-plugins-base-0.10.36.tar.xz</Archive>
<BuildDependencies>
<Dependency>gstreamer-devel</Dependency>
<Dependency versionFrom="0.90">libcdio-devel</Dependency>
<Dependency>cdparanoia-devel</Dependency>
<Dependency>gstreamer-next-devel</Dependency>
<!--<Dependency versionFrom="0.90">libcdio-devel</Dependency>-->
<!--<Dependency>cdparanoia-devel</Dependency>-->
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<!--<Dependency>cairo-devel</Dependency>-->
<Dependency>libXv-devel</Dependency>
<Dependency>liboil-devel</Dependency>
<!--<Dependency>liboil-devel</Dependency>-->
<Dependency>libogg-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<!--<Dependency>libXext-devel</Dependency>-->
<Dependency>alsa-lib-devel</Dependency>
<Dependency>libvorbis-devel</Dependency>
<Dependency>libtheora-devel</Dependency>
<Dependency>libvisual-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>orc-devel</Dependency>
<Dependency>gnome-vfs-devel</Dependency>
<!--<Dependency>gnome-vfs-devel</Dependency>-->
</BuildDependencies>
</Source>
<Package>
<Name>gst-plugins-base</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency versionFrom="0.90">libcdio</Dependency>
<Dependency>cdparanoia</Dependency>
<Dependency>pango</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libXv</Dependency>
@@ -49,7 +52,6 @@
<Dependency>libvisual</Dependency>
<Dependency>libtheora</Dependency>
<Dependency>orc</Dependency>
<Dependency>gnome-vfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
@@ -58,7 +60,7 @@
<Path fileType="library">/usr/lib/libgst*</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
<Path fileType="data">/usr/share/gst-plugins-base</Path>
<Path fileType="data">/usr/share/gst-plugins-base</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
@@ -92,6 +94,7 @@
<Dependency release="current">gst-plugins-base</Dependency>
<Dependency>orc-32bit</Dependency>
<Dependency>zlib-32bit</Dependency>
<Dependency>glibc-32bit</Dependency>
<Dependency>glib2-32bit</Dependency>
<Dependency>libXv-32bit</Dependency>
<Dependency>cairo-32bit</Dependency>
@@ -117,6 +120,7 @@
<Summary>Development files for gst-plugins-base</Summary>
<RuntimeDependencies>
<Dependency release="current">gst-plugins-base</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
</RuntimeDependencies>
<Files>
+3 -1
View File
@@ -27,7 +27,7 @@
<Package>
<Name>gstreamer-next</Name>
<RuntimeDependencies>
<!--<Dependency>ghostscript</Dependency>-->
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
@@ -51,6 +51,7 @@
</BuildDependencies>
<RuntimeDependencies>
<Dependency>glib2-32bit</Dependency>
<Dependency>glibc-32bit</Dependency>
<Dependency release="current">gstreamer-next</Dependency>
</RuntimeDependencies>
<Files>
@@ -63,6 +64,7 @@
<Summary>Development files for gstreamer</Summary>
<RuntimeDependencies>
<Dependency release="current">gstreamer-next</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure()
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
+93
View File
@@ -0,0 +1,93 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gstreamermm</Name>
<Homepage>http://gstreamer.freedesktop.org/bindings/cplusplus.html</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>GStreamer C++ bindings</Summary>
<Description>The GStreamer API C++ bindings are based on gtkmm, using the same lifecycle mechanism.</Description>
<Archive sha1sum="463c106b68d73e130be157d060f74c01f963402f" type="tarxz">http://ftp.gnome.org/pub/gnome/sources/gstreamermm/0.10/gstreamermm-0.10.11.tar.xz</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>glibmm-devel</Dependency>
<Dependency>libxmlpp-devel</Dependency>
<Dependency>libsigc++</Dependency>
<Dependency>libgcc</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gstreamermm</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>glibmm</Dependency>
<Dependency>libxmlpp</Dependency>
<Dependency>libsigc++</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/devhelp/books/gstreamermm-0.10</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>gstreamermm-devel</Name>
<Summary>gstreamermm için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency>glibmm-devel</Dependency>
<Dependency>libxmlpp-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency release="current">gstreamermm</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/gstreamermm-0.10</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-05-28</Date>
<Version>0.10.11</Version>
<Comment>Rebuild.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-02-27</Date>
<Version>0.10.11</Version>
<Comment>Rebuild Unused</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-26</Date>
<Version>0.10.11</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-08-08</Date>
<Version>0.10.11</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gstreamermm</Name>
<Summary xml:lang="tr">Gstreamer C++ arayüzü</Summary>
<Description xml:lang="tr">Gstreamer'ın C++ arayüzü gtkmm temel alınarak hazırlanmıştır, aynı yaşam ömrü mekanizmasını kullanır.</Description>
</Source>
<Package>
<Name>gstreamermm-devel</Name>
<Summary xml:lang="tr">gstreamermm için geliştirme dosyaları</Summary>
</Package>
</PISI>
+30
View File
@@ -0,0 +1,30 @@
#!/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
def setup():
if get.buildTYPE() == "emul32":
pisitools.dosed("configure.ac", "(.*OC_X86_64_ASM.*)", r"#\1")
shelltools.system("./autogen.sh")
autotools.configure("--enable-shared \
--enable-encode \
--disable-dependency-tracking \
--disable-spec \
--disable-sdltest \
--disable-examples \
--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall('DESTDIR="%s" docdir=/%s/libtheora' % (get.installDIR(), get.docDIR()))
pisitools.dodoc("README", "AUTHORS", "CHANGES")
@@ -0,0 +1,14 @@
diff -ur libtheora-1.0beta2.orig/configure.ac libtheora-1.0beta2/configure.ac
--- libtheora-1.0beta2.orig/configure.ac 2007-10-13 00:01:38.000000000 +0300
+++ libtheora-1.0beta2/configure.ac 2007-11-25 22:44:49.000000000 +0200
@@ -102,8 +102,8 @@
case $host in
*)
DEBUG="-g -Wall -Wno-parentheses -DDEBUG -D__NO_MATH_INLINES"
- CFLAGS="-Wall -Wno-parentheses -O3 -fforce-addr -fomit-frame-pointer -finline-functions -funroll-loops"
- PROFILE="-Wall -Wno-parentheses -pg -g -O3 -fno-inline-functions -DDEBUG";;
+ CFLAGS="-Wall -Wno-parentheses"
+ PROFILE="-Wall -Wno-parentheses -pg -g -fno-inline-functions -DDEBUG";;
esac
fi
CFLAGS="$CFLAGS $cflags_save"
@@ -0,0 +1,17 @@
http://bugs.gentoo.org/465450
http://trac.xiph.org/ticket/1947
--- examples/png2theora.c
+++ examples/png2theora.c
@@ -462,9 +462,9 @@
png_set_strip_alpha(png_ptr);
row_data = (png_bytep)png_malloc(png_ptr,
- 3*height*width*png_sizeof(*row_data));
+ 3*height*width*sizeof(*row_data));
row_pointers = (png_bytep *)png_malloc(png_ptr,
- height*png_sizeof(*row_pointers));
+ height*sizeof(*row_pointers));
for(y = 0; y < height; y++) {
row_pointers[y] = row_data + y*(3*width);
}
+94
View File
@@ -0,0 +1,94 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libtheora</Name>
<Homepage>http://www.theora.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>The Theora Video Compression Codec</Summary>
<Description>libtheora is Xiph.Org's first publicly released video codec, intended for use within the Ogg's project's Ogg multimedia streaming system.</Description>
<Archive sha1sum="8dcaa8e61cd86eb1244467c0b64b9ddac04ae262" type="tarbz2">http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libogg-devel</Dependency>
<Dependency>libvorbis-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">flags.patch</Patch>
<Patch level="0">libtheora-1.1.1-libpng16.patch</Patch>
</Patches>
</Source>
<Package>
<Name>libtheora</Name>
<RuntimeDependencies>
<Dependency>libogg</Dependency>
<Dependency>libvorbis</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libtheora-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for libtheora</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>libogg-32bit</Dependency>
<Dependency>glibc-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">libtheora</Dependency>
<Dependency>libogg-32bit</Dependency>
<Dependency>glibc-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<Package>
<Name>libtheora-devel</Name>
<Summary>Development files for libtheora</Summary>
<RuntimeDependencies>
<Dependency release="current">libtheora</Dependency>
<Dependency>libogg-devel</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>
<History>
<Update release="3">
<Date>2014-05-20</Date>
<Version>1.1.1</Version>
<Comment>Rebuild, add libpng16 patch.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-02-14</Date>
<Version>1.1.1</Version>
<Comment>Add emul32</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-12</Date>
<Version>1.1.1</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libtheora</Name>
<Summary xml:lang="tr">Theora video sıkıştırma kodlaması</Summary>
<Description xml:lang="tr">libtheora, Ogg projesi kapsamında Ogg çokluortam akış sistemi ile beraber kullanılmak üzere tasarlanmış bir video kodlamasıdır.</Description>
<Summary xml:lang="fr">Le codec (compresseur / décompresseur) de compression vidéo Theora.</Summary>
<Summary xml:lang="de">Der Theora Video Kompressions-Codec</Summary>
</Source>
<Package>
<Name>libtheora-devel</Name>
<Summary xml:lang="tr">libtheora için geliştirme dosyaları</Summary>
</Package>
</PISI>