summary refs log tree commit diff
path: root/pkgs/applications/misc/eaglemode
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2012-07-02 23:01:23 +0200
committerLluís Batlle i Rossell <viric@viric.name>2012-07-02 23:04:12 +0200
commit5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24 (patch)
tree5a771d70b83b5c1928b2347e2b461e04e5219ac6 /pkgs/applications/misc/eaglemode
parent8a764b7891cbb8d4753c420254608814de428905 (diff)
downloadnixlib-5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24.tar
nixlib-5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24.tar.gz
nixlib-5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24.tar.bz2
nixlib-5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24.tar.lz
nixlib-5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24.tar.xz
nixlib-5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24.tar.zst
nixlib-5592b1f9b181fa5872b2e75c5ca8fcbd6e023b24.zip
eaglemode: update to 0.84.0
It failds to build with xine-lib, but it goes on as it's
not a strong requirement. Then, the final path is not dependant
on xine anymore. I hope next releases fix this.
Diffstat (limited to 'pkgs/applications/misc/eaglemode')
-rw-r--r--pkgs/applications/misc/eaglemode/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/applications/misc/eaglemode/default.nix b/pkgs/applications/misc/eaglemode/default.nix
index f027588c5dc6..519db53ea18f 100644
--- a/pkgs/applications/misc/eaglemode/default.nix
+++ b/pkgs/applications/misc/eaglemode/default.nix
@@ -2,11 +2,11 @@
 librsvg, glib, gtk, libXext, libXxf86vm, poppler }:
 
 stdenv.mkDerivation {
-  name = "eaglemode-0.83.0";
+  name = "eaglemode-0.84.0";
  
   src = fetchurl {
-    url = mirror://sourceforge/eaglemode/eaglemode-0.83.0.tar.bz2;
-    sha256 = "0rlvi9ljf3ml2l4ydkcgjjja8wk9c7h5qlpdr4x4ghh6sqq0q2x3";
+    url = mirror://sourceforge/eaglemode/eaglemode-0.84.0.tar.bz2;
+    sha256 = "0n20b419j0l7h7jr4s3f3n09ka0ysg9nqs8mcwsrx24rcq7nv0cs";
   };
  
   buildInputs = [ perl libX11 xineLib libjpeg libpng libtiff pkgconfig 
@@ -14,9 +14,12 @@ stdenv.mkDerivation {
  
   # The program tries to dlopen both Xxf86vm and Xext, so we use the
   # trick on NIX_LDFLAGS and dontPatchELF to make it find them.
+  # I use 'yes y' to skip a build error linking with xineLib, 
+  # because xine stopped exporting "_x_vo_new_port"
+  #  http://sourceforge.net/projects/eaglemode/forums/forum/808824/topic/5115261
   buildPhase = ''
     export NIX_LDFLAGS="$NIX_LDFLAGS -lXxf86vm -lXext"
-    yes n | perl make.pl build
+    yes y | perl make.pl build
   '';
 
   dontPatchELF = true;