rpms/lmms/devel import.log, NONE, 1.1 lmms-0.4.2-gcc44.patch, NONE, 1.1 lmms-0.4.2-libdir.patch, NONE, 1.1 lmms-0.4.2-libexecdir.patch, NONE, 1.1 lmms-0.4.2-vst-nowine.patch, NONE, 1.1 lmms.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Thomas Moschny thm at fedoraproject.org
Thu Feb 12 21:09:59 UTC 2009


Author: thm

Update of /cvs/pkgs/rpms/lmms/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14365/devel

Modified Files:
	.cvsignore sources 
Added Files:
	import.log lmms-0.4.2-gcc44.patch lmms-0.4.2-libdir.patch 
	lmms-0.4.2-libexecdir.patch lmms-0.4.2-vst-nowine.patch 
	lmms.spec 
Log Message:
Initial import to devel branch.


--- NEW FILE import.log ---
lmms-0_4_2-3_fc10:HEAD:lmms-0.4.2-3.fc10.src.rpm:1234472931

lmms-0.4.2-gcc44.patch:

--- NEW FILE lmms-0.4.2-gcc44.patch ---
diff -up lmms-0.4.2/CMakeLists.txt.orig lmms-0.4.2/CMakeLists.txt
--- lmms-0.4.2/CMakeLists.txt.orig	2008-12-19 17:44:15.000000000 +0100
+++ lmms-0.4.2/CMakeLists.txt	2009-02-12 09:04:05.000000000 +0100
@@ -69,6 +69,7 @@ ENDIF(LMMS_BUILD_WIN32)
 
 CHECK_INCLUDE_FILES(stdint.h LMMS_HAVE_STDINT_H)
 CHECK_INCLUDE_FILES(stdlib.h LMMS_HAVE_STDLIB_H)
+CHECK_INCLUDE_FILES(stdio.h LMMS_HAVE_STDIO_H)
 CHECK_INCLUDE_FILES(pthread.h LMMS_HAVE_PTHREAD_H)
 CHECK_INCLUDE_FILES(semaphore.h LMMS_HAVE_SEMAPHORE_H)
 CHECK_INCLUDE_FILES(unistd.h LMMS_HAVE_UNISTD_H)
diff -up lmms-0.4.2/lmmsconfig.h.in.orig lmms-0.4.2/lmmsconfig.h.in
--- lmms-0.4.2/lmmsconfig.h.in.orig	2008-12-19 17:44:15.000000000 +0100
+++ lmms-0.4.2/lmmsconfig.h.in	2009-02-12 14:27:33.000000000 +0100
@@ -20,6 +20,7 @@
 
 #cmakedefine LMMS_HAVE_STDINT_H
 #cmakedefine LMMS_HAVE_STDLIB_H
+#cmakedefine LMMS_HAVE_STDIO_H
 #cmakedefine LMMS_HAVE_PTHREAD_H
 #cmakedefine LMMS_HAVE_UNISTD_H
 #cmakedefine LMMS_HAVE_SYS_TYPES_H
diff -up lmms-0.4.2/plugins/flp_import/unrtf/attr.c.orig lmms-0.4.2/plugins/flp_import/unrtf/attr.c
--- lmms-0.4.2/plugins/flp_import/unrtf/attr.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/attr.c	2009-02-12 14:26:48.000000000 +0100
@@ -37,9 +37,7 @@
  *                       and updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/convert.c.orig lmms-0.4.2/plugins/flp_import/unrtf/convert.c
--- lmms-0.4.2/plugins/flp_import/unrtf/convert.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/convert.c	2009-02-12 14:30:27.000000000 +0100
@@ -67,9 +67,7 @@
  #		from David Santinoli
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf.cpp.orig lmms-0.4.2/plugins/flp_import/unrtf.cpp
diff -up lmms-0.4.2/plugins/flp_import/unrtf/error.c.orig lmms-0.4.2/plugins/flp_import/unrtf/error.c
--- lmms-0.4.2/plugins/flp_import/unrtf/error.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/error.c	2009-02-12 14:30:38.000000000 +0100
@@ -40,9 +40,7 @@
  * 16 Dec 07, daved at physiol.usyd.edu.au: updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/hash.c.orig lmms-0.4.2/plugins/flp_import/unrtf/hash.c
