Hi Martin,

Can you please try building kde-style-qtcurve on the buildd with 
attached patch? As (another) Martin pointed out, it might be related 
to the fact that $HOME is not properly set on buildd, and the code 
tries to create $HOME/.qt directory during the build, which fails.
The patch simply sets HOME to tmp in the current (build) directory.
I verified building it in a chroot, but buildd environment is probably 
slightly different.

Cheer.
-- 
Jurij Smakov                                           [EMAIL PROTECTED]
Key: http://www.wooyd.org/pgpkey/                      KeyID: C99E03CC
--- kde-style-qtcurve-0.59.3/debian/rules	2008-08-16 20:16:23.000000000 +0000
+++ kde-style-qtcurve-0.59.3.new/debian/rules	2008-08-16 20:18:18.000000000 +0000
@@ -27,8 +27,8 @@
 builddir/config.h: CMakeLists.txt config.h.cmake
 	dh_testdir
 	# Add here commands to configure the package.
-	mkdir -p builddir
-	cd builddir && cmake ..
+	mkdir -p builddir tmp
+	cd builddir && HOME=$${PWD}/tmp cmake ..
 
 build: build-stamp
 
@@ -36,7 +36,7 @@
 	dh_testdir
 
 	# Add here commands to compile the package.
-	$(MAKE) -C builddir
+	HOME=$${PWD}/tmp $(MAKE) -C builddir
 
 	touch $@
 
@@ -46,7 +46,7 @@
 
 	# Add here commands to clean up after the build process.
 	rm -f build-stamp 
-	rm -rf builddir
+	rm -rf builddir tmp
 
 	dh_clean 
 

Reply via email to