2007-01-16 00:36:24 +01:00
|
|
|
#
|
2011-10-27 13:52:53 +02:00
|
|
|
# spec file for package scons
|
2007-01-16 00:36:24 +01:00
|
|
|
#
|
2013-07-22 08:26:03 +02:00
|
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:36:24 +01:00
|
|
|
#
|
2008-09-08 16:30:40 +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.
|
|
|
|
|
2007-01-16 00:36:24 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2011-10-27 13:52:53 +02:00
|
|
|
# Potential build fix for SLE11 SLE11SP1
|
|
|
|
%if 0%{?suse_version} <= 1120
|
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
|
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
|
|
|
%endif
|
2008-04-24 01:53:21 +02:00
|
|
|
|
2007-01-16 00:36:24 +01:00
|
|
|
Name: scons
|
2007-11-12 18:43:05 +01:00
|
|
|
Summary: Replacement for Make
|
2012-10-16 12:54:54 +02:00
|
|
|
License: MIT
|
|
|
|
Group: Development/Tools/Building
|
2013-07-22 08:26:03 +02:00
|
|
|
Version: 2.3.0
|
2012-10-16 12:54:54 +02:00
|
|
|
Release: 0
|
2013-07-22 08:26:03 +02:00
|
|
|
Source0: http://prdownloads.sourceforge.net/scons/%{name}-%{version}.tar.gz
|
|
|
|
#http://www.scons.org/doc/%%{version}/HTML/scons-user.html
|
|
|
|
Source1: scons-user.html-%{version}.tar.bz2
|
2011-10-27 13:52:53 +02:00
|
|
|
# rpmlintrc
|
|
|
|
Source99: %{name}-rpmlintrc
|
|
|
|
# Sets _mandir to _datadir/man instead of _prefix/man
|
|
|
|
Patch0: %{name}-1.2.0-fix-install.patch
|
|
|
|
Patch1: %{name}-1.2.0-noenv.patch
|
2007-11-12 18:43:05 +01:00
|
|
|
Url: http://www.scons.org/
|
2007-01-16 00:36:24 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2011-10-27 13:52:53 +02:00
|
|
|
BuildRequires: fdupes
|
2013-07-22 08:26:03 +02:00
|
|
|
BuildRequires: python-devel >= 2.4
|
|
|
|
%if 0%{?suse_version} > 1110
|
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
2007-01-16 00:36:24 +01:00
|
|
|
%{py_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
SCons is a make replacement that provides a range of enhanced features,
|
2007-05-31 21:13:46 +02:00
|
|
|
such as automated dependency generation and built-in compilation cache
|
2007-11-12 18:43:05 +01:00
|
|
|
support. SCons rule sets are Python scripts, which means that SCons
|
|
|
|
provides itself as well as the features. SCons allows you to use the
|
|
|
|
full power of Python to control compilation.
|
2007-01-16 00:36:24 +01:00
|
|
|
|
|
|
|
%prep
|
2013-07-22 08:26:03 +02:00
|
|
|
%setup -q -a1
|
2007-11-12 18:43:05 +01:00
|
|
|
%patch0
|
2007-01-16 00:36:24 +01:00
|
|
|
%patch1
|
2007-11-12 18:43:05 +01:00
|
|
|
# fix libdir for qt
|
2007-01-16 00:36:24 +01:00
|
|
|
patch -p0 <<EOF
|
|
|
|
--- engine/SCons/Tool/qt.py
|
|
|
|
+++ engine/SCons/Tool/qt.py
|
2009-01-22 13:17:23 +01:00
|
|
|
@@ -247,1 +247,1 @@
|
2007-01-16 00:36:24 +01:00
|
|
|
- QT_LIBPATH = os.path.join('\$QTDIR', 'lib'),
|
|
|
|
+ QT_LIBPATH = os.path.join('\$QTDIR', '%_lib'),
|
|
|
|
EOF
|
|
|
|
|
|
|
|
%build
|
2007-11-12 18:43:05 +01:00
|
|
|
export CFLAGS="$RPM_OPT_FLAGS"
|
2007-01-16 00:36:24 +01:00
|
|
|
python setup.py build
|
|
|
|
|
|
|
|
%install
|
2013-07-22 08:26:03 +02:00
|
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot} --install-lib=%{python_sitelib}
|
2011-10-27 13:52:53 +02:00
|
|
|
%fdupes %{buildroot}%{_bindir}
|
2007-01-16 00:36:24 +01:00
|
|
|
|
2013-07-22 08:26:03 +02:00
|
|
|
%check
|
|
|
|
|
2011-10-27 13:52:53 +02:00
|
|
|
%files
|
2007-01-16 00:36:24 +01:00
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc CHANGES.txt LICENSE.txt README.txt RELEASE.txt scons-user.html
|
2011-10-27 13:52:53 +02:00
|
|
|
%{_bindir}/*
|
2013-07-22 08:26:03 +02:00
|
|
|
%{python_sitelib}/SCons/
|
|
|
|
%{python_sitelib}/*.egg-info
|
2011-10-27 13:52:53 +02:00
|
|
|
%{_mandir}/man1/*.gz
|
2008-04-24 01:53:21 +02:00
|
|
|
|
2007-05-31 21:13:46 +02:00
|
|
|
%changelog
|