|
@@ -0,0 +1,83 @@
|
|
|
|
+Name: libspiro
|
|
|
|
+Version: 20071029
|
|
|
|
+Release: 1%{?_dist_release}
|
|
|
|
+Summary: Library to simplify the drawing of beautiful curves
|
|
|
|
+Summary(ja): 美しい曲線を簡単に描くことができるようにするライブラリ
|
|
|
|
+
|
|
|
|
+Group: System Environment/Libraries
|
|
|
|
+License: GPLv2+
|
|
|
|
+URL: http://libspiro.sourceforge.net/
|
|
|
|
+Source0: http://downloads.sourceforge.net/%{name}/%{name}_src-%{version}.tar.bz2
|
|
|
|
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
+
|
|
|
|
+%description
|
|
|
|
+This library will take an array of spiro control points and
|
|
|
|
+convert them into a series of bézier splines which can then
|
|
|
|
+be used in the myriad of ways the world has come to use béziers.
|
|
|
|
+
|
|
|
|
+%package devel
|
|
|
|
+Summary: Development files for %{name}
|
|
|
|
+Summary(ja): Development files for %{name}
|
|
|
|
+Group: Development/Libraries
|
|
|
|
+Requires: %{name} = %{version}-%{release}
|
|
|
|
+
|
|
|
|
+%description devel
|
|
|
|
+The %{name}-devel package contains libraries and header files for
|
|
|
|
+developing applications that use %{name}.
|
|
|
|
+
|
|
|
|
+%prep
|
|
|
|
+%setup -q -n libspiro-20071029
|
|
|
|
+
|
|
|
|
+%build
|
|
|
|
+%configure --disable-static
|
|
|
|
+make %{?_smp_mflags}
|
|
|
|
+
|
|
|
|
+%install
|
|
|
|
+rm -rf $RPM_BUILD_ROOT
|
|
|
|
+make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
+
|
|
|
|
+%clean
|
|
|
|
+rm -rf $RPM_BUILD_ROOT
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%post -p /sbin/ldconfig
|
|
|
|
+
|
|
|
|
+%postun -p /sbin/ldconfig
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%files
|
|
|
|
+%defattr(-,root,root,-)
|
|
|
|
+%doc README gpl.txt README-RaphLevien
|
|
|
|
+%{_libdir}/*.so.*
|
|
|
|
+
|
|
|
|
+%files devel
|
|
|
|
+%defattr(-,root,root,-)
|
|
|
|
+%doc README gpl.txt README-RaphLevien
|
|
|
|
+%{_includedir}/*
|
|
|
|
+%{_libdir}/*.so
|
|
|
|
+
|
|
|
|
+%changelog
|
|
|
|
+* Sat Nov 10 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 20071029-1
|
|
|
|
+- initial build for Vine Linux
|
|
|
|
+
|
|
|
|
+* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-7
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 20071029-6
|
|
|
|
+- rebuild for gcc 4.7
|
|
|
|
+
|
|
|
|
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-5
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Tue Dec 15 2009 Parag <paragn AT fedoraproject.org> - 20071029-4
|
|
|
|
+- Fix rpmlint error "libspiro.src:53: E: files-attr-not-set"
|
|
|
|
+
|
|
|
|
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-3
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-2
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Tue Dec 16 2008 Kevin Fenzi <kevin@tummy.com> - 20071029-1
|
|
|
|
+- Initial version for Fedora
|