Browse Source

cleaned kiss.conf (and patch-level of the patches - which is now like

in any other package ...)


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2080 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
470deb33e8
6 changed files with 35 additions and 24 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +8
    -8
      package/base/kiss/eject_feature.patch
  3. +2
    -2
      package/base/kiss/hotfix.patch
  4. +18
    -8
      package/base/kiss/kiss.conf
  5. +2
    -2
      package/base/kiss/mount_typo_features.patch
  6. +4
    -4
      package/base/kiss/posix-fixes.patch

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -2,6 +2,7 @@
*) 2003-12-20 (2.0.0-rc3 - 2.0.0-rc4)
- enable apache's mod_deflate
- cleaned kiss.conf
*) 2003-12-28 (2.0.0-rc3 - 2.0.0-rc4)

+ 8
- 8
package/base/kiss/eject_feature.patch

@ -4,8 +4,8 @@ laptops (e.g. Apple ones) ...
- Rene Rebe <rene@rocklinux.org>
--- src/Makefile 1998-09-25 14:07:09.000000000 +0200
+++ src/Makefile 2003-12-24 21:47:07.000000000 +0100
--- ./src/Makefile 1998-09-25 14:07:09.000000000 +0200
+++ ./src/Makefile 2003-12-24 21:47:07.000000000 +0100
@@ -66,7 +66,7 @@
addstringstack.o expandtilde.o splitcmd.o addstringtostack.o \
dokill.o dogrep.o dochown.o dosleep.o expandbackquotes.o dols.o \
@ -15,8 +15,8 @@ laptops (e.g. Apple ones) ...
# entry point for making
foo:
--- src/doeject.c 1970-01-01 01:00:00.000000000 +0100
+++ src/doeject.c 2003-12-24 22:03:09.000000000 +0100
--- ./src/doeject.c 1970-01-01 01:00:00.000000000 +0100
+++ ./src/doeject.c 2003-12-24 22:03:09.000000000 +0100
@@ -0,0 +1,33 @@
+#include "kiss.h"
+
@ -51,8 +51,8 @@ laptops (e.g. Apple ones) ...
+ }
+ return (0);
+}
--- src/kiss.c 1998-09-25 14:07:10.000000000 +0200
+++ src/kiss.c 2003-12-24 21:34:31.000000000 +0100
--- ./src/kiss.c 1998-09-25 14:07:10.000000000 +0200
+++ ./src/kiss.c 2003-12-24 21:34:31.000000000 +0100
@@ -32,6 +32,7 @@
{ "chown", dochown, 0 },
{ "cp", docp, 0 },
@ -61,8 +61,8 @@ laptops (e.g. Apple ones) ...
{ "exec", doexec, 1 },
{ "exit", doquit, 1 },
{ "grep", dogrep, 0 },
--- srx/kiss.h 1998-09-25 14:07:10.000000000 +0200
+++ src/kiss.h 2003-12-24 21:33:24.000000000 +0100
--- ./srx/kiss.h 1998-09-25 14:07:10.000000000 +0200
+++ ./src/kiss.h 2003-12-24 21:33:24.000000000 +0100
@@ -194,6 +194,7 @@
extern int dochown (Stringstack s);
extern int docp (Stringstack s);

+ 2
- 2
package/base/kiss/hotfix.patch

@ -20,8 +20,8 @@
#
# --- ROCK-COPYRIGHT-NOTE-END ---
--- ./doprintenv.c.old Fri Oct 24 20:39:28 1997
+++ ./doprintenv.c Tue May 26 09:49:34 1998
--- ./src/doprintenv.c.old Fri Oct 24 20:39:28 1997
+++ ./src/doprintenv.c Tue May 26 09:49:34 1998
@@ -1,5 +1,7 @@
#include "kiss.h"

+ 18
- 8
package/base/kiss/kiss.conf

@ -20,23 +20,33 @@
#
# --- ROCK-COPYRIGHT-NOTE-END ---
main_kiss() {
kiss_extract() {
echo "Extracting double-compressed kiss-$ver.tar.gz.bz2 ... "
bunzip2 -dc $archdir/kiss-$ver.tar.gz.bz2 > $builddir/kiss-$ver.tar.gz
tar -xzf $builddir/kiss-$ver.tar.gz
cd kiss-$ver/src
cd kiss-$ver
hook_eval prepatch
apply_patchfiles
hook_eval postpatch
eval "$MAKE CC="$CC" STDLFLAGS='-s -static' bkiss"
cd src
}
kiss_pi() {
cp bkiss $root/bin/kiss
cd ..
cp ChangeLog doc/* $docdir
cp kiss.README kiss.lsm $docdir
chmod 0644 $docdir/*
for x in ChangeLog doc/* kiss.README kiss.lsm ; do
chmod 0644 $x
cp $x $docdir/
done
}
custmain="main_kiss"
autoextract=0
hook_add preconf 1 "kiss_extract"
hook_add postmake 3 "kiss_pi"
makeopt="CC='$CC' STDLFLAGS='-s -static' bkiss"
makeinstopt=""

+ 2
- 2
package/base/kiss/mount_typo_features.patch

@ -7,8 +7,8 @@ as a remount possibility in rescue conditions ;-)
- Rene Rebe <rene@rocklinux.org>
--- src/domount.c 1998-09-25 14:07:09.000000000 +0200
+++ src/domount.c 2003-12-24 16:16:17.000000000 +0100
--- ./src/domount.c 1998-09-25 14:07:09.000000000 +0200
+++ ./src/domount.c 2003-12-24 16:16:17.000000000 +0100
@@ -2,27 +2,34 @@
int domount (Stringstack s)

+ 4
- 4
package/base/kiss/posix-fixes.patch

@ -27,8 +27,8 @@ and more secure.
Rene Rebe <rene@rocklinux.org>
diff -ur kiss-0.21/src/doread.c src.kiss.-1.25906.3396530713/kiss-0.21/src/doread.c
--- kiss-0.21/doread.c 1998-09-25 14:07:09.000000000 +0200
+++ kiss-0.21/doread.c 2003-08-17 23:54:10.000000000 +0200
--- kiss-0.21/src/doread.c 1998-09-25 14:07:09.000000000 +0200
+++ kiss-0.21/src/doread.c 2003-08-17 23:54:10.000000000 +0200
@@ -17,11 +17,11 @@
for (cp = s.str [1]; *cp; cp++)
if (! isupper (*cp))
@ -44,8 +44,8 @@ diff -ur kiss-0.21/src/doread.c src.kiss.-1.25906.3396530713/kiss-0.21/src/dorea
return (0);
}
diff -ur kiss-0.21/src/runcmd.c src.kiss.-1.25906.3396530713/kiss-0.21/src/runcmd.c
--- kiss-0.21/runcmd.c 1998-09-25 14:07:10.000000000 +0200
+++ kiss-0.21/runcmd.c 2003-08-17 23:11:35.000000000 +0200
--- kiss-0.21/src/runcmd.c 1998-09-25 14:07:10.000000000 +0200
+++ kiss-0.21/src/runcmd.c 2003-08-17 23:11:35.000000000 +0200
@@ -1,5 +1,7 @@
#include "kiss.h"

Loading…
Cancel
Save