update to 1.0.13
added debug package and -tools subpackage [release 1.0.13-1mamba;Sat Dec 05 2020]
This commit is contained in:
parent
94be7937d2
commit
7cfc5552d6
@ -2,7 +2,5 @@
|
|||||||
|
|
||||||
LibEMF is a C/C++ library which provides a drawing toolkit based on ECMA-234.
|
LibEMF is a C/C++ library which provides a drawing toolkit based on ECMA-234.
|
||||||
The general purpose of this library is to create vector graphics files on POSIX systems which can be imported into StarOffice/OpenOffice.
|
The general purpose of this library is to create vector graphics files on POSIX systems which can be imported into StarOffice/OpenOffice.
|
||||||
|
Therefore, if your graphics code only outputs PostScript, you can now easily convert it to EMF.
|
||||||
Therefore, if your graphics code only outputs PostScript, you can now easily
|
|
||||||
convert it to EMF.
|
|
||||||
|
|
||||||
|
48
libEMF.spec
48
libEMF.spec
@ -1,5 +1,5 @@
|
|||||||
Name: libEMF
|
Name: libEMF
|
||||||
Version: 1.0.7
|
Version: 1.0.13
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: Library for manipulation with Enhanced MetaFile (EMF, ECMA-234)
|
Summary: Library for manipulation with Enhanced MetaFile (EMF, ECMA-234)
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
@ -7,7 +7,7 @@ Vendor: openmamba
|
|||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Aleph0 <aleph0@openmamba.org>
|
Packager: Aleph0 <aleph0@openmamba.org>
|
||||||
URL: http://libemf.sourceforge.net
|
URL: http://libemf.sourceforge.net
|
||||||
Source: http://downloads.sourceforge.net/project/libemf/libemf/%{version}/libEMF-%{version}.tar.gz
|
Source: https://sourceforge.net/projects/libemf/files/libemf/%{version}/libemf-%{version}.tar.gz
|
||||||
Patch: %{name}-1.0-gcc3.patch
|
Patch: %{name}-1.0-gcc3.patch
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
@ -20,23 +20,33 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|||||||
%description
|
%description
|
||||||
LibEMF is a C/C++ library which provides a drawing toolkit based on ECMA-234.
|
LibEMF is a C/C++ library which provides a drawing toolkit based on ECMA-234.
|
||||||
The general purpose of this library is to create vector graphics files on POSIX systems which can be imported into StarOffice/OpenOffice.
|
The general purpose of this library is to create vector graphics files on POSIX systems which can be imported into StarOffice/OpenOffice.
|
||||||
|
Therefore, if your graphics code only outputs PostScript, you can now easily convert it to EMF.
|
||||||
Therefore, if your graphics code only outputs PostScript, you can now easily
|
|
||||||
convert it to EMF.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Summary: Static libraries and headers for %{name}
|
Summary: Static libraries and headers for %{name}
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
Requires: %{name}-tools = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
LibEMF is a C/C++ library which provides a drawing toolkit based on ECMA-234.
|
LibEMF is a C/C++ library which provides a drawing toolkit based on ECMA-234.
|
||||||
The general purpose of this library is to create vector graphics files on POSIX systems which can be imported into StarOffice/OpenOffice.
|
The general purpose of this library is to create vector graphics files on POSIX systems which can be imported into StarOffice/OpenOffice.
|
||||||
|
This package contains static libraries and header files needed for development.
|
||||||
|
|
||||||
This package contains static libraries and header files need for development.
|
%package tools
|
||||||
|
Group: Applications/Graphics
|
||||||
|
Summary: Tools provided with %{name}
|
||||||
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description tools
|
||||||
|
LibEMF is a C/C++ library which provides a drawing toolkit based on ECMA-234.
|
||||||
|
The general purpose of this library is to create vector graphics files on POSIX systems which can be imported into StarOffice/OpenOffice.
|
||||||
|
This package contains the tools provided with %{name}.
|
||||||
|
|
||||||
|
%debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q -n libemf-%{version}
|
||||||
#%patch -p1
|
#%patch -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -55,21 +65,31 @@ This package contains static libraries and header files need for development.
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/printemf
|
%{_libdir}/libEMF.so.*
|
||||||
%{_libdir}/*.so.*
|
%doc AUTHORS COPYING.LIB
|
||||||
%doc AUTHORS COPYING COPYING.LIB ChangeLog INSTALL NEWS README
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%dir %{_includedir}/libEMF
|
%dir %{_includedir}/libEMF
|
||||||
%{_includedir}/libEMF/*.h
|
%{_includedir}/libEMF/*.h
|
||||||
|
%dir %{_includedir}/libEMF/wine
|
||||||
%{_includedir}/libEMF/wine/*.h
|
%{_includedir}/libEMF/wine/*.h
|
||||||
%{_libdir}/*.a
|
%{_libdir}/libEMF.a
|
||||||
%{_libdir}/*.la
|
%{_libdir}/libEMF.la
|
||||||
%{_libdir}/*.so
|
%{_libdir}/libEMF.so
|
||||||
%doc doc/html/*
|
%doc doc/html/*
|
||||||
|
%doc ChangeLog INSTALL NEWS README
|
||||||
|
|
||||||
|
%files tools
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/printemf
|
||||||
|
%doc COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Dec 05 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.13-1mamba
|
||||||
|
- update to 1.0.13
|
||||||
|
- added debug package and -tools subpackage
|
||||||
|
|
||||||
* Wed Dec 12 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.7-1mamba
|
* Wed Dec 12 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.7-1mamba
|
||||||
- update to 1.0.7
|
- update to 1.0.7
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user