[Cppunit-cvs] cppunit cppunit.spec.in,1.3,1.4
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-07-15 19:03:41
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4274 Modified Files: cppunit.spec.in Log Message: * cppunit.spec.in: Applied patch #1232555 from Patrice Dumas. This file is use for RPM packaging. Index: cppunit.spec.in =================================================================== RCS file: /cvsroot/cppunit/cppunit/cppunit.spec.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cppunit.spec.in 15 May 2001 22:32:41 -0000 1.3 --- cppunit.spec.in 15 Jul 2005 19:03:30 -0000 1.4 *************** *** 1,22 **** ! %define RELEASE 1 ! %define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE} ! ! %define lib_name cppunit ! ! Name: @PACKAGE@ Version: @VERSION@ ! Release: %rel Summary: C++ Port of JUnit Testing Framework ! Copyright: LGPL Group: Development/Libraries - Vendor: The CppUnit Project - Packager: Bastiaan Bakker <bas...@li...> Url: http://cppunit.sourceforge.net/ ! Source: ftp://download.sourceforge.net/pub/sourceforge/cppunit/%name-%version.tar.gz ! ! Prefix: %_prefix ! BuildRoot: %_tmppath/%name-%version-root %description --- 1,13 ---- ! Name: cppunit Version: @VERSION@ ! Release: 2 Summary: C++ Port of JUnit Testing Framework ! License: LGPL Group: Development/Libraries Url: http://cppunit.sourceforge.net/ + Source: ftp://download.sourceforge.net/pub/sourceforge/cppunit/cppunit-%version.tar.gz ! BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description *************** *** 34,49 **** %prep ! rm -rf $RPM_BUILD_ROOT ! ! %setup ! CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --enable-doxygen %build ! make %install rm -rf $RPM_BUILD_ROOT ! ! make prefix=$RPM_BUILD_ROOT%{prefix} install %clean --- 25,39 ---- %prep ! %setup -q %build ! %configure --enable-doxygen ! make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT ! make install DESTDIR=$RPM_BUILD_ROOT ! rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la ! rm -rf $RPM_BUILD_ROOT/%{_datadir}/cppunit %clean *************** *** 51,64 **** %files ! %defattr(-,root,root,755) ! %attr(755,root,root) %prefix/lib/lib*.so.* ! %doc AUTHORS COPYING INSTALL NEWS README THANKS ChangeLog ! %attr(755,root,root) %prefix/bin/cppunit-config ! %prefix/include/* ! %prefix/man/* ! %prefix/share/* ! %attr(755,root,root) %prefix/lib/lib*.so ! %attr(644,root,root) %prefix/lib/*.*a %files doc %doc doc/html/* --- 41,61 ---- %files ! %defattr(-,root,root,-) ! %{_bindir}/cppunit-config ! %{_bindir}/DllPlugInTester ! %{_includedir}/cppunit/* ! %{_mandir}/man1/* ! %{_datadir}/aclocal/* ! %{_libdir}/libcppunit*.so.* ! %{_libdir}/libcppunit.so ! %{_libdir}/libcppunit.a ! %doc AUTHORS COPYING INSTALL NEWS README THANKS ChangeLog TODO BUGS doc/FAQ %files doc %doc doc/html/* + + %changelog + * Mon Jul 4 2005 Patrice Dumas <du...@ce...> + - update using the fedora template + * Sat Apr 14 2001 Bastiaan Bakker <bas...@li...> + - Initial release |