--- lmms-0.4.2/plugins/flp_import/unrtf/hash.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/hash.c	2009-02-12 14:30:49.000000000 +0100
@@ -41,9 +41,7 @@
  * 16 Dec 07, daved at physiol.usyd.edu.au: updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/html.c.orig lmms-0.4.2/plugins/flp_import/unrtf/html.c
--- lmms-0.4.2/plugins/flp_import/unrtf/html.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/html.c	2009-02-12 14:30:59.000000000 +0100
@@ -43,9 +43,7 @@
  * 16 Dec 07, daved at physiol.usyd.edu.au: updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/malloc.c.orig lmms-0.4.2/plugins/flp_import/unrtf/malloc.c
--- lmms-0.4.2/plugins/flp_import/unrtf/malloc.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/malloc.c	2009-02-12 14:31:11.000000000 +0100
@@ -38,9 +38,7 @@
  * 16 Dec 07, daved at physiol.usyd.edu.au: updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/output.c.orig lmms-0.4.2/plugins/flp_import/unrtf/output.c
--- lmms-0.4.2/plugins/flp_import/unrtf/output.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/output.c	2009-02-12 14:31:24.000000000 +0100
@@ -40,9 +40,7 @@
  *--------------------------------------------------------------------*/
 
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/parse.c.orig lmms-0.4.2/plugins/flp_import/unrtf/parse.c
--- lmms-0.4.2/plugins/flp_import/unrtf/parse.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/parse.c	2009-02-12 14:31:33.000000000 +0100
@@ -39,9 +39,7 @@
  * 16 Dec 07, daved at physiol.usyd.edu.au: updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/util.c.orig lmms-0.4.2/plugins/flp_import/unrtf/util.c
--- lmms-0.4.2/plugins/flp_import/unrtf/util.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/util.c	2009-02-12 14:31:41.000000000 +0100
@@ -32,9 +32,7 @@
  * 16 Dec 07, daved at physiol.usyd.edu.au: updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDLIB_H
 #include <stdlib.h>
diff -up lmms-0.4.2/plugins/flp_import/unrtf/word.c.orig lmms-0.4.2/plugins/flp_import/unrtf/word.c
--- lmms-0.4.2/plugins/flp_import/unrtf/word.c.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/flp_import/unrtf/word.c	2009-02-12 14:31:48.000000000 +0100
@@ -49,9 +49,7 @@
  * 16 Dec 07, daved at physiol.usyd.edu.au: updated to GPL v3
  *--------------------------------------------------------------------*/
 
-#ifdef LMMS_HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "lmmsconfig.h"
 
 #ifdef LMMS_HAVE_STDIO_H
 #include <stdio.h>
diff -up lmms-0.4.2/plugins/sid/sid_instrument.cpp.orig lmms-0.4.2/plugins/sid/sid_instrument.cpp
--- lmms-0.4.2/plugins/sid/sid_instrument.cpp.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/sid/sid_instrument.cpp	2009-02-12 09:12:32.000000000 +0100
@@ -26,6 +26,7 @@
 
 #include <QtGui/QPainter>
 #include <QtXml/QDomElement>
+#include <cstdio>
 #include "sid.h"
 
 #include "sid_instrument.h"
diff -up lmms-0.4.2/src/core/track.cpp.orig lmms-0.4.2/src/core/track.cpp
--- lmms-0.4.2/src/core/track.cpp.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/src/core/track.cpp	2009-02-12 08:54:37.000000000 +0100
@@ -41,6 +41,8 @@
 
 #include <assert.h>
 
