libdv: more flags

svn path=/nixpkgs/branches/stdenv-updates/; revision=10516
This commit is contained in:
Yury G. Kudryashov 2008-02-06 19:00:15 +00:00
parent 2d2aef01a5
commit 7c1e5d4200
2 changed files with 20 additions and 11 deletions

View file

@ -1,15 +1,21 @@
args:
let edf = args.lib.enableDisableFeature; in
( args.mkDerivationByConfiguration {
flagConfig = { }
flagConfig = {
mandatory = { buildInputs = [ "popt" "pkgconfig" ]; };
libX11 = { cfgOption = "--with-x11"; buildInputs = "libX11"; };
no_libX11 = { cfgOption = "--without-x11"; };
}
# TODO! implement flags
# I want to get kino and cinelerra working. That's why I don't spend more time on this now
// edf "libtool_lock" "libtool_lock" { } #avoid locking (might break parallel builds)
// edf "asm" "asm" { } #disable use of architecture specific assembly code
// edf "sdl" "sdl" { } #enable use of SDL for display
// edf "gtk" "gtk" { } #disable use of gtk for display
// edf "xv" "xv" { } #disable use of XVideo extension for display
// edf "SDL" "sdl" { buildInputs = "SDL"; } #enable use of SDL for display
// edf "gtk" "gtk" { buildInputs = "gtk"; } #disable use of gtk for display
// edf "libXv" "xv" { buildInputs = "libXv"; } #disable use of XVideo extension for display
// edf "gprof" "gprof" { } #enable compiler options for gprof profiling
// edf "shared" "shared" { }
// edf "static" "static" { }
;
extraAttrs = co : {
@ -20,11 +26,13 @@ let edf = args.lib.enableDisableFeature; in
sha256 = "1fl96f2xh2slkv1i1ix7kqk576a0ak1d33cylm0mbhm96d0761d3";
};
meta = {
description = "software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards";
homepage = http://sourceforge.net/projects/libdv/;
# you can choose one of the following licenses:
license = [];
meta = {
description = "software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards";
homepage = http://sourceforge.net/projects/libdv/;
# you can choose one of the following licenses:
license = [];
};
};
};
optionals = [ "SDL" "gtk" "libXv" "libX11" ];
defaults = [ "shared" "libtool_lock" ];
} ) args

View file

@ -2154,7 +2154,8 @@ rec {
} null;
libdv = import ../development/libraries/libdv {
inherit fetchurl stdenv lib mkDerivationByConfiguration;
inherit fetchurl stdenv lib mkDerivationByConfiguration SDL popt pkgconfig;
inherit (xorg) libXv libX11;
};
libdrm = import ../development/libraries/libdrm {