First few programs of kde 4.7 kdeedu.

svn path=/nixpkgs/trunk/; revision=28213
This commit is contained in:
Karn Kallio
2011-08-07 00:38:11 +00:00
parent 37c45263c6
commit 278cc6dc0b
9 changed files with 87 additions and 41 deletions

View File

@@ -6,6 +6,7 @@
, enableShared ? true
, enableStatic ? false
, enablePIC ? false
, enableExceptions ? false
}:
let
@@ -28,8 +29,14 @@ let
(enableShared && enableStatic)) then
"tagged" else "system";
cflags = if (enablePIC) then "cflags=-fPIC cxxflags=-fPIC linkflags=-fPIC" else "";
cflags = if (enablePIC && enableExceptions) then
"cflags=-fPIC -fexceptions cxxflags=-fPIC linkflags=-fPIC"
else if (enablePIC) then
"cflags=-fPIC cxxflags=-fPIC linkflags=-fPIC"
else if (enableExceptions) then
"cflags=-fexceptions"
else
"";
in
stdenv.mkDerivation {