+#include <cstdio>
+
 #include <QtGui/QLayout>
 #include <QtGui/QMenu>
 #include <QtGui/QMouseEvent>
diff -up lmms-0.4.2/src/tracks/pattern.cpp.orig lmms-0.4.2/src/tracks/pattern.cpp
--- lmms-0.4.2/src/tracks/pattern.cpp.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/src/tracks/pattern.cpp	2009-02-12 08:51:39.000000000 +0100
@@ -26,6 +26,8 @@
  */
 
 
+#include <cstdio>
+
 #include <QtXml/QDomElement>
 #include <QtCore/QTimer>
 #include <QtGui/QMenu>

lmms-0.4.2-libdir.patch:

--- NEW FILE lmms-0.4.2-libdir.patch ---
diff -up lmms-0.4.2/CMakeLists.txt.orig lmms-0.4.2/CMakeLists.txt
--- lmms-0.4.2/CMakeLists.txt.orig	2008-12-19 17:44:15.000000000 +0100
+++ lmms-0.4.2/CMakeLists.txt	2009-01-28 18:47:38.000000000 +0100
@@ -415,7 +415,7 @@ ADD_SUBDIRECTORY(data)
 #
 # build LMMS-binary
 #
-ADD_DEFINITIONS(-D'LIB_DIR="${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/"' -D'PLUGIN_DIR="${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/lmms/"' ${PULSEAUDIO_DEFINITIONS} ${PORTAUDIO_DEFINITIONS})
+ADD_DEFINITIONS(-D'LIB_DIR="${LIB_DIR}/"' -D'PLUGIN_DIR="${LIB_DIR}/lmms/"' ${PULSEAUDIO_DEFINITIONS} ${PORTAUDIO_DEFINITIONS})
 
 INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/include ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/include ${SDL_INCLUDE_DIR} ${PORTAUDIO_INCLUDE_DIR} ${PULSEAUDIO_INCLUDE_DIR} ${JACK_INCLUDE_DIRS} ${OGGVORBIS_INCLUDE_DIR} ${SAMPLERATE_INCLUDE_DIRS} ${SNDFILE_INCLUDE_DIRS})
 LINK_DIRECTORIES(${CMAKE_INSTALL_PREFIX}/lib ${ASOUND_LIBRARY_DIR} ${JACK_LIBRARY_DIRS} ${SAMPLERATE_LIBRARY_DIRS} ${SNDFILE_LIBRARY_DIRS})

lmms-0.4.2-libexecdir.patch:

--- NEW FILE lmms-0.4.2-libexecdir.patch ---
diff -up lmms-0.4.2/CMakeLists.txt.orig lmms-0.4.2/CMakeLists.txt
--- lmms-0.4.2/CMakeLists.txt.orig	2009-01-28 18:51:16.000000000 +0100
+++ lmms-0.4.2/CMakeLists.txt	2009-01-28 18:51:33.000000000 +0100
@@ -415,7 +415,7 @@ ADD_SUBDIRECTORY(data)
 #
 # build LMMS-binary
 #
-ADD_DEFINITIONS(-D'LIB_DIR="${LIB_DIR}/"' -D'PLUGIN_DIR="${LIB_DIR}/lmms/"' ${PULSEAUDIO_DEFINITIONS} ${PORTAUDIO_DEFINITIONS})
+ADD_DEFINITIONS(-D'LIB_DIR="${LIB_DIR}/"' -D'PLUGIN_DIR="${LIB_DIR}/lmms/"' -D'LIBEXEC_DIR="${LIBEXEC_INSTALL_DIR}"' ${PULSEAUDIO_DEFINITIONS} ${PORTAUDIO_DEFINITIONS})
 
 INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/include ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/include ${SDL_INCLUDE_DIR} ${PORTAUDIO_INCLUDE_DIR} ${PULSEAUDIO_INCLUDE_DIR} ${JACK_INCLUDE_DIRS} ${OGGVORBIS_INCLUDE_DIR} ${SAMPLERATE_INCLUDE_DIRS} ${SNDFILE_INCLUDE_DIRS})
 LINK_DIRECTORIES(${CMAKE_INSTALL_PREFIX}/lib ${ASOUND_LIBRARY_DIR} ${JACK_LIBRARY_DIRS} ${SAMPLERATE_LIBRARY_DIRS} ${SNDFILE_LIBRARY_DIRS})
