76 lines
1.7 KiB
RPMSpec
76 lines
1.7 KiB
RPMSpec
Summary: Anti-Grain Geometry
|
|
Name: agg
|
|
Version: 2.4
|
|
Release: 1
|
|
Group: System Environment/Libraries
|
|
URL: http://www.antigrain.com
|
|
License: MIT
|
|
Source: http://www.antigrain.com/%{name}-%{version}.tar.gz
|
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
BuildRequires: automake, libtool, libX11-devel, freetype-devel, SDL-devel
|
|
|
|
%description
|
|
A High Quality Rendering Engine for C++
|
|
|
|
%package devel
|
|
Summary: Support files necessary to compile applications with agg
|
|
Group: Development/Libraries
|
|
Requires: agg = %{version}-%{release}
|
|
|
|
%description devel
|
|
Libraries, headers, and support files necessary to compile applications using agg
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
sh ./autogen.sh --disable-gpc
|
|
%configure
|
|
make
|
|
|
|
%install
|
|
%makeinstall
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc authors copying readme
|
|
%{_libdir}/lib*.so.*
|
|
|
|
%files devel
|
|
%{_libdir}/*.a
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/libagg.pc
|
|
%{_includedir}/agg2
|
|
%{_datadir}/aclocal/libagg.m4
|
|
|
|
%clean
|
|
rm -r $RPM_BUILD_ROOT
|
|
|
|
%changelog
|
|
* Wed May 10 2006 Caolan McNamara <caolanm@redhat.com> - 2.4-1
|
|
- next version
|
|
|
|
* Fri Feb 17 2006 Karsten Hopp <karsten@redhat.de> 2.3-4
|
|
- add BuildRequires freetype-devel for ft2build.h
|
|
|
|
* Mon Feb 13 2006 Caolan McNamara <caolanm@redhat.com> - 2.3-3
|
|
- BuildRequires
|
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.3-2.1
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
* Wed Feb 08 2006 Caolan McNamara <caolanm@redhat.com> - 2.3-2
|
|
- rh#180341# BuildRequires
|
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.3-1.1
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
* Wed Nov 23 2005 Caolan McNamara <caolanm@redhat.com> 2.3-1
|
|
- initial import
|