rpms/synfig/devel import.log, NONE, 1.1 synfig-0.61.09-optflags.patch, NONE, 1.1 synfig.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Lubomir Rintel lkundrak at fedoraproject.org
Fri Nov 13 23:55:36 UTC 2009


Author: lkundrak

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

Modified Files:
	.cvsignore sources 
Added Files:
	import.log synfig-0.61.09-optflags.patch synfig.spec 
Log Message:
Initial import of synfig


--- NEW FILE import.log ---
synfig-0_62_00-1_fc12:devel:synfig-0.62.00-1.fc12.src.rpm:1258156524

synfig-0.61.09-optflags.patch:
 configure.ac |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

--- NEW FILE synfig-0.61.09-optflags.patch ---
Please, do not cripple the CFLAGS, while removing debugging
information and adding arbitrary flags.

Lubomir Rintel <lkundrak at v3.sk>

diff -up synfig-0.61.09/configure.ac.optflags synfig-0.61.09/configure.ac
--- synfig-0.61.09/configure.ac.optflags	2009-03-18 19:20:12.853913298 +0100
+++ synfig-0.61.09/configure.ac	2009-03-18 19:20:37.604044100 +0100
@@ -45,12 +45,12 @@ AC_LANG([C++])
 # -- A R G U M E N T S ----------------------------------------
 
 
-AC_ARG_DEBUG
-AC_ARG_OPTIMIZATION
-AC_ARG_WARNINGS
-AC_ARG_PROFILING
-AC_ARG_PROFILE_ARCS
-AC_ARG_BRANCH_PROBABILITIES
+#AC_ARG_DEBUG
+#AC_ARG_OPTIMIZATION
+#AC_ARG_WARNINGS
+#AC_ARG_PROFILING
+#AC_ARG_PROFILE_ARCS
+#AC_ARG_BRANCH_PROBABILITIES
 
 AC_ARG_ENABLE(g5opt,[
   --enable-g5opt           enable optimizations specific to G5 proc],[


--- NEW FILE synfig.spec ---
Name:           synfig
Version:        0.62.00
Release:        1%{?dist}
Summary:        Vector-based 2D animation rendering backend

Group:          Applications/Multimedia
License:        GPLv2+
URL:            http://synfig.org/
Source0:        http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
Patch0:         synfig-0.61.09-optflags.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildRequires:  ETL-devel
BuildRequires:  libxml++-devel
BuildRequires:  libtiff-devel
BuildRequires:  libpng-devel
BuildRequires:  freetype-devel
BuildRequires:  libtool
BuildRequires:  OpenEXR-devel
BuildRequires:  fontconfig-devel
BuildRequires:  libtool-ltdl-devel
BuildRequires:  libmng-devel
BuildRequires:  ImageMagick-c++-devel
BuildRequires:  libjpeg-devel

%description
Synfig is a powerful, industrial-strength vector-based 2D animation
software, designed from the ground-up for producing feature-film quality
animation with fewer people and resources.  It is designed to be capable of
producing feature-film quality animation. It eliminates the need for
tweening, preventing the need to hand-draw each frame. Synfig features
spatial and temporal resolution independence (sharp and smoothat any
resolution or framerate), high dynamic range images, and a flexible plugin
system.

This package contains the command-line-based rendering backend.
Install synfigstudio package for GUI-based animation studio.


%package devel
Summary:        Development files for %{name}
Group:          Development/Libraries

Requires:       OpenEXR-devel
Requires:       ETL-devel
Requires:       libxml2-devel
Requires:       libxml++-devel
Requires:       libsigc++20-devel
Requires:       %{name} = %{version}-%{release}

%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.


%prep
%setup -q
%patch0 -p1 -b .optflags


%build
autoconf
%configure --disable-static --with-imagemagick --with-magickpp \
        --without-libavcodec
%if 0%{?fedora} >= 10
        CPPFLAGS='-DMagickLib=MagickCore -I/usr/include/ImageMagick'
%endif

# remove rpath from libtool
sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool

make %{?_smp_mflags}


%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
%find_lang %{name}

touch -r README $RPM_BUILD_ROOT%{_bindir}/synfig-config


%post -p /sbin/ldconfig
%postun -p/sbin/ldconfig


%clean
rm -rf $RPM_BUILD_ROOT


%files -f %{name}.lang
%defattr(-,root,root,-)
%config(noreplace) %{_sysconfdir}/synfig_modules.cfg
%{_bindir}/synfig
%{_libdir}/libsynfig.so.*
%{_libdir}/synfig
%doc README COPYING AUTHORS NEWS


%files devel
%defattr(-,root,root,-)
%{_bindir}/synfig-config
%{_libdir}/*.so
%{_libdir}/pkgconfig/synfig.pc
%{_includedir}/synfig-0.0
%doc doc COPYING TODO


%changelog
* Sat Nov 14 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.62.00-1
- New upstream release

* Thu Oct 9 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.61.09-4
- Explicitely disable avcodec

* Thu Mar 19 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.61.09-3
- Fix use of compiler flags to generate useful debuginfo

* Wed Feb 4 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.61.09-2
- RPATH sanity (thanks Nicolas Chauvet)
- Make -devel depend on libxml++-devel (thanks Lorenzo Villani)

* Fri Jan 9 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.61.09-1
- New upstream version
- Change ETL dependency to ETL-devel
- Adjust description & summary
- Add missing documentation files

* Fri Mar 7 2008 Marc Wiriadisastra <marc at mwiriadi.id.au> - 0.61.08-5
- Fixed build requires
- Put files in the right packages
- Made it look nicer

* Fri Mar 7 2008 Marc Wiriadisastra <marc at mwiriadi.id.au> - 0.61.08-4
- removed ImageMagick-devel since it gets brought it anyways

* Thu Mar 6 2008 Marc Wiriadisastra <marc at mwiriadi.id.au> - 0.61.08-3
- Advised by upstream to leave openexr off due to slowness.

* Thu Mar 6 2008 Marc Wiriadisastra <marc at mwiriadi.id.au> - 0.61.08-2
- switch the so's around

* Thu Mar 6 2008 Marc Wiriadisastra <marc at mwiriadi.id.au> - 0.61.08-1
- new release

* Sun Jan 13 2008 Marc Wiriadisasra <marc at mwiriadi.id.au> - 0.61.07-1
- Initial Spec file


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/synfig/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- .cvsignore	13 Nov 2009 19:34:10 -0000	1.1
+++ .cvsignore	13 Nov 2009 23:55:36 -0000	1.2
@@ -0,0 +1 @@
+synfig-0.62.00.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/synfig/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- sources	13 Nov 2009 19:34:10 -0000	1.1
+++ sources	13 Nov 2009 23:55:36 -0000	1.2
@@ -0,0 +1 @@
+773f3507c9fa5dfc084ad7e38a08a33f  synfig-0.62.00.tar.gz




More information about the fedora-extras-commits mailing list