summaryrefslogtreecommitdiffstats
path: root/third_party/lcov/rpm
diff options
context:
space:
mode:
authorjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-03 03:26:46 +0000
committerjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-03 03:26:46 +0000
commit1e1f6af9207b71845aa2f360e5d231825f317a09 (patch)
treec369805fe40cdaa9ee646cf98e44854be1538414 /third_party/lcov/rpm
parent4acc19a6f31abef9608546d10f107240603ca57e (diff)
downloadchromium_src-1e1f6af9207b71845aa2f360e5d231825f317a09.zip
chromium_src-1e1f6af9207b71845aa2f360e5d231825f317a09.tar.gz
chromium_src-1e1f6af9207b71845aa2f360e5d231825f317a09.tar.bz2
lcov-1.7 into third_party for code coverage on POSIX systems.
Non-lcov-1.7 files are lcov/LICENCE lcov/README.chromium lcov/bin/mcov Review URL: http://codereview.chromium.org/57083 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13066 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/lcov/rpm')
-rw-r--r--third_party/lcov/rpm/lcov.spec48
1 files changed, 48 insertions, 0 deletions
diff --git a/third_party/lcov/rpm/lcov.spec b/third_party/lcov/rpm/lcov.spec
new file mode 100644
index 0000000..894e1c4
--- /dev/null
+++ b/third_party/lcov/rpm/lcov.spec
@@ -0,0 +1,48 @@
+Summary: A graphical GCOV front-end
+Name: lcov
+Version: 1.7
+Release: 1
+License: GPL
+Group: Development/Tools
+URL: http://ltp.sourceforge.net/coverage/lcov.php
+Source0: http://downloads.sourceforge.net/ltp/lcov-%{version}.tar.gz
+BuildRoot: /var/tmp/%{name}-%{version}-root
+BuildArch: noarch
+
+%description
+LCOV is a graphical front-end for GCC's coverage testing tool gcov. It collects
+gcov data for multiple source files and creates HTML pages containing the
+source code annotated with coverage information. It also adds overview pages
+for easy navigation within the file structure.
+
+%prep
+%setup -q -n lcov-%{version}
+
+%build
+exit 0
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install PREFIX=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+/usr/bin
+/usr/share
+/etc
+
+%changelog
+* Wed Aug 13 2008 Peter Oberparleiter (Peter.Oberparleiter@de.ibm.com)
+- changed description + summary text
+* Mon Aug 20 2007 Peter Oberparleiter (Peter.Oberparleiter@de.ibm.com)
+- fixed "Copyright" tag
+* Mon Jul 14 2003 Peter Oberparleiter (Peter.Oberparleiter@de.ibm.com)
+- removed variables for version/release to support source rpm building
+- added initial rm command in install section
+* Mon Apr 7 2003 Peter Oberparleiter (Peter.Oberparleiter@de.ibm.com)
+- implemented variables for version/release
+* Fri Oct 8 2002 Peter Oberparleiter (Peter.Oberparleiter@de.ibm.com)
+- created initial spec file