r615 - in /trunk/boinc/debian: changelog rules
fst-guest at users.alioth.debian.org
fst-guest at users.alioth.debian.org
Tue Apr 10 10:23:01 UTC 2007
Author: fst-guest
Date: Tue Apr 10 10:23:01 2007
New Revision: 615
URL: http://svn.debian.org/wsvn/pkg-boinc/?sc=1&rev=615
Log:
Use the official BOINC platform on ppc64.
Modified:
trunk/boinc/debian/changelog
trunk/boinc/debian/rules
Modified: trunk/boinc/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinc/debian/changelog?rev=615&op=diff
==============================================================================
--- trunk/boinc/debian/changelog (original)
+++ trunk/boinc/debian/changelog Tue Apr 10 10:23:01 2007
@@ -17,6 +17,8 @@
conffiles cc_config.xml and global_prefs_override.xml are well-formed.
- Since backporting to sarge is not possible any more, also removed the
compatibility code for sarge's version of dpkg-architecture.
+ - On ppc64 use ppc64-linux-gnu as BOINC platform (which is the official
+ BOINC platform) instead of powerpc64-unknown-linux-gnu.
* Switched patch system from dpatch to quilt.
* debian/patches/:
- Updated 001_amd64_disable_platform_reset.patch for the new release.
@@ -58,7 +60,7 @@
* Updated boinc_cmd's and boincmgr's manual pages for the new release.
* Updated debian/copyright for the new release.
- -- Frank S. Thomas <frank at thomas-alfeld.de> Tue, 10 Apr 2007 00:04:36 +0200
+ -- Frank S. Thomas <frank at thomas-alfeld.de> Tue, 10 Apr 2007 12:15:57 +0200
boinc (5.4.11-5) unstable; urgency=low
Modified: trunk/boinc/debian/rules
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinc/debian/rules?rev=615&op=diff
==============================================================================
--- trunk/boinc/debian/rules (original)
+++ trunk/boinc/debian/rules Tue Apr 10 10:23:01 2007
@@ -14,12 +14,21 @@
TYPE_FLAGS = --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
endif
-# Most BOINC projects only provide their applications for i686-pc-linux-gnu.
-# If the core client reports that it was built for i486-pc-linux-gnu it won't
-# download any application or work units, so we use --target i686-linux-gnu
-# to override it on i386 hosts.
+# On some architectures it is required to override the target type so that the
+# core client uses the official BOINC platform for this architecture otherwise
+# it would not download any applications because projects mostly provide only
+# applications for official BOINC platforms.
+# See http://boinc.berkeley.edu/platform.php for the list of official BOINC
+# platforms.
+
+# change BOINC platform i486-pc-linux-gnu to i686-pc-linux-gnu
ifeq ($(DEB_HOST_GNU_TYPE), i486-linux-gnu)
TYPE_FLAGS += --target i686-linux-gnu --program-prefix=""
+endif
+
+# change BOINC platform powerpc64-unknown-linux-gnu to ppc64-linux-gnu
+ifeq ($(DEB_HOST_GNU_TYPE), powerpc64-linux-gnu)
+ TYPE_FLAGS += --target ppc64-linux-gnu --program-prefix=""
endif
CFLAGS += -g -Wall
More information about the pkg-boinc-commits
mailing list