[Pkg-kde-commits] rev 253 - people/dato/packages/trunk/kdebindings/debian

Adeodato Sim?? dato-guest@haydn.debian.org
Sat, 13 Nov 2004 17:54:03 -0700


Author: dato-guest
Date: 2004-11-13 17:53:55 -0700 (Sat, 13 Nov 2004)
New Revision: 253

Modified:
   people/dato/packages/trunk/kdebindings/debian/changelog
   people/dato/packages/trunk/kdebindings/debian/rules
Log:
kdebindings 3.3.1-2 packaging updates, new changelog entries being:

    - debian/rules: put WITH_JAVA := --with-java=/usr and let CONFIGURE_FLAGS
      use that, so that in can be overriden to --without-java in the mipsen
      check.



Modified: people/dato/packages/trunk/kdebindings/debian/changelog
===================================================================
--- people/dato/packages/trunk/kdebindings/debian/changelog	2004-11-13 23:50:47 UTC (rev 252)
+++ people/dato/packages/trunk/kdebindings/debian/changelog	2004-11-14 00:53:55 UTC (rev 253)
@@ -11,12 +11,16 @@
       or mipsel. (Change done here and not in debian/control's Architecture:
       field for the benefit of unofficial architectures.)
 
+    - debian/rules: put WITH_JAVA := --with-java=/usr and let CONFIGURE_FLAGS
+      use that, so that in can be overriden to --without-java in the mipsen
+      check.
+
   * Fix build failure on machines with a lower limit on argument list length,
     e.g. q650 on the m68k buildd network. Modify the already existing patch
     030-koala-makefile-too-much-arguments.diff to apply the same changes to
     qtjava/javalib/org/kde/qt/Makefile.in.
 
- -- Adeodato Simó <asp16@alu.ua.es>  Sat, 13 Nov 2004 23:58:07 +0100
+ -- Adeodato Simó <asp16@alu.ua.es>  Sun, 14 Nov 2004 01:50:53 +0100
 
 kdebindings (4:3.3.1-1) unstable; urgency=low
 

Modified: people/dato/packages/trunk/kdebindings/debian/rules
===================================================================
--- people/dato/packages/trunk/kdebindings/debian/rules	2004-11-13 23:50:47 UTC (rev 252)
+++ people/dato/packages/trunk/kdebindings/debian/rules	2004-11-14 00:53:55 UTC (rev 253)
@@ -1,6 +1,6 @@
 #!/usr/bin/make -f
 
-CONFIGURE_FLAGS = --with-java=/usr \
+CONFIGURE_FLAGS = $(WITH_JAVA) \
 		  --with-pythondir=/usr/lib/python2.3/site-packages \
 		  DO_NOT_COMPILE='dcopperl kalyptus qtsharp xparts python'
 
@@ -9,6 +9,9 @@
 DH_MAKESHLIBS_ARGS = -V -Nlibkde3-jni -Nlibqt0-ruby1.8 -Nlibkorundum0-ruby1.8 ; \
 		     dh_makeshlibs -n -V -plibkde3-jni -plibqt0-ruby1.8 -plibkorundum0-ruby1.8
 
+# See at end of file for changes on this variable
+WITH_JAVA := --with-java=/usr
+
 include debian/common/vars.mk
 include debian/common/rules.mk
 
@@ -63,4 +66,5 @@
 
 ifneq (,$(findstring $(DEB_HOST_ARCH),$(FUCKED_GCJ_ARCHS)))
   override DH_OPTIONS += -Nlibdcop3-jni -Nlibqt3-jni -Nlibkde3-jni
+  WITH_JAVA := --without-java
 endif