diff -up lmms-0.4.2/plugins/vst_base/CMakeLists.txt.orig lmms-0.4.2/plugins/vst_base/CMakeLists.txt
--- lmms-0.4.2/plugins/vst_base/CMakeLists.txt.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/plugins/vst_base/CMakeLists.txt	2009-01-28 18:51:33.000000000 +0100
@@ -29,7 +29,7 @@ ADD_CUSTOM_COMMAND(
 
 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES remote_vst_plugin.exe.so)
 
-INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/remote_vst_plugin ${CMAKE_CURRENT_BINARY_DIR}/remote_vst_plugin.exe.so DESTINATION ${PLUGIN_DIR})
+INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/remote_vst_plugin ${CMAKE_CURRENT_BINARY_DIR}/remote_vst_plugin.exe.so DESTINATION ${LIBEXEC_INSTALL_DIR})
 
 ENDIF(LMMS_BUILD_LINUX AND NOT WANT_VST_NOWINE)
 
diff -up lmms-0.4.2/src/core/remote_plugin.cpp.orig lmms-0.4.2/src/core/remote_plugin.cpp
--- lmms-0.4.2/src/core/remote_plugin.cpp.orig	2008-12-19 17:44:16.000000000 +0100
+++ lmms-0.4.2/src/core/remote_plugin.cpp	2009-01-28 18:51:33.000000000 +0100
@@ -84,8 +84,8 @@ remotePlugin::remotePlugin( const QStrin
 	m_outputCount( DEFAULT_CHANNELS )
 {
 	lock();
-	QString exec = configManager::inst()->pluginDir() +
-					QDir::separator() + _plugin_executable;
+	QString exec = QString( LIBEXEC_DIR ) + 
+		QDir::separator() + _plugin_executable;
 	QStringList args;
 	// swap in and out for bidirectional communication
 	args << QString::number( out()->shmKey() );

lmms-0.4.2-vst-nowine.patch:

--- NEW FILE lmms-0.4.2-vst-nowine.patch ---
diff -up lmms-0.4.2/CMakeLists.txt.orig lmms-0.4.2/CMakeLists.txt
--- lmms-0.4.2/CMakeLists.txt.orig	2008-12-19 17:44:15.000000000 +0100
+++ lmms-0.4.2/CMakeLists.txt	2009-01-28 18:55:01.000000000 +0100
@@ -313,6 +313,9 @@ IF(LMMS_BUILD_WIN32)
 	SET(LMMS_SUPPORT_VST TRUE)
 	SET(STATUS_VST "OK")
 ENDIF(LMMS_BUILD_WIN32)
+IF(WANT_VST_NOWINE)
+	SET(LMMS_SUPPORT_VST TRUE)
+ENDIF(WANT_VST_NOWINE)
 
 
 # check for libsamplerate


--- NEW FILE lmms.spec ---
Name:           lmms
Version:        0.4.2
Release:        3%{?dist}
Summary:        Linux MultiMedia Studio
URL:            http://lmms.sourceforge.net/
Group:          Applications/Multimedia
# lmms (the application) is GPLv2+,
# the included ladspa-cmt-plugin is GPLv2
License:        GPLv2+ and GPLv2

# we strip all .ogg / .wav / .mmp(z) / .ds files from the tarfile,
# until their license situation becomes clearer.

# original tarfile can be found here:
# Source0: http://downloads.sourceforge.net/lmms/%{name}-%{version}.tar.bz2
Source0:        %{name}-%{version}.stripped.tar.bz2

# our cmake seems to have a different value for LIB_DIR.
Patch0:         lmms-0.4.2-libdir.patch

# move the vst plugin to libexecdir.
Patch1:         lmms-0.4.2-libexecdir.patch

# build with vst support but without having wine. that is a patch
# upstream isn't really interested in.
Patch2:         lmms-0.4.2-vst-nowine.patch

# sent upstream.
Patch3:         lmms-0.4.2-gcc44.patch

BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

# according to upstream we should at least support oss, alsa, and
# jack. output via pulseaudio has high latency, but we enable it
# nevertheless as it is standard on fedora now. portaudio support is
# beta (and causes crashes), sdl is rarely used (?).
BuildRequires:  jack-audio-connection-kit-devel
BuildRequires:  alsa-lib-devel
BuildRequires:  pulseaudio-libs-devel

BuildRequires:  libsamplerate-devel
BuildRequires:  libsndfile-devel
BuildRequires:  fftw3-devel
BuildRequires:  fluidsynth-devel
BuildRequires:  libvorbis-devel
BuildRequires:  libogg-devel
BuildRequires:  ladspa-devel
BuildRequires:  stk-devel
BuildRequires:  qt4-devel
BuildRequires:  cmake
BuildRequires:  desktop-file-utils

%ifarch %ix86
BuildRequires:  wine-devel 
%endif

Requires:       ladspa-caps-plugins
Requires:       ladspa-tap-plugins
Requires:       ladspa-swh-plugins
# the version included in lmms contains patches sent to, but not yet
# applied by cmt's upstream.
#Requires: ladspa-cmt-plugins

# the -vst subpackage can only be built on ix86, but is also usable
# (and thus should be installed) on x86_64.
%ifarch %ix86 x86_64
Requires:       %{name}-vst = %{version}-%{release}
%endif


%description
LMMS aims to be a free alternative to popular (but commercial and
closed- source) programs like FruityLoops/FL Studio, Cubase and Logic
allowing you to produce music with your computer. This includes
creation of loops, synthesizing and mixing sounds, arranging samples,
having fun with your MIDI-keyboard and much more...

LMMS combines the features of a tracker-/sequencer-program and those
of powerful synthesizers, samplers, effects etc. in a modern,
user-friendly and easy to use graphical user-interface.

Features

 * Song-Editor for arranging the song
 * creating beats and basslines using the Beat-/Bassline-Editor
 * easy-to-use piano-roll for editing patterns and melodies
 * instrument- and effect-plugins
 * support for hosting VST(i)- and LADSPA-plugins (instruments/effects)
 * automation-editor
 * MIDI-support


%package devel
Summary:        Development files for %{name}
Group:          Development/Libraries
Requires:       %{name} = %{version}-%{release}


%description devel
The %{name}-devel package contains header files for
developing addons for %{name}.


%prep
%setup0 -q
%patch0 -p1 -b .libdir
%patch1 -p1 -b .libexecdir
%patch2 -p1 -b .nowine
%patch3 -p1 -b .gcc44

# remove spurious x-bits
find . -type f -exec chmod 0644 {} \;


%build
%cmake \
       -DWANT_SDL:BOOL=OFF \
       -DWANT_PORTAUDIO:BOOL=OFF \
       -DWANT_CAPS:BOOL=OFF \
       -DWANT_TAP:BOOL=OFF \
       -DWANT_SWH:BOOL=OFF \
%ifarch %ix86
       -DWANT_VST:BOOL=ON \
%else
       -DWANT_VST:BOOL=OFF \
%endif
%ifarch x86_64
       -DWANT_VST_NOWINE:BOOL=ON \
%endif
       -DLIBEXEC_INSTALL_DIR=%{_libexecdir} \
       .
make VERBOSE=1 %{?_smp_mflags}


%install
%{__rm} -rf %{buildroot}
make DESTDIR=%{buildroot} install

desktop-file-install --vendor '' \
        --dir %{buildroot}%{_datadir}/applications \
        %{buildroot}%{_datadir}/applications/%{name}.desktop

%{__mkdir_p} %{buildroot}%{_datadir}/pixmaps
%{__ln_s} ../%{name}/themes/default/icon.png \
        %{buildroot}%{_datadir}/pixmaps/%{name}-icon.png


%clean
%{__rm} -rf %{buildroot}


%post
update-mime-database %{_datadir}/mime &> /dev/null || :
update-desktop-database &> /dev/null || :


%postun
update-mime-database %{_datadir}/mime &> /dev/null || :
update-desktop-database &> /dev/null || :


%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README TODO
%{_bindir}/%{name}
%{_libdir}/%{name}
%{_datadir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/mime/packages/%{name}.xml
%{_datadir}/pixmaps/%{name}-icon.png
%{_mandir}/man*/%{name}*
%exclude %{_datadir}/menu/%{name}


%files devel
%defattr(-,root,root,-)
%{_includedir}/%{name}


%ifarch %ix86

%package vst
Summary:        VST hosting plugin for %{name}
Group:          Applications/Multimedia

%description vst
This package contains the necessary files to host VST plugins.

%files vst
%defattr(-,root,root,-)
%{_libexecdir}/remote_vst_plugin*

%endif


%changelog
* Thu Feb 12 2009 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.2-3
- Add patch for gcc44 issues.

* Wed Feb 11 2009 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.2-2
- Strip files with unclear licensing from the tarfile.
- Regenerate patches.
- Add BR on libsamplerate-devel.

* Thu Jan 22 2009 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.2-1
- Update to 0.4.2.

* Sun Nov  2 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.0-1
- Updated to 0.4.0 final.
- Removed patches already applied upstream, adjusted the remaining.

* Fri Oct 24 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.0-0.2.rc3
- Add patch to fix libdir on ppc64.

* Tue Oct 21 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.0-0.1.rc3
- Update to 0.4.0rc3.
- Don't build remote_vst_plugin.exe on x86_64, but do build all other
  parts of the VST host there.

* Fri Sep 26 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.0-0.1.rc2
- Update to 0.4.0rc2.
- Use oss, jack, alsa and pulseaudio backends and disable other
  backends.
- Depend on the system packages for all but one of the ladspa plugins
  instead of building our own versions.

* Thu Sep 18 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.4.0-0.1.rc1
- Update to 0.4.0rc1. Upstream uses cmake and qt4 now.
- Updated license tag.
- Drop festival dependency, and add fftw and fluidsynth.
- Remove patches no longer necessary.
- VST now also builds on x86_64.

* Wed Sep 17 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.3.2-3
- Add stk-devel BR.
- Use libdir patch from upstream bug tracker.
- Use xdg-open instead of x-www-browser.

* Wed Jun 25 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.3.2-2
- Update license tag.
- Add patch to fix plugin dir on 64bit archs.
- Add ladspa-caps-plugins dependency.
- Suggestions from the review:
  * Simplify configure step.
  * Fix sf.net download link.
  * Add patch to let configure find the qt translations.
  * Link icon to _datadir/pixmaps.

* Mon Apr 21 2008 Thomas Moschny <thomas.moschny at gmx.de> - 0.3.2-1
- New package.


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/lmms/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	12 Nov 2008 18:25:26 -0000	1.1
+++ .cvsignore	12 Feb 2009 21:09:59 -0000	1.2
@@ -0,0 +1 @@
+lmms-0.4.2.stripped.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/lmms/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	12 Nov 2008 18:25:26 -0000	1.1
+++ sources	12 Feb 2009 21:09:59 -0000	1.2
@@ -0,0 +1 @@
+bf227882183b1152d772b4b765f23085  lmms-0.4.2.stripped.tar.bz2




More information about the fedora-extras-commits mailing list