Add qwt-5.2.1
svn path=/nixpkgs/trunk/; revision=28482
This commit is contained in:
parent
e5a6f2702b
commit
bac6982ca8
20
pkgs/development/libraries/qwt/default.nix
Normal file
20
pkgs/development/libraries/qwt/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, qt4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qwt-5.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
|
||||
sha256 = "17snmh8qwsgb4j2yiyzmi0s1jli14vby5wv1kv4kvjq4aisvpf72";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ qt4 ];
|
||||
|
||||
patches = [ ./prefix.diff ];
|
||||
|
||||
postPatch = ''
|
||||
sed -e "s@\$\$\[QT_INSTALL_PLUGINS\]@$out/lib/qt4/plugins@" -i designer/designer.pro
|
||||
'';
|
||||
|
||||
configurePhase = ''qmake INSTALLBASE=$out -after doc.path=$out/share/doc/${name} -r'';
|
||||
}
|
24
pkgs/development/libraries/qwt/prefix.diff
Normal file
24
pkgs/development/libraries/qwt/prefix.diff
Normal file
@ -0,0 +1,24 @@
|
||||
diff --git a/qwtconfig.pri b/qwtconfig.pri
|
||||
index 2be4a68..8625686 100644
|
||||
--- a/qwtconfig.pri
|
||||
+++ b/qwtconfig.pri
|
||||
@@ -7,12 +7,14 @@ VER_MIN = 2
|
||||
VER_PAT = 1
|
||||
VERSION = $${VER_MAJ}.$${VER_MIN}.$${VER_PAT}
|
||||
|
||||
-unix {
|
||||
- INSTALLBASE = /usr/local/qwt-5.2.1
|
||||
-}
|
||||
+isEmpty(INSTALLBASE) {
|
||||
+ unix {
|
||||
+ INSTALLBASE = /usr/local/qwt-5.2.1
|
||||
+ }
|
||||
|
||||
-win32 {
|
||||
- INSTALLBASE = C:/Qwt-5.2.1
|
||||
+ win32 {
|
||||
+ INSTALLBASE = C:/Qwt-5.2.1
|
||||
+ }
|
||||
}
|
||||
|
||||
target.path = $$INSTALLBASE/lib
|
@ -4299,6 +4299,8 @@ let
|
||||
|
||||
quesoglc = callPackage ../development/libraries/quesoglc { };
|
||||
|
||||
qwt = callPackage ../development/libraries/qwt {};
|
||||
|
||||
readline = readline6;
|
||||
|
||||
readline4 = callPackage ../development/libraries/readline/readline4.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user