CVS commit by benb: Disable kig scripting on arm.
M +7 -0 changelog 1.12.2.12 M +1 -1 control 1.16.2.10 M +8 -1 rules 1.12.2.3 --- kdeedu/debian/changelog #1.12.2.11:1.12.2.12 @@ -1,2 +1,9 @@ +kdeedu (4:3.2.3-2) unstable; urgency=low + + * Disable kig scripting on arm while boost.python remains broken on + that architecture. + + -- Ben Burton <[EMAIL PROTECTED]> Sat, 17 Jul 2004 11:19:00 +1000 + kdeedu (4:3.2.3-1) unstable; urgency=low --- kdeedu/debian/control #1.16.2.9:1.16.2.10 @@ -3,5 +3,5 @@ Priority: optional Maintainer: Ben Burton <[EMAIL PROTECTED]> -Build-Depends: automake1.7, debhelper (>> 4.0.0), kdelibs4-dev (>> 4:3.2.0), libboost-python-dev (>= 1.31.0) +Build-Depends: automake1.7, debhelper (>> 4.0.0), kdelibs4-dev (>> 4:3.2.0), libboost-python-dev (>= 1.31.0) [!arm] Standards-Version: 3.6.1 --- kdeedu/debian/rules #1.12.2.2:1.12.2.3 @@ -42,4 +42,11 @@ endif +ifeq ($(DEB_BUILD_GNU_TYPE),arm-linux) + # Required since boost.python is broken on arm (#245893). + BOOST_FLAGS=--disable-kig-python-scripting +else + BOOST_FLAGS= +endif + -include debian/debiandirs @@ -74,5 +81,5 @@ # run configure with build tree $(objdir) cd $(objdir) && \ - ../configure $(configkde) + ../configure $(configkde) $(BOOST_FLAGS) touch configure-stamp