mplayer: Simplify cross, no `crossAttrs` or `crossConfig`
This commit is contained in:
parent
5de3b11960
commit
10b2bb8288
|
@ -26,7 +26,7 @@
|
||||||
, libjpegSupport ? true, libjpeg ? null
|
, libjpegSupport ? true, libjpeg ? null
|
||||||
, useUnfreeCodecs ? false
|
, useUnfreeCodecs ? false
|
||||||
, darwin ? null
|
, darwin ? null
|
||||||
, hostPlatform
|
, buildPackages
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert fontconfigSupport -> (fontconfig != null);
|
assert fontconfigSupport -> (fontconfig != null);
|
||||||
|
@ -84,6 +84,8 @@ let
|
||||||
meta.license = stdenv.lib.licenses.unfree;
|
meta.license = stdenv.lib.licenses.unfree;
|
||||||
} else null;
|
} else null;
|
||||||
|
|
||||||
|
crossBuild = stdenv.hostPlatform != stdenv.buildPlatform;
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -100,8 +102,10 @@ stdenv.mkDerivation rec {
|
||||||
rm -rf ffmpeg
|
rm -rf ffmpeg
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||||
|
nativeBuildInputs = [ pkgconfig yasm ];
|
||||||
buildInputs = with stdenv.lib;
|
buildInputs = with stdenv.lib;
|
||||||
[ pkgconfig freetype ffmpeg ]
|
[ freetype ffmpeg ]
|
||||||
++ optional aalibSupport aalib
|
++ optional aalibSupport aalib
|
||||||
++ optional fontconfigSupport fontconfig
|
++ optional fontconfigSupport fontconfig
|
||||||
++ optional fribidiSupport fribidi
|
++ optional fribidiSupport fribidi
|
||||||
|
@ -129,45 +133,66 @@ stdenv.mkDerivation rec {
|
||||||
++ (with darwin.apple_sdk.frameworks; optionals stdenv.isDarwin [ Cocoa OpenGL ])
|
++ (with darwin.apple_sdk.frameworks; optionals stdenv.isDarwin [ Cocoa OpenGL ])
|
||||||
;
|
;
|
||||||
|
|
||||||
nativeBuildInputs = [ yasm ];
|
configurePlatforms = [ ];
|
||||||
|
configureFlags = with stdenv.lib; [
|
||||||
|
"--enable-freetype"
|
||||||
|
(if fontconfigSupport then "--enable-fontconfig" else "--disable-fontconfig")
|
||||||
|
(if x11Support then "--enable-x11 --enable-gl" else "--disable-x11 --disable-gl")
|
||||||
|
(if xineramaSupport then "--enable-xinerama" else "--disable-xinerama")
|
||||||
|
(if xvSupport then "--enable-xv" else "--disable-xv")
|
||||||
|
(if alsaSupport then "--enable-alsa" else "--disable-alsa")
|
||||||
|
(if screenSaverSupport then "--enable-xss" else "--disable-xss")
|
||||||
|
(if vdpauSupport then "--enable-vdpau" else "--disable-vdpau")
|
||||||
|
(if cddaSupport then "--enable-cdparanoia" else "--disable-cdparanoia")
|
||||||
|
(if dvdnavSupport then "--enable-dvdnav" else "--disable-dvdnav")
|
||||||
|
(if bluraySupport then "--enable-bluray" else "--disable-bluray")
|
||||||
|
(if amrSupport then "--enable-libopencore_amrnb" else "--disable-libopencore_amrnb")
|
||||||
|
(if cacaSupport then "--enable-caca" else "--disable-caca")
|
||||||
|
(if lameSupport then "--enable-mp3lame --disable-mp3lame-lavc" else "--disable-mp3lame --enable-mp3lame-lavc")
|
||||||
|
(if speexSupport then "--enable-speex" else "--disable-speex")
|
||||||
|
(if theoraSupport then "--enable-theora" else "--disable-theora")
|
||||||
|
(if x264Support then "--enable-x264 --disable-x264-lavc" else "--disable-x264 --enable-x264-lavc")
|
||||||
|
(if jackaudioSupport then "" else "--disable-jack")
|
||||||
|
(if pulseSupport then "--enable-pulse" else "--disable-pulse")
|
||||||
|
"--disable-xanim"
|
||||||
|
"--disable-ivtv"
|
||||||
|
"--disable-xvid --disable-xvid-lavc"
|
||||||
|
"--disable-ossaudio"
|
||||||
|
"--disable-ffmpeg_a"
|
||||||
|
"--yasm=${buildPackages.yasm}/bin/yasm"
|
||||||
|
# Note, the `target` vs `host` confusion is intensional.
|
||||||
|
"--target=${stdenv.hostPlatform.config}"
|
||||||
|
] ++ optional
|
||||||
|
(useUnfreeCodecs && codecs != null && !crossBuild)
|
||||||
|
"--codecsdir=${codecs}"
|
||||||
|
++ optional
|
||||||
|
((stdenv.hostPlatform.isi686 || stdenv.hostPlatform.isx86_64) && !crossBuild)
|
||||||
|
"--enable-runtime-cpudetection"
|
||||||
|
++ optional fribidiSupport "--enable-fribidi"
|
||||||
|
++ optional stdenv.isLinux "--enable-vidix"
|
||||||
|
++ optional stdenv.isLinux "--enable-fbdev"
|
||||||
|
++ optionals (crossBuild) [
|
||||||
|
"--enable-cross-compile"
|
||||||
|
"--disable-vidix-pcidb"
|
||||||
|
"--with-vidix-drivers=no"
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
configureFlagsArray+=(
|
||||||
|
"--cc=$CC"
|
||||||
|
"--host-cc=$BUILD_CC"
|
||||||
|
"--as=$AS"
|
||||||
|
"--nm=$NM"
|
||||||
|
"--ar=$AR"
|
||||||
|
"--ranlib=$RANLIB"
|
||||||
|
"--windres=$WINDRES"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
postConfigure = ''
|
postConfigure = ''
|
||||||
echo CONFIG_MPEGAUDIODSP=yes >> config.mak
|
echo CONFIG_MPEGAUDIODSP=yes >> config.mak
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = with stdenv.lib;
|
|
||||||
''
|
|
||||||
--enable-freetype
|
|
||||||
${if fontconfigSupport then "--enable-fontconfig" else "--disable-fontconfig"}
|
|
||||||
${if x11Support then "--enable-x11 --enable-gl" else "--disable-x11 --disable-gl"}
|
|
||||||
${if xineramaSupport then "--enable-xinerama" else "--disable-xinerama"}
|
|
||||||
${if xvSupport then "--enable-xv" else "--disable-xv"}
|
|
||||||
${if alsaSupport then "--enable-alsa" else "--disable-alsa"}
|
|
||||||
${if screenSaverSupport then "--enable-xss" else "--disable-xss"}
|
|
||||||
${if vdpauSupport then "--enable-vdpau" else "--disable-vdpau"}
|
|
||||||
${if cddaSupport then "--enable-cdparanoia" else "--disable-cdparanoia"}
|
|
||||||
${if dvdnavSupport then "--enable-dvdnav" else "--disable-dvdnav"}
|
|
||||||
${if bluraySupport then "--enable-bluray" else "--disable-bluray"}
|
|
||||||
${if amrSupport then "--enable-libopencore_amrnb" else "--disable-libopencore_amrnb"}
|
|
||||||
${if cacaSupport then "--enable-caca" else "--disable-caca"}
|
|
||||||
${if lameSupport then "--enable-mp3lame --disable-mp3lame-lavc" else "--disable-mp3lame --enable-mp3lame-lavc"}
|
|
||||||
${if speexSupport then "--enable-speex" else "--disable-speex"}
|
|
||||||
${if theoraSupport then "--enable-theora" else "--disable-theora"}
|
|
||||||
${if x264Support then "--enable-x264 --disable-x264-lavc" else "--disable-x264 --enable-x264-lavc"}
|
|
||||||
${if jackaudioSupport then "" else "--disable-jack"}
|
|
||||||
${if pulseSupport then "--enable-pulse" else "--disable-pulse"}
|
|
||||||
${optionalString (useUnfreeCodecs && codecs != null) "--codecsdir=${codecs}"}
|
|
||||||
${optionalString (stdenv.isi686 || stdenv.isx86_64) "--enable-runtime-cpudetection"}
|
|
||||||
${optionalString fribidiSupport "--enable-fribidi"}
|
|
||||||
--disable-xanim
|
|
||||||
--disable-ivtv
|
|
||||||
--disable-xvid --disable-xvid-lavc
|
|
||||||
${optionalString stdenv.isLinux "--enable-vidix"}
|
|
||||||
${optionalString stdenv.isLinux "--enable-fbdev"}
|
|
||||||
--disable-ossaudio
|
|
||||||
--disable-ffmpeg_a
|
|
||||||
'';
|
|
||||||
|
|
||||||
NIX_LDFLAGS = with stdenv.lib;
|
NIX_LDFLAGS = with stdenv.lib;
|
||||||
optional fontconfigSupport "-lfontconfig"
|
optional fontconfigSupport "-lfontconfig"
|
||||||
++ optional fribidiSupport "-lfribidi"
|
++ optional fribidiSupport "-lfribidi"
|
||||||
|
@ -188,20 +213,6 @@ stdenv.mkDerivation rec {
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
crossAttrs = {
|
|
||||||
configurePlatforms = [];
|
|
||||||
# Some things (vidix) are nanonote specific. Once someone cares, we can make options from them.
|
|
||||||
# Note, the `target` vs `host` confusion is intensional.
|
|
||||||
preConfigure = ''
|
|
||||||
configureFlags="`echo $configureFlags |
|
|
||||||
sed -e 's/--codecsdir[^ ]\+//' \
|
|
||||||
-e 's/--enable-runtime-cpudetection//' `"
|
|
||||||
configureFlags="$configureFlags --target=${hostPlatform.arch}-linux
|
|
||||||
--enable-cross-compile --cc=$crossConfig-gcc --as=$crossConfig-as
|
|
||||||
--disable-vidix-pcidb --with-vidix-drivers=no --host-cc=gcc"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A movie player that supports many video formats";
|
description = "A movie player that supports many video formats";
|
||||||
homepage = http://mplayerhq.hu;
|
homepage = http://mplayerhq.hu;
|
||||||
|
|
Loading…
Reference in New Issue