From: Braden M. <br...@us...> - 2006-10-28 07:01:09
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29713 Modified Files: ChangeLog openvrml.spec.in Log Message: Improvements for conformance to Fedora Extras packaging guidelines. Index: openvrml.spec.in =================================================================== RCS file: /cvsroot/openvrml/openvrml/openvrml.spec.in,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** openvrml.spec.in 27 Oct 2006 18:12:28 -0000 1.58 --- openvrml.spec.in 28 Oct 2006 07:01:06 -0000 1.59 *************** *** 3,7 **** Version: @PACKAGE_VERSION@ Release: 1 ! Summary: VRML97 runtime library. License: LGPL Group: System Environment/Libraries --- 3,7 ---- Version: @PACKAGE_VERSION@ Release: 1 ! Summary: VRML/X3D runtime library License: LGPL Group: System Environment/Libraries *************** *** 9,16 **** Source: http://prdownloads.sf.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org ! BuildRoot: %{_tmppath}/%{name}-root BuildRequires: pkgconfig >= 0.12.0 BuildRequires: boost-devel >= 1.33.1 - BuildRequires: zlib-devel >= 1.1.3 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b --- 9,15 ---- Source: http://prdownloads.sf.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org ! BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig >= 0.12.0 BuildRequires: boost-devel >= 1.33.1 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b *************** *** 21,34 **** BuildRequires: libXmu-devel BuildRequires: gtk2-devel - Requires: zlib >= 1.1.3 - Requires: libpng >= 1.0.12 - Requires: libjpeg >= 6b - Requires: fontconfig >= 2.0 - Requires: freetype >= 2.1.2 Requires: firefox %description ! OpenVRML is a VRML support library, including a runtime and facilities for ! reading and writing VRML models. --- 20,28 ---- BuildRequires: libXmu-devel BuildRequires: gtk2-devel Requires: firefox %description ! OpenVRML is a VRML/X3D support library, including a runtime and facilities ! for reading and displaying VRML and X3D models. *************** *** 82,94 **** %build ! %configure --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" %{__make} %{?_smp_mflags} %install ! %makeinstall ! %{__rm} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins/openvrml.la %clean ! %{__rm} -rf $RPM_BUILD_ROOT %files --- 76,93 ---- %build ! %configure --disable-static --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" %{__make} %{?_smp_mflags} %install ! make DESTDIR=%{buildroot} install ! %{__rm} %{buildroot}%{_libdir}/*.la ! %{__rm} %{buildroot}%{_libdir}/mozilla/plugins/openvrml.la %clean ! %{__rm} -rf %{buildroot} ! ! %post -p /sbin/ldconfig ! ! %postun -p /sbin/ldconfig %files *************** *** 102,107 **** %{_includedir}/%{name}/openvrml-config.h %{_includedir}/%{name}/openvrml/*.h - %{_libdir}/libopenvrml.la - %{_libdir}/libopenvrml.a %{_libdir}/libopenvrml.so %{_libdir}/pkgconfig/openvrml.pc --- 101,104 ---- *************** *** 116,121 **** %{_includedir}/%{name}/openvrml-gl-config.h %{_includedir}/%{name}/openvrml/gl - %{_libdir}/libopenvrml-gl.la - %{_libdir}/libopenvrml-gl.a %{_libdir}/libopenvrml-gl.so %{_libdir}/pkgconfig/openvrml-gl.pc --- 113,116 ---- *************** *** 132,135 **** --- 127,143 ---- %changelog + * Sat Oct 28 2006 Braden McDaniel <br...@en...> + - Run ldconfig in %post and %postun. + - Updated summary and description. + - Removed BuildRequires for zlib-devel. + - Removed Requires for zlib. + - Removed Requires for libpng. + - Removed Requires for libjpeg. + - Removed Requires for fontconfig. + - Removed Requires for freetype. + - Avoid packaging libtool .la files. + - Do not build static libraries. + - Do not use %makeinstall. + * Fri Oct 27 2006 Braden McDaniel <br...@en...> - Removed obsolete references to openvrml.xpt and openvrml.idl by the Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1364 retrieving revision 1.1365 diff -C2 -d -r1.1364 -r1.1365 *** ChangeLog 28 Oct 2006 02:28:42 -0000 1.1364 --- ChangeLog 28 Oct 2006 07:01:06 -0000 1.1365 *************** *** 1,2 **** --- 1,7 ---- + 2006-10-28 Braden McDaniel <br...@en...> + + * openvrml.spec.in: Improvements for conformance to Fedora Extras + packaging guidelines. + 2006-10-27 Braden McDaniel <br...@en...> |