slim: Update to 1.3.6
This commit is contained in:
parent
347132478b
commit
1d634b4388
@ -1,29 +1,32 @@
|
|||||||
{ stdenv, fetchurl, cmake, pkgconfig, x11, libjpeg, libpng, libXmu
|
{ stdenv, fetchurl, cmake, pkgconfig, xorg, libjpeg, libpng
|
||||||
, fontconfig, freetype, pam, dbus_libs }:
|
, fontconfig, freetype, pam, dbus_libs }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "slim-1.3.4";
|
name = "slim-1.3.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.berlios.de/slim/${name}.tar.gz";
|
url = "http://download.berlios.de/slim/${name}.tar.gz";
|
||||||
sha256 = "00fmrg2v41jnqhx0yc1kv97xxh5gai18n0i4as9g1fcq1i32cp0m";
|
sha256 = "1pqhk22jb4aja4hkrm7rjgbgzjyh7i4zswdgf5nw862l2znzxpi1";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches =
|
||||||
# Allow the paths of the configuration file and theme directory to
|
[ # Allow the paths of the configuration file and theme directory to
|
||||||
# be set at runtime.
|
# be set at runtime.
|
||||||
./runtime-paths.patch
|
./runtime-paths.patch
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs =
|
|
||||||
[ cmake pkgconfig x11 libjpeg libpng libXmu fontconfig freetype
|
|
||||||
pam dbus_libs
|
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = "substituteInPlace CMakeLists.txt --replace /etc $out/etc";
|
preConfigure = "substituteInPlace CMakeLists.txt --replace /etc $out/etc --replace /lib $out/lib";
|
||||||
|
|
||||||
cmakeFlags = [ "-DUSE_PAM=1" ];
|
cmakeFlags = [ "-DUSE_PAM=1" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ cmake pkgconfig libjpeg libpng fontconfig freetype
|
||||||
|
pam dbus_libs
|
||||||
|
xorg.libX11 xorg.libXext xorg.libXrandr xorg.libXrender xorg.libXmu xorg.libXft
|
||||||
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_LINK = "-lXmu";
|
NIX_CFLAGS_LINK = "-lXmu";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -1,41 +1,25 @@
|
|||||||
diff -rc slim-1.2.6-orig/app.cpp slim-1.2.6/app.cpp
|
diff -ru -x '*~' slim-1.3.6-orig/app.cpp slim-1.3.6/app.cpp
|
||||||
*** slim-1.2.6-orig/app.cpp Fri Sep 15 23:00:37 2006
|
--- slim-1.3.6-orig/app.cpp 2013-10-02 00:38:05.000000000 +0200
|
||||||
--- slim-1.2.6/app.cpp Sun Feb 25 17:30:50 2007
|
+++ slim-1.3.6/app.cpp 2013-10-15 11:02:55.629263422 +0200
|
||||||
***************
|
@@ -200,7 +200,9 @@
|
||||||
*** 113,119 ****
|
|
||||||
|
|
||||||
// Read configuration and theme
|
/* Read configuration and theme */
|
||||||
cfg = new Cfg;
|
cfg = new Cfg;
|
||||||
! cfg->readConf(CFGFILE);
|
- cfg->readConf(CFGFILE);
|
||||||
string themebase = "";
|
+ char *cfgfile = getenv("SLIM_CFGFILE");
|
||||||
string themefile = "";
|
+ if (!cfgfile) cfgfile = CFGFILE;
|
||||||
string themedir = "";
|
+ cfg->readConf(cfgfile);
|
||||||
--- 113,121 ----
|
string themebase = "";
|
||||||
|
string themefile = "";
|
||||||
// Read configuration and theme
|
string themedir = "";
|
||||||
cfg = new Cfg;
|
@@ -208,7 +210,9 @@
|
||||||
! char *cfgfile = getenv("SLIM_CFGFILE");
|
if (testing) {
|
||||||
! if (!cfgfile) cfgfile = CFGFILE;
|
themeName = testtheme;
|
||||||
! cfg->readConf(cfgfile);
|
} else {
|
||||||
string themebase = "";
|
- themebase = string(THEMESDIR) + "/";
|
||||||
string themefile = "";
|
+ char *themesdir = getenv("SLIM_THEMESDIR");
|
||||||
string themedir = "";
|
+ if (!themesdir) themesdir = THEMESDIR;
|
||||||
***************
|
+ themebase = string(themesdir) + "/";
|
||||||
*** 121,127 ****
|
themeName = cfg->getOption("current_theme");
|
||||||
if (testing) {
|
string::size_type pos;
|
||||||
themeName = testtheme;
|
if ((pos = themeName.find(",")) != string::npos) {
|
||||||
} else {
|
|
||||||
! themebase = string(THEMESDIR) + "/";
|
|
||||||
themeName = cfg->getOption("current_theme");
|
|
||||||
string::size_type pos;
|
|
||||||
if ((pos = themeName.find(",")) != string::npos) {
|
|
||||||
--- 123,131 ----
|
|
||||||
if (testing) {
|
|
||||||
themeName = testtheme;
|
|
||||||
} else {
|
|
||||||
! char *themesdir = getenv("SLIM_THEMESDIR");
|
|
||||||
! if (!themesdir) themesdir = THEMESDIR;
|
|
||||||
! themebase = string(themesdir) + "/";
|
|
||||||
themeName = cfg->getOption("current_theme");
|
|
||||||
string::size_type pos;
|
|
||||||
if ((pos = themeName.find(",")) != string::npos) {
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user