[Pkg-openmpi-commits] r158 - in /openmpi/trunk/debian: control rules
manuel at users.alioth.debian.org
manuel at users.alioth.debian.org
Mon Jan 26 19:43:52 UTC 2009
Author: manuel
Date: Mon Jan 26 19:43:52 2009
New Revision: 158
URL: http://svn.debian.org/wsvn/pkg-openmpi/?sc=1&rev=158
Log:
Added quilt to control, calling autoreconf in rules
Modified:
openmpi/trunk/debian/control
openmpi/trunk/debian/rules
Modified: openmpi/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-openmpi/openmpi/trunk/debian/control?rev=158&op=diff
==============================================================================
--- openmpi/trunk/debian/control (original)
+++ openmpi/trunk/debian/control Mon Jan 26 19:43:52 2009
@@ -4,7 +4,7 @@
Homepage: http://www.open-mpi.org/
Maintainer: Debian OpenMPI Maintainers <pkg-openmpi-maintainers at lists.alioth.debian.org>
Uploaders: Dirk Eddelbuettel <edd at debian.org>, Manuel Prinz <manuel at debian.org>, Sylvestre Ledru <sylvestre.ledru at inria.fr>
-Build-Depends: debhelper (>= 5.0.0), libibverbs-dev (>= 1.1.1) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], gfortran, gcc (>= 4:4.1.2), chrpath
+Build-Depends: debhelper (>= 5.0.0), libibverbs-dev (>= 1.1.1) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], gfortran, gcc (>= 4:4.1.2), chrpath, quilt, autoconf
Standards-Version: 3.8.0
Vcs-Svn: svn://svn.debian.org/svn/pkg-openmpi/openmpi/trunk/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-openmpi/openmpi/trunk/
Modified: openmpi/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-openmpi/openmpi/trunk/debian/rules?rev=158&op=diff
==============================================================================
--- openmpi/trunk/debian/rules (original)
+++ openmpi/trunk/debian/rules Mon Jan 26 19:43:52 2009
@@ -1,6 +1,7 @@
#!/usr/bin/make -f
#include /usr/share/dpatch/dpatch.make
+include /usr/share/quilt/quilt.make
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
@@ -45,16 +46,18 @@
build: build-shared build-static
-build-shared:
+build-shared: patch
dh_testdir
mkdir -p build/shared
+ autoreconf
(cd build/shared && LDFLAGS="" CFLAGS="$(CFLAGS)" ../../configure $(COMMON_CONFIG_PARAMS))
$(MAKE) -C build/shared
touch $@
-build-static:
+build-static: patch
dh_testdir
mkdir -p build/static
+ autoreconf
(cd build/static && LDFLAGS="" CFLAGS="$(CFLAGS)" ../../configure $(COMMON_CONFIG_PARAMS) $(STATIC_CONFIG_PARAMS))
$(MAKE) -C build/static
touch $@
@@ -67,7 +70,7 @@
-$(MAKE) check
touch $@
-clean: clean-work #unpatch
+clean: clean-work unpatch
clean-work:
dh_testdir
dh_testroot
More information about the Pkg-openmpi-commits
mailing list