slim: Update to 1.3.6

This commit is contained in:
Eelco Dolstra 2013-10-15 12:51:41 +02:00
parent 347132478b
commit 1d634b4388
2 changed files with 41 additions and 54 deletions

View File

@ -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 = {

View File

@ -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); + char *cfgfile = getenv("SLIM_CFGFILE");
string themebase = ""; + if (!cfgfile) cfgfile = CFGFILE;
string themefile = ""; + cfg->readConf(cfgfile);
string themedir = ""; string themebase = "";
--- 113,121 ---- string themefile = "";
string themedir = "";
// Read configuration and theme @@ -208,7 +210,9 @@
cfg = new Cfg; if (testing) {
! char *cfgfile = getenv("SLIM_CFGFILE"); themeName = testtheme;
! if (!cfgfile) cfgfile = CFGFILE; } else {
! cfg->readConf(cfgfile); - themebase = string(THEMESDIR) + "/";
string themebase = ""; + char *themesdir = getenv("SLIM_THEMESDIR");
string themefile = ""; + if (!themesdir) themesdir = THEMESDIR;
string themedir = ""; + themebase = string(themesdir) + "/";
*************** themeName = cfg->getOption("current_theme");
*** 121,127 **** string::size_type pos;
if (testing) { if ((pos = themeName.find(",")) != string::npos) {
themeName = testtheme;
} 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) {