2006-12-19 00:16:42 +01:00
|
|
|
#
|
2011-08-11 10:08:30 +02:00
|
|
|
# spec file for package grep
|
2006-12-19 00:16:42 +01:00
|
|
|
#
|
2011-08-11 10:08:30 +02:00
|
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-19 00:16:42 +01:00
|
|
|
#
|
2008-08-21 17:53:30 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2006-12-19 00:16:42 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2008-02-15 01:20:59 +01:00
|
|
|
|
2006-12-19 00:16:42 +01:00
|
|
|
Name: grep
|
|
|
|
BuildRequires: pcre-devel
|
2010-09-23 23:58:18 +02:00
|
|
|
%if 0%{?suse_version} < 1120
|
|
|
|
BuildRequires: pcre
|
|
|
|
%endif
|
2007-10-03 00:55:33 +02:00
|
|
|
Url: http://www.gnu.org/software/grep/
|
2010-07-23 17:17:36 +02:00
|
|
|
License: GPLv3
|
2006-12-19 00:16:42 +01:00
|
|
|
Group: Productivity/Text/Utilities
|
|
|
|
Provides: base:/usr/bin/grep
|
2007-10-03 00:55:33 +02:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:16:42 +01:00
|
|
|
PreReq: %{install_info_prereq}
|
2011-08-10 11:57:16 +02:00
|
|
|
Version: 2.9
|
2011-08-11 10:08:30 +02:00
|
|
|
Release: 1
|
2006-12-19 00:16:42 +01:00
|
|
|
Summary: Print lines matching a pattern
|
|
|
|
Source: grep-%{version}.tar.bz2
|
2011-09-27 12:43:28 +02:00
|
|
|
Patch0: fix-testsuite.diff
|
2006-12-19 00:16:42 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
2010-09-23 23:58:18 +02:00
|
|
|
The grep command searches one or more input files
|
|
|
|
for lines containing a match to a specified pattern.
|
|
|
|
By default, grep prints the matching lines.
|
2006-12-19 00:16:42 +01:00
|
|
|
|
|
|
|
%prep
|
2007-10-03 00:55:33 +02:00
|
|
|
%setup -q
|
2010-09-23 23:58:18 +02:00
|
|
|
%if 0%{?suse_version} < 1120
|
|
|
|
echo "ac_cv_search_pcre_compile=\${ac_cv_search_pcre_compile=%{_libdir}/libpcre.a}" >config.cache
|
|
|
|
%endif
|
2011-09-27 12:43:28 +02:00
|
|
|
%patch0
|
2006-12-19 00:16:42 +01:00
|
|
|
|
|
|
|
%build
|
2010-09-23 23:58:18 +02:00
|
|
|
%if 0%{?suse_version} < 1120
|
2011-08-10 11:57:16 +02:00
|
|
|
%configure -C --bindir=/bin --disable-silent-rules --without-included-regex
|
2010-09-23 23:58:18 +02:00
|
|
|
%else
|
2007-11-28 23:12:05 +01:00
|
|
|
AUTOPOINT=true autoreconf --force --install
|
2011-08-10 11:57:16 +02:00
|
|
|
%configure --disable-silent-rules --bindir=/bin --without-included-regex
|
2010-09-23 23:58:18 +02:00
|
|
|
%endif
|
2010-07-23 17:17:36 +02:00
|
|
|
%{__make} %{?_smp_mflags}
|
2009-06-05 22:56:59 +02:00
|
|
|
|
|
|
|
%check
|
2007-05-07 18:12:46 +02:00
|
|
|
make check VERBOSE=1
|
2006-12-19 00:16:42 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
install -d $RPM_BUILD_ROOT/usr/bin
|
|
|
|
ln -sf ../../bin/egrep $RPM_BUILD_ROOT/usr/bin/egrep
|
|
|
|
ln -sf ../../bin/fgrep $RPM_BUILD_ROOT/usr/bin/fgrep
|
|
|
|
ln -sf ../../bin/grep $RPM_BUILD_ROOT/usr/bin/grep
|
2007-11-28 23:12:05 +01:00
|
|
|
%find_lang %name
|
2006-12-19 00:16:42 +01:00
|
|
|
|
|
|
|
%post
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/grep.info.gz
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/grep.info.gz
|
|
|
|
|
2007-11-28 23:12:05 +01:00
|
|
|
%files -f %name.lang
|
2006-12-19 00:16:42 +01:00
|
|
|
%defattr(-,root,root)
|
2007-11-28 23:12:05 +01:00
|
|
|
%doc README AUTHORS NEWS THANKS TODO
|
|
|
|
/bin/*
|
|
|
|
/usr/bin/*
|
2011-08-10 11:57:16 +02:00
|
|
|
%{_mandir}/man1/*.gz
|
|
|
|
%{_infodir}/*.gz
|
2007-11-28 23:12:05 +01:00
|
|
|
|
2007-03-22 20:43:58 +01:00
|
|
|
%changelog
|