rpms/audacity/FC-1 audacity-1.2.2-aboutdialog.patch, 1.2, 1.3 audacity.png, 1.2, 1.3 audacity.spec, 1.4, 1.5 .cvsignore, 1.3, 1.4 sources, 1.4, 1.5

Michael Schwendt (mschwendt) fedora-extras-commits at redhat.com
Sat Dec 4 16:22:15 UTC 2004


Changeset from: mschwendt

Update of /cvs/extras/rpms/audacity/FC-1
In directory cvs.fedora.redhat.com:/tmp/cvs-serv10903/FC-1

Modified Files:
	.cvsignore sources 
Added Files:
	audacity-1.2.2-aboutdialog.patch audacity.png audacity.spec 
Log Message:
auto-import audacity-1.2.3-0.fdr.1.1 on branch FC-1 from audacity-1.2.3-0.fdr.1.1.src.rpm

audacity-1.2.2-aboutdialog.patch:

Index: audacity-1.2.2-aboutdialog.patch
===================================================================
RCS file: audacity-1.2.2-aboutdialog.patch
diff -N audacity-1.2.2-aboutdialog.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ audacity-1.2.2-aboutdialog.patch	4 Dec 2004 16:22:13 -0000	1.3
@@ -0,0 +1,15 @@
+diff -Nur audacity-src-1.2.2-orig/src/AboutDialog.cpp audacity-src-1.2.2/src/AboutDialog.cpp
+--- audacity-src-1.2.2-orig/src/AboutDialog.cpp	2004-08-26 05:27:33.000000000 +0200
++++ audacity-src-1.2.2/src/AboutDialog.cpp	2004-05-03 19:14:36.000000000 +0200
+@@ -129,11 +125,9 @@
+       translatorCredits += _("translator_credits");
+       translatorCredits += "</center>";
+    }
+-   wxString localeStr = wxLocale::GetSystemEncodingName();
+ 
+    wxString creditStr = 
+       "<html>"
+-      "<head><META http-equiv=\"Content-Type\" content=\"text/html; charset=" + localeStr + "\"></head>"
+       "<body bgcolor=\"#ffffff\">"
+       "<font size=1>"
+       "<center>"


