Allow the release tag to be specified on the rpmbuild command line

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28284 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-07-17 18:20:08 +00:00
parent 2937186c32
commit ca46ba6056

View File

@@ -7,12 +7,19 @@
%define tarname @TARNAME@ %define tarname @TARNAME@
%define version @VERSION@ %define version @VERSION@
%define ver2 @VER2@ %define ver2 @VER2@
%define release 1
%define wxprefbase %{pref}/lib/wxPython %define wxprefbase %{pref}/lib/wxPython
%define wxpref %{wxprefbase}-%{version} %define wxpref %{wxprefbase}-%{version}
%define name wxPython%{port}-py%{pyver} %define name wxPython%{port}-py%{pyver}
# Allow the release tag to be specified on the rpmbuild command
# line with --define 'release SOMETHING' If no such definition is
# used then the release number is 1.
%if %{release:0}%{!?release:1}
%define release 1
%endif
# Should the builtin image and etc. libs be used, or system libs? # Should the builtin image and etc. libs be used, or system libs?
# Distro specific RPMs should probably set this to 0, generic ones # Distro specific RPMs should probably set this to 0, generic ones
# should use 1 # should use 1
@@ -107,6 +114,8 @@ cd bld
%if %{unicode} %if %{unicode}
--enable-gtk2 \ --enable-gtk2 \
--enable-unicode \ --enable-unicode \
%else
--disable-gtk2 \
%endif %endif
--enable-geometry \ --enable-geometry \
--enable-optimise \ --enable-optimise \