diff --git a/Documentation/Developers/CHANGELOG-CLIFFORD b/Documentation/Developers/CHANGELOG-CLIFFORD index 94d002fef..10c141a9e 100644 --- a/Documentation/Developers/CHANGELOG-CLIFFORD +++ b/Documentation/Developers/CHANGELOG-CLIFFORD @@ -1,4 +1,21 @@ +*) 2003-11-10 (2.0.0-rc2 - 2.0.0-rc3) + + - Fixed ncurses in stage 9 (some more one-step-install.patch stuff) + +*) 2003-11-09 (2.0.0-rc2 - 2.0.0-rc3) + + - Added Check-Deps-3 and added a dependency-counter to Create-ErrList + - Fixed bacterium_gui in bacterium package for newer gnu linker + - Fixed isdn4k-utils (link order) + - Fixed yp-tools (shared files with net-tools) + +*) 2003-11-07 (2.0.0-rc2 - 2.0.0-rc3) + + - Added package calltree (nice for understanding e.g. linux kernel) + - Mine/gasgui "Full install" fix (bug reported by daja77) + - Stone: only look in module files for main menu entries + *) 2003-09-29 (2.0.0-rc1 - 2.0.0-rc2) - Auto-remove CVS and .svn directories in $srcdir diff --git a/Documentation/Developers/CHANGELOG-RENE b/Documentation/Developers/CHANGELOG-RENE index d5a9f8445..e55bf8746 100644 --- a/Documentation/Developers/CHANGELOG-RENE +++ b/Documentation/Developers/CHANGELOG-RENE @@ -1,11 +1,6 @@ *) 2003-11-10 (2.0.0-rc2 - 2.0.0-rc3) - - Clifford Wolf: added Check-Deps-3 and added a dependency-counter to - Create-ErrList - fixed bacterium_gui in bacterium package for newer gnu linker - fixed isdn4k-utils (link order) - fixed yp-tools (shared files with net-tools) - Andreas V. Meier: activate MD devices during bootup *) 2003-11-09 (2.0.0-rc2 - 2.0.0-rc3) @@ -15,10 +10,6 @@ *) 2003-11-08 (2.0.0-rc2 - 2.0.0-rc3) - - Clifford Wolf: added package calltree (nice for understanding e.g. linux - kernel) - mine/gasgui "Full install" fix (bug reported by daja77) - stone: only look in module files for main menu entries - Alejandro Mery: added activation of volume groups at init.d/system - Sebastian Czech: updated epiphany (1.0.5) - enabled open-jade and pilot-link for the desktop target diff --git a/package/base/ncurses/one-step-install.patch b/package/base/ncurses/one-step-install.patch index e12d10b4b..c70b905a9 100644 --- a/package/base/ncurses/one-step-install.patch +++ b/package/base/ncurses/one-step-install.patch @@ -1,6 +1,16 @@ ---- ./mk-1st.awk.orig 2002-04-20 20:32:47.000000000 +0300 -+++ ./mk-1st.awk 2003-09-22 16:15:38.000000000 +0300 -@@ -224,8 +224,7 @@ +--- ./mk-1st.awk.orig 2002-04-20 19:32:47.000000000 +0200 ++++ ./mk-1st.awk 2003-11-10 09:04:39.651894512 +0100 +@@ -52,8 +52,7 @@ + # + function symlink(src,dst) { + if ( src != dst ) { +- printf "rm -f %s; ", dst +- printf "$(LN_S) %s %s; ", src, dst ++ printf "$(LN_S) -f %s %s; ", src, dst + } + } + function rmlink(directory, dst) { +@@ -224,8 +223,7 @@ src_name = sprintf("../lib/%s", end_name); dst_name = sprintf("$(DESTDIR)$(libdir)/%s", end_name); printf "\t@echo installing %s as %s\n", src_name, dst_name @@ -9,4 +19,13 @@ + printf "\tinstall %s %s\n", src_name, dst_name sharedlinks("$(DESTDIR)$(libdir)") - diff -Nru3 trunk-1418/package/base/liblockfile/force-symlink.patch trunk/package/base/liblockfile/force-symlink.patch + +@@ -235,7 +233,7 @@ + { + ovr_name = sprintf("libcurses%s", suffix) + printf "\t@echo linking %s to %s\n", end_name, ovr_name +- printf "\tcd $(DESTDIR)$(libdir) && (rm -f %s; $(LN_S) %s %s; )\n", ovr_name, end_name, ovr_name ++ printf "\t$(LN_S) -f %s $(DESTDIR)$(libdir)/%s\n", end_name, ovr_name + } + if ( ldconfig != "" ) { + printf "\t- test -z \"$(DESTDIR)\" && %s\n", ldconfig