Index: audacity.spec
===================================================================
RCS file: audacity.spec
diff -N audacity.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ audacity.spec	4 Dec 2004 16:22:13 -0000	1.5
@@ -0,0 +1,129 @@
+Name:		audacity
+Version:	1.2.3
+Release:	0.fdr.1.1
+Epoch:		0
+Summary: 	A multitrack audio editor
+
+Group: 		Applications/Multimedia
+License:	GPL
+URL: 		http://audacity.sourceforge.net
+Source: 	http://dl.sf.net/sourceforge/audacity/audacity-src-1.2.3.tar.gz
+Source1:	audacity.png
+Patch1:		audacity-1.2.2-aboutdialog.patch
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires:  libogg-devel, libvorbis-devel, zlib-devel, perl
+BuildRequires: 	gettext, zip, flac-devel, ladspa-devel
+BuildRequires:	libsamplerate-devel, libsndfile-devel
+BuildRequires:	libid3tag-devel, desktop-file-utils
+%{?_with_mp3:BuildRequires: libmad-devel}
+%{?_with_gtk2:BuildRequires: wxGTK2-devel}
+%{!?_with_gtk2:BuildRequires: wxGTK-devel}
+Requires(post): desktop-file-utils
+Requires(postun): desktop-file-utils
+
+# Compile options:
+# --with mp3          : enable mp3 support
+# --with gtk2	      : use gtk2 version of wxGTK
+# --with portaudiov19 : enable version 19 of portaudio (disables portmixer)
+
+
+%description
+Audacity is a cross-platform multitrack audio editor. It allows you to
+record sounds directly or to import Ogg, WAV, AIFF, AU, IRCAM, or MP3
+files. It features a few simple effects, all of the editing features
+you should need, and unlimited undo. The GUI was built with wxWindows
+and the audio I/O currently uses OSS under Linux. Audacity runs on
+Linux/*BSD, MacOS, and Windows.
+
+%prep
+%setup -q -n %{name}-src-%{version}
+%patch1 -p1 -b .aboutdialog
+cp -a src/Languages.cpp src/Languages.cpp.orig
+iconv -f ISO_8859-1 -t UTF-8 src/Languages.cpp.orig > src/Languages.cpp
+for i in help/wxhelp/audacity.hhk help/wxhelp/exportmp3.htm locale/*.po src/export/ExportMP3.cpp
+do
+   perl -pi -e 's|libmp3lame.so|libmp3lame.so.0|g' $i
+done
+
+%build
+%configure --with-help --with-libsndfile=system --with-libsamplerate=system --with-libflac=system --with-ladspa --with-vorbis=system --with-id3tag=system %{?_with_mp3:--with-libmad=system} %{?_with_portaudiov19:--with-portaudio=v19 --without-portmixer}
+make
+
+%install
+rm -rf ${RPM_BUILD_ROOT}
+make DESTDIR=${RPM_BUILD_ROOT} install
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
+cp %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/pixmaps
+
+cat > audacity.desktop <<EOF
+[Desktop Entry]
+Name=Audacity
+GenericName=Sound editor
+Type=Application
+Exec=audacity
+Icon=audacity.png
+Terminal=false
+Comment=A multitrack audio editor
+Encoding=UTF-8
+X-Desktop-File-Install-Version=0.4
+MimeType=audio/*;application/ogg;
+StartupWMClass=Audacity
+EOF
+
+desktop-file-install --vendor fedora \
+    --add-category X-Fedora \
+    --add-category Application \
+    --add-category GNOME \
+    --add-category AudioVideo \
+    --dir $RPM_BUILD_ROOT%{_datadir}/applications \
+    audacity.desktop
+
+%{find_lang} %{name}
+
+%clean
+rm -rf ${RPM_BUILD_ROOT}
+
+%post
+/usr/bin/update-desktop-database /usr/share/applications > /dev/null 2>&1 || :
+
+%postun
+/usr/bin/update-desktop-database /usr/share/applications > /dev/null 2>&1 || :
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%{_bindir}/*
+%{_datadir}/audacity
+%{_mandir}/*/*
+%{_datadir}/applications/*
+%{_datadir}/pixmaps/*
+%doc %{_datadir}/doc/*
+
+%changelog
+* Sat Nov 20 2004 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.3-0.fdr.1
+- New Version 1.2.3
+
+* Sat Oct 30 2004 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:1.2.2-0.fdr.1
+- Update to 1.2.2, patch aboutdialog to be readable with wxGTK.
+
+* Mon May 10 2004 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.1-0.fdr.1
+- New Version 1.2.1
+
+* Sun Apr 11 2004 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.0-0.fdr.2
+- Fix for Language.cpp restored
+
+* Tue Mar  2 2004 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.0-0.fdr.1
+- New Version 1.2.0
+
+* Mon Nov 24 2003 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.0-0.fdr.4.pre3
+- Added icon
+- Separated mp3 plugin
+
+* Sun Nov 23 2003 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.0-0.fdr.2.pre3
+- Changes to specfile
+
+* Sun Nov  2 2003 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.0-0.fdr.1.pre3
+- New upstream version 1.2.0-pre3
+
+* Sat Oct 25 2003 Gerard Milmeister <gemi at bluewin.ch> - 0:1.2.0-pre2.fdr.1
+- First Fedora release
+


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/audacity/FC-1/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore	4 Dec 2004 16:14:08 -0000	1.3
+++ .cvsignore	4 Dec 2004 16:22:13 -0000	1.4
@@ -1,58 +1 @@
-audacity
-fedora-audacity.desktop
-audacity
-audacity-1.2-help.htb
-nyquist
-bug.lsp
-dspprims.lsp
-evalenv.lsp
-follow.lsp
-init.lsp
-misc.lsp
-nyinit.lsp
-nyqmisc.lsp
-nyquist.lsp
-printrec.lsp
-profile.lsp
-seq.lsp
-seqfnint.lsp
-seqmidi.lsp
-sndfnint.lsp
-system.lsp
-test.lsp
-xlinit.lsp
-plug-ins
-clicktrack.ny
-crossfadein.ny
-crossfadeout.ny
-delay.ny
-highpass.ny
-lowpass.ny
-pluck.ny
-tremolo.ny
-audacity
-LICENSE.txt
-README.txt
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.mo
-audacity.1.gz
-audacity.png
+audacity-src-1.2.3.tar.gz


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/audacity/FC-1/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources	4 Dec 2004 16:14:08 -0000	1.4
+++ sources	4 Dec 2004 16:22:13 -0000	1.5
@@ -1,58 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+dbfc1b401420aa694753d35acb5a8a28  audacity-src-1.2.3.tar.gz




More information about the fedora-extras-commits mailing list