summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-16 17:36:59 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-16 17:36:59 +0000
commit81b4eef864edabd9ea3f470ced3d090703dd7e5e (patch)
tree054b1f42fe31f331586dca443c91d4bc2d005a02 /pkgs
parent67f921896e44c0dc3e19d0367c8f4041412118f2 (diff)
downloadnixlib-81b4eef864edabd9ea3f470ced3d090703dd7e5e.tar
nixlib-81b4eef864edabd9ea3f470ced3d090703dd7e5e.tar.gz
nixlib-81b4eef864edabd9ea3f470ced3d090703dd7e5e.tar.bz2
nixlib-81b4eef864edabd9ea3f470ced3d090703dd7e5e.tar.lz
nixlib-81b4eef864edabd9ea3f470ced3d090703dd7e5e.tar.xz
nixlib-81b4eef864edabd9ea3f470ced3d090703dd7e5e.tar.zst
nixlib-81b4eef864edabd9ea3f470ced3d090703dd7e5e.zip
jasper: propagate libjpeg, kopete: remove 'fix'
svn path=/nixpkgs/trunk/; revision=31595
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/kde-4.8/kdenetwork/FindJasper.cmake35
-rw-r--r--pkgs/desktops/kde-4.8/kdenetwork/kopete.nix1
-rw-r--r--pkgs/development/libraries/jasper/default.nix3
3 files changed, 2 insertions, 37 deletions
diff --git a/pkgs/desktops/kde-4.8/kdenetwork/FindJasper.cmake b/pkgs/desktops/kde-4.8/kdenetwork/FindJasper.cmake
deleted file mode 100644
index bb06a7bd8d30..000000000000
--- a/pkgs/desktops/kde-4.8/kdenetwork/FindJasper.cmake
+++ /dev/null
@@ -1,35 +0,0 @@
-# - Try to find the Jasper JPEG2000 library
-# Once done this will define
-#
-#  JASPER_FOUND - system has Jasper
-#  JASPER_INCLUDE_DIR - the Jasper include directory
-#  JASPER_LIBRARIES - The libraries needed to use Jasper
-
-#=============================================================================
-# Copyright 2006-2009 Kitware, Inc.
-# Copyright 2006 Alexander Neundorf <neundorf@kde.org>
-#
-# Distributed under the OSI-approved BSD License (the "License");
-# see accompanying file Copyright.txt for details.
-#
-# This software is distributed WITHOUT ANY WARRANTY; without even the
-# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the License for more information.
-#=============================================================================
-# (To distribute this file outside of CMake, substitute the full
-#  License text for the above reference.)
-
-FIND_PACKAGE(JPEG)
-
-FIND_PATH(JASPER_INCLUDE_DIR jasper/jasper.h)
-
-FIND_LIBRARY(JASPER_LIBRARY NAMES jasper libjasper)
-
-SET(JASPER_LIBRARIES ${JASPER_LIBRARY})
-
-# handle the QUIETLY and REQUIRED arguments and set JASPER_FOUND to TRUE if 
-# all listed variables are TRUE
-INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(Jasper DEFAULT_MSG JASPER_LIBRARIES JASPER_INCLUDE_DIR)
-
-MARK_AS_ADVANCED(JASPER_INCLUDE_DIR JASPER_LIBRARY)
diff --git a/pkgs/desktops/kde-4.8/kdenetwork/kopete.nix b/pkgs/desktops/kde-4.8/kdenetwork/kopete.nix
index 27b36ba6d1b2..ec48b96fe19b 100644
--- a/pkgs/desktops/kde-4.8/kdenetwork/kopete.nix
+++ b/pkgs/desktops/kde-4.8/kdenetwork/kopete.nix
@@ -14,7 +14,6 @@ kde {
   patchPhase =
     ''
       cp -v ${./FindmsiLBC.cmake} kopete/cmake/modules/FindmsiLBC.cmake
-      cp -v ${./FindJasper.cmake} kopete/cmake/modules/FindJasper.cmake
     '';
 
   cmakeFlags = [ "-DBUILD_skypebuttons=TRUE" ];
diff --git a/pkgs/development/libraries/jasper/default.nix b/pkgs/development/libraries/jasper/default.nix
index bca8aedfd4b5..8cf4cc7991f0 100644
--- a/pkgs/development/libraries/jasper/default.nix
+++ b/pkgs/development/libraries/jasper/default.nix
@@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
     sha256 = "154l7zk7yh3v8l2l6zm5s2alvd2fzkp6c9i18iajfbna5af5m43b";
   };
 
-  buildInputs = [unzip libjpeg];
+  buildNativeInputs = [unzip];
+  propagatedBuildInputs = [ libjpeg ];
 
   configureFlags = "--enable-shared";