Browse Source

Clifford Wolf <clifford@clifford.at>:

- Fixed ncurses in stage 9 (some more one-step-install.patch stuff)


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1729 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Clifford Wolf 21 years ago
parent
commit
757a6819db
3 changed files with 40 additions and 13 deletions
  1. +17
    -0
      Documentation/Developers/CHANGELOG-CLIFFORD
  2. +0
    -9
      Documentation/Developers/CHANGELOG-RENE
  3. +23
    -4
      package/base/ncurses/one-step-install.patch

+ 17
- 0
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

+ 0
- 9
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

+ 23
- 4
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

Loading…
Cancel
Save