new packages: esound, flatbuffers, fstrcmp, goom, libaacs, shairplay, waylandpp
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#!/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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static \
|
||||
--without-xmms")
|
||||
|
||||
def build():
|
||||
autotools.make("CFLAGS=--std=gnu89")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "README")
|
||||
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>goom</Name>
|
||||
<Homepage>https://sourceforge.net/projects/goom</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<Icon>goom</Icon>
|
||||
<PartOf>multimedia</PartOf>
|
||||
<Summary>Shared library part of the Goom visualization plugin</Summary>
|
||||
<Description>Goom is an audio visualizer that can run on almost every platform</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<!-- <Dependency>xmms-devel</Dependency> needs glib1 -->
|
||||
</BuildDependencies>
|
||||
<Archive sha1sum="4856b86aadc67676c473a4664c5281bc05df278d" type="targz">mirrors://sourceforge/goom/goom2k4/0/goom-2k4-0-src.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>goom</Name>
|
||||
<Summary>Cool visual effects</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glibc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libgoom2.so*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>goom-devel</Name>
|
||||
<Summary>Development headers for goom</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>goom</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2005-02-07</Date>
|
||||
<Version>2004.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>goom</Name>
|
||||
<Summary xml:lang="hu">Klassz videoeffektek</Summary>
|
||||
<Description xml:lang="hu">A goom egy vizualizáló program, amely képes a legtöbb környezetben működni</Description>
|
||||
<Summary xml:lang="tr">Goom görselleştirme eklentisinin paylaşılan kitaplık bölümü</Summary>
|
||||
<Description xml:lang="tr">Goom, hemen hemen her platformda çalışabilen bir ses görselleştiricisidir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>goom-devel</Name>
|
||||
<Summary xml:lang="hu">A goom fejlécei</Summary>
|
||||
<Summary xml:lang="tr">Goom için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,37 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.export("LDFLAGS", "%s -lm" % get.LDFLAGS())
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--with-libwrap \
|
||||
--enable-static=no \
|
||||
--enable-alsa \
|
||||
--enable-ipv6 \
|
||||
--enable-oss \
|
||||
--disable-arts \
|
||||
--disable-dependency-tracking \
|
||||
--sysconfdir=/etc/esd")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# Delete the esound library
|
||||
pisitools.remove("/usr/bin/esd")
|
||||
pisitools.remove("/usr/share/man/man1/esd.1*")
|
||||
|
||||
pisitools.dodoc("MAINTAINERS", "NEWS", "README")
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
--- esound-0.2.38/audio_alsa09.c.old 2007-06-11 12:22:24.000000000 +0200
|
||||
+++ esound-0.2.38/audio_alsa09.c 2007-06-11 12:22:49.000000000 +0200
|
||||
@@ -486,7 +486,7 @@ void esd_audio_flush(void)
|
||||
}
|
||||
|
||||
if (alsa_playback_handle != NULL)
|
||||
- snd_pcm_drain( alsa_playback_handle );
|
||||
+ snd_pcm_drop( alsa_playback_handle );
|
||||
|
||||
if (alsadbg)
|
||||
print_state();
|
||||
@@ -0,0 +1,10 @@
|
||||
--- esound-0.2.38/esddsp.c 2007-04-19 16:43:59.000000000 +0200
|
||||
+++ esound-0.2.38.lennart/esddsp.c 2007-08-09 17:47:11.000000000 +0200
|
||||
@@ -252,6 +252,7 @@
|
||||
return (*func) (pathname, flags, mode);
|
||||
}
|
||||
|
||||
+#undef open
|
||||
int
|
||||
open (const char *pathname, int flags, ...)
|
||||
{
|
||||
@@ -0,0 +1,10 @@
|
||||
diff -urN esound-0.2.39/audio_oss.c esound-0.2.39.new/audio_oss.c
|
||||
--- esound-0.2.39/audio_oss.c 2008-07-15 18:00:03.000000000 +0200
|
||||
+++ esound-0.2.39.new/audio_oss.c 2008-07-21 13:17:58.000000000 +0200
|
||||
@@ -1,4 +1,5 @@
|
||||
#include "config.h"
|
||||
+#include <errno.h>
|
||||
|
||||
#ifdef HAVE_MACHINE_SOUNDCARD_H
|
||||
# include <machine/soundcard.h>
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
diff -up esound-0.2.41/esd_config.c.nospawn esound-0.2.41/esd_config.c
|
||||
--- esound-0.2.41/esd_config.c.nospawn 2009-03-31 23:57:35.860368388 -0400
|
||||
+++ esound-0.2.41/esd_config.c 2009-03-31 23:57:51.032658859 -0400
|
||||
@@ -6,7 +6,7 @@
|
||||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
|
||||
-int esd_no_spawn=0; /* If we can't even find the system config file,
|
||||
+int esd_no_spawn=1; /* If we can't even find the system config file,
|
||||
things are screwed up - don't try to make things
|
||||
worse. */
|
||||
int esd_spawn_wait_ms=100; /* Time to wait trying to connect to an
|
||||
@@ -0,0 +1,11 @@
|
||||
diff -up esound-0.2.38/esdlib.c.spew esound-0.2.38/esdlib.c
|
||||
--- esound-0.2.38/esdlib.c.spew 2007-04-19 10:43:59.000000000 -0400
|
||||
+++ esound-0.2.38/esdlib.c 2007-09-19 08:45:44.000000000 -0400
|
||||
@@ -479,7 +479,6 @@ esd_connect_tcpip(const char *host)
|
||||
strcpy ( connect_host, "localhost" );
|
||||
|
||||
if ( getaddrinfo ( connect_host, NULL, &hints, &result ) != 0 ) {
|
||||
- printf ("Usage:program_name [address][:port]");
|
||||
return (-1);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>esound</Name>
|
||||
<Homepage>http://www.tux.org/~ricdude/EsounD.html</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2</License>
|
||||
<Icon>esound</Icon>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>The Enlightened Sound Daemon</Summary>
|
||||
<Description>esound can mix several audio streams into one sound device. It will mix in pre-loaded samples, too. The requests are transparently handled by PulseAudio so it doesn't need to be launched as a daemon.</Description>
|
||||
<Archive sha1sum="6c343483b3789f439277935eaad7e478bee685ea" type="tarbz2">http://ftp.gnome.org/pub/GNOME/sources/esound/0.2/esound-0.2.41.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>audiofile-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">esound-0.2.38-drain.patch</Patch>
|
||||
<Patch level="1">esound-0.2.38-fix-open-macro.patch</Patch>
|
||||
<Patch level="1">remove-confusing-spew.patch</Patch>
|
||||
<Patch level="1">esound-nospawn.patch</Patch>
|
||||
<Patch level="1">esound-0.2.39-fix-errno.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>esound</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>audiofile</Dependency>
|
||||
<Dependency>pulseaudio</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libesd.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libesddsp.so*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>esound-devel</Name>
|
||||
<Summary>Development files for esound</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">esound</Dependency>
|
||||
<Dependency>audiofile-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-08-26</Date>
|
||||
<Version>0.2.41</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>esound</Name>
|
||||
<Summary xml:lang="tr">Enlightened Ses Sunucusu</Summary>
|
||||
<Description xml:lang="tr">EsounD birkaç ses akışını bir ses aygıtında birleştirebilir. Ayrıca önceden yüklenmiş örnekleri de ses akışları ile karıştırabilir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>esound-devel</Name>
|
||||
<Summary xml:lang="tr">esound için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user