This commit is contained in:
commit
1ffd46bc18
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
fluidsynth-1.0.7a.tar.bz2
Normal file
3
fluidsynth-1.0.7a.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c26c9f2e3a98614a9d59a710c673ba4526e04b62c6baab2f292a8a2baedf03d
|
||||
size 876383
|
11
fluidsynth-64bit-fix.diff
Normal file
11
fluidsynth-64bit-fix.diff
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/fluidsynth_priv.h-dist 2006-05-15 15:36:31.000000000 +0200
|
||||
+++ src/fluidsynth_priv.h 2006-05-15 15:36:49.000000000 +0200
|
||||
@@ -287,7 +287,7 @@ typedef FILE* fluid_file;
|
||||
*/
|
||||
#ifdef ENABLE_SSE
|
||||
/* FIXME - This is broken on AMD 64 - only used if SSE enabled */
|
||||
-#define FLUID_ALIGN16BYTE(ptr)(((int)(ptr)+15) & (~0xFL))
|
||||
+#define FLUID_ALIGN16BYTE(ptr)(((long)(ptr)+15) & (~0xFL))
|
||||
#else
|
||||
#define FLUID_ALIGN16BYTE(ptr) ptr
|
||||
#endif
|
90
fluidsynth.changes
Normal file
90
fluidsynth.changes
Normal file
@ -0,0 +1,90 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 15 15:46:14 CEST 2006 - tiwai@suse.de
|
||||
|
||||
- updated to version 1.0.7a.
|
||||
* cleanup of LADCCA support
|
||||
* fix warnings with JACK backend
|
||||
* fix sequencer buffer overrun bug
|
||||
* new filter routine
|
||||
* crash bugfix
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 21:35:56 CET 2006 - mls@suse.de
|
||||
|
||||
- converted neededforbuild to BuildRequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 12 18:26:33 CET 2005 - tiwai@suse.de
|
||||
|
||||
- fix the crash with 64bit architectures (#137998)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 12 20:00:06 CEST 2005 - tiwai@suse.de
|
||||
|
||||
- removed glib* from neededforbuild.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 14 11:45:27 CEST 2005 - tiwai@suse.de
|
||||
|
||||
- updated to version 1.0.6.
|
||||
- split fluidsynth-dssi to an individual package (built from
|
||||
own tarball).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 8 12:23:43 CEST 2005 - tiwai@suse.de
|
||||
|
||||
- fix for gcc-4.0.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 21 15:08:32 CET 2005 - tiwai@suse.de
|
||||
|
||||
- updated to version 1.0.5.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 17 20:15:59 CEST 2004 - tiwai@suse.de
|
||||
|
||||
- fixed the build of fluidsynth-dssi plugin.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 17 17:13:33 CEST 2004 - tiwai@suse.de
|
||||
|
||||
- Added the DSSI plugin support.
|
||||
A new subpackage fluidsynth-dssi is created.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 27 01:30:09 CEST 2004 - ro@suse.de
|
||||
|
||||
- add -fno-strict-aliasing
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 19:39:14 CET 2004 - tiwai@suse.de
|
||||
|
||||
- added non-root build.
|
||||
- added %run_ldconfig.
|
||||
- fixed %defattr.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 18 18:57:58 CET 2003 - tiwai@suse.de
|
||||
|
||||
- updated to version 1.0.3.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 28 11:12:15 CEST 2003 - tiwai@suse.de
|
||||
|
||||
- fixed bugs; retrieved from 1.0.3.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 3 17:44:34 CEST 2003 - tiwai@suse.de
|
||||
|
||||
- updated to version 1.0.2.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 6 16:20:24 CEST 2003 - tiwai@suse.de
|
||||
|
||||
- updated to version 1.0.1.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 27 17:22:27 CET 2003 - tiwai@suse.de
|
||||
|
||||
- initial version 1.0.0. iiwusynth is obsoleted.
|
||||
|
144
fluidsynth.spec
Normal file
144
fluidsynth.spec
Normal file
@ -0,0 +1,144 @@
|
||||
#
|
||||
# spec file for package fluidsynth (Version 1.0.7a)
|
||||
#
|
||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: fluidsynth
|
||||
BuildRequires: alsa-devel jack-devel ladspa readline-devel
|
||||
Summary: A Real-Time Software Synthesizer That Uses Soundfont(tm)
|
||||
Version: 1.0.7a
|
||||
Release: 1
|
||||
Group: Productivity/Multimedia/Sound/Midi
|
||||
# Obsoletes: iiwusynth
|
||||
# Provides: iiwusynth
|
||||
Autoreqprov: on
|
||||
License: LGPL
|
||||
URL: http://www.fluidsynth.org/
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Patch: fluidsynth-64bit-fix.diff
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
FluidSynth (formerly IIWU Synth) is based on the SoundFont(tm) 2
|
||||
specifications. It is a real-time "software synthesizer". FluidSynth
|
||||
can read MIDI events from the MIDI input device and render them to the
|
||||
audio device. It can also play MIDI files.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Peter Hanappe <peter@hanappe.com>
|
||||
Samuel Bianchini
|
||||
Johnathan Lee
|
||||
|
||||
%package devel
|
||||
Summary: Development package for the fluidsynth library
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: fluidsynth = %{version} glibc-devel alsa-devel readline-devel ncurses-devel jack-devel
|
||||
|
||||
%description devel
|
||||
This package contains the files needed to compile programs that use the
|
||||
fluidsynth library.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Peter Hanappe <peter@hanappe.com>
|
||||
Samuel Bianchini
|
||||
Johnathan Lee
|
||||
|
||||
%prep
|
||||
# %setup
|
||||
%setup -n %{name}-1.0.7
|
||||
%patch
|
||||
%{?suse_update_config:%{suse_update_config -f}}
|
||||
|
||||
%build
|
||||
autoreconf --force --install
|
||||
CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" \
|
||||
./configure --prefix=%{_prefix} \
|
||||
--libdir=%{_libdir} \
|
||||
--mandir=%{_mandir} \
|
||||
--enable-jack-support \
|
||||
--enable-ladspa
|
||||
make
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
%run_ldconfig
|
||||
|
||||
%postun
|
||||
%run_ldconfig
|
||||
|
||||
%clean
|
||||
[ "$RPM_BUILD_ROOT" != "/" -a -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
|
||||
%{_bindir}/*
|
||||
%{_libdir}/lib*.so.*
|
||||
%{_mandir}/man?/*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/lib*.so
|
||||
%{_libdir}/lib*.a
|
||||
%{_libdir}/lib*.la
|
||||
%{_includedir}/*
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
|
||||
%changelog -n fluidsynth
|
||||
* Mon May 15 2006 - tiwai@suse.de
|
||||
- updated to version 1.0.7a.
|
||||
* cleanup of LADCCA support
|
||||
* fix warnings with JACK backend
|
||||
* fix sequencer buffer overrun bug
|
||||
* new filter routine
|
||||
* crash bugfix
|
||||
* Wed Jan 25 2006 - mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Mon Dec 12 2005 - tiwai@suse.de
|
||||
- fix the crash with 64bit architectures (#137998)
|
||||
* Wed Oct 12 2005 - tiwai@suse.de
|
||||
- removed glib* from neededforbuild.
|
||||
* Tue Jun 14 2005 - tiwai@suse.de
|
||||
- updated to version 1.0.6.
|
||||
- split fluidsynth-dssi to an individual package (built from
|
||||
own tarball).
|
||||
* Fri Apr 08 2005 - tiwai@suse.de
|
||||
- fix for gcc-4.0.
|
||||
* Fri Jan 21 2005 - tiwai@suse.de
|
||||
- updated to version 1.0.5.
|
||||
* Tue Aug 17 2004 - tiwai@suse.de
|
||||
- fixed the build of fluidsynth-dssi plugin.
|
||||
* Tue Aug 17 2004 - tiwai@suse.de
|
||||
- Added the DSSI plugin support.
|
||||
A new subpackage fluidsynth-dssi is created.
|
||||
* Tue Apr 27 2004 - ro@suse.de
|
||||
- add -fno-strict-aliasing
|
||||
* Tue Jan 13 2004 - tiwai@suse.de
|
||||
- added non-root build.
|
||||
- added %%run_ldconfig.
|
||||
- fixed %%defattr.
|
||||
* Tue Nov 18 2003 - tiwai@suse.de
|
||||
- updated to version 1.0.3.
|
||||
* Thu Aug 28 2003 - tiwai@suse.de
|
||||
- fixed bugs; retrieved from 1.0.3.
|
||||
* Thu Jul 03 2003 - tiwai@suse.de
|
||||
- updated to version 1.0.2.
|
||||
* Fri Jun 06 2003 - tiwai@suse.de
|
||||
- updated to version 1.0.1.
|
||||
* Thu Mar 27 2003 - tiwai@suse.de
|
||||
- initial version 1.0.0. iiwusynth is obsoleted.
|
Loading…
Reference in New Issue
Block a user