%define _pkgbuilddir %{_builddir}/%{name}_%{version} Name: avidemux Version: 2.5.2 Release: 2%{?_dist_release} Summary: Graphical video editing and transcoding tool Group: Applications/Multimedia License: GPLv2+ URL: http://www.avidemux.org/ Source0: http://download.berlios.de/avidemux/avidemux_%{version}.tar.gz Source1: %{name}-gtk.desktop Source2: %{name}-qt.desktop # Patch0 obtained from avidemux-2.5.0-patches-1.tar.bz2: # http://mirror.csclub.uwaterloo.ca/gentoo-distfiles/distfiles/avidemux-2.5.0-patches-1.tar.bz2 Patch0: 2.5.0-coreImage-parallel-build.patch Patch1: avidemux-2.5-pulseaudio-default.patch Patch2: avidemux-2.4-qt4.patch Patch3: avidemux-2.5-i18n.patch Patch4: avidemux-2.5-libmpeg2enc-altivec.patch Patch5: avidemux-2.5-checkfunction-includes.patch Patch6: avidemux-2.5.1-tmplinktarget.patch ## Vine customization patches Patch10: avidemux-2.4.3-alsa-device-default.patch Patch11: avidemux-2.5.2-no-qt4-ui.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Requires: %{name}-cli = %{version} Requires: %{name}-gui = %{version} Obsoletes: %{name}-qt < 2.5.0 # *-devel pacages provided by other self-build-* should only be listed # in self-build-%{name}.spec as PreReq. # Compiling BuildRequires: cmake #BuildRequires: gettext-devel BuildRequires: gettext # Libraries BuildRequires: nasm >= 0.98.38 BuildRequires: libxml2-devel >= 2.6.8 BuildRequires: fontconfig-devel #BuildRequires: freetype-devel BuildRequires: freetype2-devel BuildRequires: js-devel BuildRequires: libXv-devel BuildRequires: libXmu-devel # Required by gtk: libXi-devel, libXext-devel, libX11-devel # Required by qt: libXt-devel, libXext-devel, libX11-devel BuildRequires: libsamplerate-devel BuildRequires: jack-audio-connection-kit-devel # Sound out BuildRequires: alsa-lib-devel >= 1.0.3 BuildRequires: esound-devel >= 0.2.0 BuildRequires: pulseaudio-libs-devel # Video out BuildRequires: SDL-devel >= 1.2.7 # Audio Codecs #BuildRequires: a52dec-devel >= 0.7.4 #BuildRequires: faac-devel >= 1.24 #BuildRequires: faad2-devel >= 2.0 #BuildRequires: lame-devel >= 3.96.1 #BuildRequires: libmad-devel >= 0.15.1 BuildRequires: libogg-devel >= 1.1 BuildRequires: libvorbis-devel >= 1.0.1 # BuildRequires: self-build-a52dec >= 0.7.4 # BuildRequires: self-build-faac >= 1.24 # BuildRequires: self-build-faad2 >= 2.0 # BuildRequires: self-build-lame >= 3.96.1 # BuildRequires: self-build-libmad >= 0.15.1 #BuildRequires: libdca-devel # BuildRequires: self-build-libdca # Video Codecs #BuildRequires: xvidcore-devel >= 1.0.2 #BuildRequires: x264-devel #BuildRequires: ffmpeg-devel # BuildRequires: self-build-xvidcore >= 1.0.2 # BuildRequires: self-build-x264 # BuildRequires: self-build-ffmpeg # FIXME: aften not packaged, add BR when it is # Finally... BuildRequires: desktop-file-utils %description Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities. For compatability reasons, avidemux is a meta-package which installs the graphical, command line and plugin packages. If you want a smaller setup, you may selectively install one or more of the avidemux-* subpackages. %package cli Summary: CLI for %{name} Group: Applications/Multimedia Requires: %{name} = %{version}-%{release} %description cli This package provides a command-line interface to editing videos with %{name}. %package gtk Summary: GTK interface for %{name} Group: Applications/Multimedia BuildRequires: gtk2-devel >= 2.8.0 BuildRequires: cairo-devel # Slightly higher so it is default, but it can be avoided by installing # avidemux-qt directly or it can be removed later once avidemux-qt is installed Provides: %{name}-gui = %{version}-%{release}.1 Requires: %{name} = %{version}-%{release} %description gtk This package provides the GTK graphical interface for %{name}. %if %{?with_qt_ui:1} %{!?with_qt_ui:0} %package qt Summary: Qt interface for %{name} Group: Applications/Multimedia # 4.5.0-9 fixes a failure when there are duplicate translated strings # https://bugzilla.redhat.com/show_bug.cgi?id=491514 BuildRequires: qt4-devel >= 4.5.0-9 BuildRequires: qt4-designer Provides: %{name}-gui = %{version}-%{release} Requires: %{name} = %{version}-%{release} %description qt This package contains the Qt graphical interface for %{name}. %endif %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains files required to develop with or extend %{name}. %prep %__rm -rf $RPM_BUILD_ROOT %setup -q -n avidemux_%{version} # change hardcoded libdir paths %ifarch x86_64 ppc64 sed -i.bak 's/startDir="lib";/startDir="lib64";/' avidemux/ADM_core/src/ADM_fileio.cpp sed -i.bak 's/startDir="lib";/startDir="lib64";/' avidemux/main.cpp %endif %patch0 -p1 -b .parallel %patch1 -p1 -b .pulse %patch2 -p1 -b .qt4 %patch3 -p1 -b .i18n %patch4 -p1 -b .altivec %patch5 -p1 -b .cfincludes #%patch6 -p1 -b .tmplinktarget #%patch10 -p1 -b .alsa %{!?with_qt_ui:%patch11 -p1 -b .qt4} %build # Out of source build %__mkdir_p build && cd build %cmake -DAVIDEMUX_INSTALL_PREFIX=%{_prefix} \ -DAVIDEMUX_SOURCE_DIR="%{_pkgbuilddir}" \ -DAVIDEMUX_CORECONFIG_DIR="%{_pkgbuilddir}/build/config" \ .. %__make %{?_smp_mflags} # Create the temp link directory manuall since otherwise it happens too early %__mkdir_p %{_pkgbuilddir}/build/%{_lib} find %{_pkgbuilddir}/build/avidemux -name '*.so*' | \ xargs ln -sft %{_pkgbuilddir}/build/%{_lib} %__mkdir_p ../build_plugins && cd ../build_plugins %cmake -DAVIDEMUX_INSTALL_PREFIX="%{_pkgbuilddir}/build/" \ -DAVIDEMUX_SOURCE_DIR="%{_pkgbuilddir}" \ -DAVIDEMUX_CORECONFIG_DIR="%{_pkgbuilddir}/build/config" \ ../plugins %__make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT # Temporary workaround since the i18n files aren't being built mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{name} make -C build install DESTDIR=$RPM_BUILD_ROOT make -C build_plugins install DESTDIR=$RPM_BUILD_ROOT # Install the build configuration for devel package install -d -m755 $RPM_BUILD_ROOT%{_includedir} install -m644 build/config/ADM_coreConfig.h $RPM_BUILD_ROOT%{_includedir}/ADM_coreConfig.h # Find and remove all la files find $RPM_BUILD_ROOT -type f -name "*.la" -exec %__rm -f {} ';' # Install .desktop shortcuts desktop-file-install --vendor vine \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ %{SOURCE1} desktop-file-install --vendor vine \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ %{SOURCE2} find $RPM_BUILD_ROOT -type f -name "*.la" -exec %__rm -f {} ';' %find_lang %{name} %clean %__rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog History README TODO %{_datadir}/%{name}/ %{_datadir}/ADM_scripts/ %{_libdir}/libADM* %{_libdir}/ADM_plugins/ %files cli %defattr(-,root,root,-) %{_bindir}/avidemux2_cli %files gtk %defattr(-,root,root,-) %{_bindir}/avidemux2_gtk %{_datadir}/applications/*gtk*.desktop %if %{?with_qt_ui:1} %{!?with_qt_ui:0} %files qt %defattr(-,root,root,-) #{_datadir}/%{name}/i18n/ %{_bindir}/avidemux2_qt4 %{_datadir}/applications/*qt*.desktop %endif %files devel %defattr(-,root,root,-) %{_includedir}/ADM_coreConfig.h %changelog * Sat Mar 20 2010 Munehiro Yamamoto 2.5.2-2 - change release to sync with self-build-avidemux * Wed Feb 17 2010 Munehiro Yamamoto 2.5.2-1 - new upstream release * Sat May 23 2009 Munehiro Yamamoto 2.4.4-1 - new upstream release - update patches accordingly - build with x264 >= 0.0.0-9.20090522 - dropped avidemux-2.4.3-ppc.patch, avidemux-x264.patch * Sat Feb 14 2009 Munehiro Yamamoto - 2.4.3-7 - corrected release number * Sun Feb 08 2009 Munehiro Yamamoto 2.4.3-5 - changed to PreReq: self-build-faad2 >= 2.0 from faad2-devel - changed to PreReq: self-build-libmad >= 0.15.1 from libmad-devel * Sun Feb 01 2009 Munehiro Yamamoto 2.4.3-4 - change release to sync with self-build-avidemux * Sun Jan 11 2009 Munehiro Yamamoto 2.4.3-3 - added avidemux-x264.patch from Gentoo * Mon Dec 08 2008 Munehiro Yamamoto 2.4.3-2 - applied avidemux-2.4.3-alsa-device-default.patch * Mon Nov 24 2008 Munehiro Yamamoto 2.4.3-1 - initial build based on RPM Fusion of Fedora package - changed to BuildRequires: gettext from gettext-devel - added BuildRequires: qt4-designer for gtk subpackage - dropped avidemux-2.4.3-qt4.patch * Thu Sep 18 2008 Stewart Adam - 2.4.3-5 - Add CMake patch for PPC64 - Update patches for 2.4.3 - Remove outdated libmad patch (Nov. 2007) * Thu Sep 18 2008 Stewart Adam - 2.4.3-4 - Add another patch to fix ppc64 build (pointer type), first patch was for libmad * Fri Aug 22 2008 Stewart Adam - 2.4.3-3 - Add patch to fix ppc64 build * Sat Aug 16 2008 Stewart Adam - 2.4.3-2 - retag * Sat Aug 16 2008 Stewart Adam - 2.4.3-1 - Update to 2.4.3 * Tue Aug 12 2008 Stewart Adam - 2.4.2-3 - ppc64 uint_32 fun * Sun Aug 03 2008 Thorsten Leemhuis - 2.4.2-1 - Update to 2.4.2 * Wed May 21 2008 Stewart Adam - 2.4.1-3.20080521svn - Disable --new-faad - 20080521 subversion snapshot * Sat Mar 15 2008 Stewart Adam - 2.4.1-2 - Disable %%{?_smp_mflags} * Sat Mar 15 2008 Stewart Adam - 2.4.1-1 - Update to 2.4.1 - Don't list the bin files twice, revisited - Default to GTK frontend * Wed Feb 20 2008 Stewart Adam - 2.4-6.20080126svn - Make pulseaudio default for sound out - Don't list the bin files twice - Don't build with arts support * Fri Feb 15 2008 Stewart Adam - 2.4-5.20080126svn - Don't list the .desktop files twice (bz#1870) - Oops, we should have %%{svndate}svn in release tag! * Sat Feb 2 2008 Stewart Adam - 2.4-4 - F-8/F-7 x86_64 does seem to need --with-newfaad * Fri Feb 1 2008 Stewart Adam - 2.4-3 - Update to version 2.4 (20080126svn) and include fixes from devel branch * Mon Jan 14 2008 Stewart Adam - 2.4-2 - Fix many copy/paste errors and desktop file's Exec field * Sun Jan 13 2008 Stewart Adam - 2.4-1 - Update to 2.4 final - Split up desktop files and make them pass desktop-file-validate - Add structure to split into gtk and qt pacakges - Disable qt4 for now, doesn't compile * Sun Oct 7 2007 Thorsten Leemhuis 3- 2.3.0-4.3 - move js-include to a place where it is honored * Sun Oct 7 2007 Stewart Adam - 2.3.0-4.2 - Fix macro problem - Fix changelog date - Rebuild with faad, but don't pass --newfaad * Sun Oct 7 2007 Stewart Adam - 2.3.0-4.1 - Rebuild with no faad * Sat Oct 6 2007 Stewart Adam - 2.3.0-4 - Rebuild for ffmpeg dependency problems - Update License: tag per Fedora guidelines * Sat Jan 13 2007 Thorsten Leemhuis - 2.3.0-3 - more features with new BR's: x264-devel libXv-devel - make a note regarding the libdca-devel problem - remove the "0:" from the versioned BR's * Thu Jan 04 2007 Thorsten Leemhuis - 2.3.0-2 - don't use smp_mflags during make for now * Sat Dec 23 2006 kwizart < kwizart at gmail.com > - 2.3.0-1 - Update to 2.3.0 Final - Use find_lang * Mon Apr 03 2006 Thorsten Leemhuis - 2.1.2-1 - Update to 2.1.2 * Thu Mar 09 2006 Andreas Bierfert - switch to new release field * Tue Feb 28 2006 Andreas Bierfert - add dist * Wed Jan 04 2006 Thorsten Leemhuis - 0:2.1.0-0.lvn.1 - Update to 2.1.0 - Drop epoch - gtk 2.6 now, so drop FC3 support * Sat Aug 27 2005 Thorsten Leemhuis - 0:2.0.42-0.lvn.3 - Remove bogus BR ffmpeg-devel (#555) * Thu Jul 09 2005 Thorsten Leemhuis - 0:2.0.42-0.lvn.2 - Add missing BR desktop-file-utils (thanks to ixs) * Thu Jul 07 2005 Thorsten Leemhuis - 0:2.0.42-0.lvn.1 - Update to 2.0.42 * Sat Jan 22 2005 Thorsten Leemhuis - 0:2.0.36-0.lvn.1 - Update to 2.0.34 - Rename package to avidemux -- no need for avidemux2 afaics * Sun Nov 21 2004 Thorsten Leemhuis - 0:2.0.34-0.lvn.1.test1 - Update to 2.0.34-test1 - BR gettext, libtool * Tue Oct 18 2004 Thorsten Leemhuis - 0:2.0.30-0.lvn.1 - Initial RPM release.