[pkg-wine-party] [SCM] Debian Wine packaging branch, master, updated. wine-1.1.8-1-359-gf99eb77

Ove Kaaven ovek at arcticnet.no
Sun Jan 4 12:10:58 UTC 2009


The following commit has been merged in the master branch:
commit 7a3ef9bfd5cfd917baeb08892f744c9cf2cccfaf
Author: Ove Kaaven <ovek at arcticnet.no>
Date:   Sun Jan 4 08:10:45 2009 +0100

    Support the "parallel" option of DEB_BUILD_OPTIONS.
    Upgraded Standards-Version to 3.8.0.

diff --git a/debian/control b/debian/control
index 3a9e445..0c077c3 100644
--- a/debian/control
+++ b/debian/control
@@ -29,7 +29,7 @@ Build-Depends: debhelper (>= 5), flex | flex-old, bison,
  ia32-libs (>= 1.19) [amd64 kfreebsd-amd64],
  lib32ncurses5-dev [amd64 kfreebsd-amd64], lib32asound2-dev [amd64],
  lib32z1-dev [amd64 kfreebsd-amd64]
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Homepage: http://www.winehq.org/
 Vcs-Browser: http://git.debian.org/?p=pkg-wine/wine.git
 Vcs-Git: git://git.debian.org/git/pkg-wine/wine.git
diff --git a/debian/rules b/debian/rules
index 3f53ca6..2f63e10 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,12 +6,16 @@ export SHELL=bash
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
 CFLAGS=-O0 -g
 else
 CFLAGS=-O2 -g
 endif
 LDFLAGS=
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+MAKEFLAGS += -j$(NUMJOBS)
+endif
 
 CONFIGOPTS = --with-x --enable-opengl --disable-tests
 

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list