aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/qt-3/builder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/qt-3/builder.sh')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/qt-3/builder.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/qt-3/builder.sh b/infra/libkookie/nixpkgs/pkgs/development/libraries/qt-3/builder.sh
deleted file mode 100644
index 460ae17766af..000000000000
--- a/infra/libkookie/nixpkgs/pkgs/development/libraries/qt-3/builder.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-source $stdenv/setup
-
-
-preConfigure() {
-
- # Patch some of the configure files a bit to get of global paths.
- # (Buildings using stuff in those paths will fail anyway, but it
- # will cause ./configure misdetections).
- for i in config.tests/unix/checkavail config.tests/*/*.test mkspecs/*/qmake.conf; do
- echo "patching $i..."
- substituteInPlace "$i" \
- --replace " /lib" " /FOO" \
- --replace "/usr" "/FOO"
- done
-}
-
-
-# !!! TODO: -system-libmng
-configureFlags="-prefix $out $configureFlags"
-dontAddPrefix=1
-
-configureScript=configureScript
-configureScript() {
- echo yes | ./configure $configureFlags
- export LD_LIBRARY_PATH=$(pwd)/lib
-}
-
-
-postInstall() {
- # Qt's `make install' is broken; it copies ./bin/qmake, which
- # is a symlink to ./qmake/qmake. So we end up with a dangling
- # symlink.
- rm $out/bin/qmake
- cp -p qmake/qmake $out/bin
-}
-
-
-genericBuild