qtscriptgenerator: turn off format hardening
This commit is contained in:
parent
8e2adea08a
commit
2220f46e20
@ -9,13 +9,13 @@ stdenv.mkDerivation {
|
|||||||
buildInputs = [ qt4 ];
|
buildInputs = [ qt4 ];
|
||||||
|
|
||||||
patches = [ ./qtscriptgenerator.gcc-4.4.patch ./qt-4.8.patch ];
|
patches = [ ./qtscriptgenerator.gcc-4.4.patch ./qt-4.8.patch ];
|
||||||
|
|
||||||
# Why isn't the author providing proper Makefile or a CMakeLists.txt ?
|
# Why isn't the author providing proper Makefile or a CMakeLists.txt ?
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
# remove phonon stuff which causes errors (thanks to Gentoo bug reports)
|
# remove phonon stuff which causes errors (thanks to Gentoo bug reports)
|
||||||
sed -i "/typesystem_phonon.xml/d" generator/generator.qrc
|
sed -i "/typesystem_phonon.xml/d" generator/generator.qrc
|
||||||
sed -i "/qtscript_phonon/d" qtbindings/qtbindings.pro
|
sed -i "/qtscript_phonon/d" qtbindings/qtbindings.pro
|
||||||
|
|
||||||
cd generator
|
cd generator
|
||||||
qmake
|
qmake
|
||||||
make
|
make
|
||||||
@ -25,13 +25,15 @@ stdenv.mkDerivation {
|
|||||||
qmake
|
qmake
|
||||||
make
|
make
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
cd ..
|
cd ..
|
||||||
mkdir -p $out/lib/qt4/plugins/script
|
mkdir -p $out/lib/qt4/plugins/script
|
||||||
cp -av plugins/script/* $out/lib/qt4/plugins/script
|
cp -av plugins/script/* $out/lib/qt4/plugins/script
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
hardening_format = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "QtScript bindings generator";
|
description = "QtScript bindings generator";
|
||||||
homepage = http://code.google.com/p/qtscriptgenerator/;
|
homepage = http://code.google.com/p/qtscriptgenerator/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user