summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-fs/lufs/files')
-rw-r--r--sys-fs/lufs/files/digest-lufs-0.7.01
-rw-r--r--sys-fs/lufs/files/digest-lufs-0.8.0-r11
-rw-r--r--sys-fs/lufs/files/digest-lufs-0.9.51
-rw-r--r--sys-fs/lufs/files/digest-lufs-0.9.7-r21
-rw-r--r--sys-fs/lufs/files/gentoo-gcc332fix-0.9.7.patch12
-rw-r--r--sys-fs/lufs/files/lufs-0.7.0-init24
-rw-r--r--sys-fs/lufs/files/lufs-0.8.0-init24
-rw-r--r--sys-fs/lufs/files/lufs-0.9.3-init27
8 files changed, 0 insertions, 91 deletions
diff --git a/sys-fs/lufs/files/digest-lufs-0.7.0 b/sys-fs/lufs/files/digest-lufs-0.7.0
deleted file mode 100644
index 6f30d7a3320e..000000000000
--- a/sys-fs/lufs/files/digest-lufs-0.7.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b2523519b90ff4d77861f243c843f608 lufs-0.7.0.tar.gz 287792
diff --git a/sys-fs/lufs/files/digest-lufs-0.8.0-r1 b/sys-fs/lufs/files/digest-lufs-0.8.0-r1
deleted file mode 100644
index 93fcf0b2d34c..000000000000
--- a/sys-fs/lufs/files/digest-lufs-0.8.0-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 0a90155e92d0bff030017b3a370def8b lufs-0.8.0.tar.gz 345135
diff --git a/sys-fs/lufs/files/digest-lufs-0.9.5 b/sys-fs/lufs/files/digest-lufs-0.9.5
deleted file mode 100644
index 78e58894f03f..000000000000
--- a/sys-fs/lufs/files/digest-lufs-0.9.5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 71dc7c5709952b50914ab9790d652230 lufs-0.9.5.tar.gz 412920
diff --git a/sys-fs/lufs/files/digest-lufs-0.9.7-r2 b/sys-fs/lufs/files/digest-lufs-0.9.7-r2
deleted file mode 100644
index 54c98d3ea5f8..000000000000
--- a/sys-fs/lufs/files/digest-lufs-0.9.7-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 23f58fe232254a65df6eb4736a81d524 lufs-0.9.7.tar.gz 537772
diff --git a/sys-fs/lufs/files/gentoo-gcc332fix-0.9.7.patch b/sys-fs/lufs/files/gentoo-gcc332fix-0.9.7.patch
deleted file mode 100644
index 8f7a2ab113fd..000000000000
--- a/sys-fs/lufs/files/gentoo-gcc332fix-0.9.7.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- lufs-0.9.7-orig/filesystems/sshfs/sshfs.cpp.orig 2003-11-26 03:03:02.000000000 +0100
-+++ lufs-0.9.7/filesystems/sshfs/sshfs.cpp 2003-11-26 03:04:08.000000000 +0100
-@@ -345,7 +345,8 @@
- if(!handle.size())
- return -1;
-
-- handles.push_back((struct atbl){string(file), handle, time(NULL), mode});
-+ struct atbl ni = {string(file), handle, time(NULL), mode};
-+ handles.push_back(ni);
-
- TRACE(handles.size() << " files still opened.");
-
diff --git a/sys-fs/lufs/files/lufs-0.7.0-init b/sys-fs/lufs/files/lufs-0.7.0-init
deleted file mode 100644
index 1723f880e796..000000000000
--- a/sys-fs/lufs/files/lufs-0.7.0-init
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/runscript
-
-# lufsd
-#
-# description: LUFS Userspace Daemon
-#
-# processname: lufs
-# chkconfig: - 91 91
-
-depend () {
- need localmount
-}
-
-start () {
- echo -n "Starting lufsd... "
- su - lufs -c "lufsd -d 2>~/lufsd.err >~/lufsd.log"
- echo
-}
-
-stop () {
- echo -n "Shutting down lufsd... "
- killall lufsd
- echo
-}
diff --git a/sys-fs/lufs/files/lufs-0.8.0-init b/sys-fs/lufs/files/lufs-0.8.0-init
deleted file mode 100644
index 1723f880e796..000000000000
--- a/sys-fs/lufs/files/lufs-0.8.0-init
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/runscript
-
-# lufsd
-#
-# description: LUFS Userspace Daemon
-#
-# processname: lufs
-# chkconfig: - 91 91
-
-depend () {
- need localmount
-}
-
-start () {
- echo -n "Starting lufsd... "
- su - lufs -c "lufsd -d 2>~/lufsd.err >~/lufsd.log"
- echo
-}
-
-stop () {
- echo -n "Shutting down lufsd... "
- killall lufsd
- echo
-}
diff --git a/sys-fs/lufs/files/lufs-0.9.3-init b/sys-fs/lufs/files/lufs-0.9.3-init
deleted file mode 100644
index 011ae995693f..000000000000
--- a/sys-fs/lufs/files/lufs-0.9.3-init
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/runscript
-
-# lufsd
-#
-# description: LUFS Userspace Daemon
-#
-# processname: lufs
-# chkconfig: - 91 91
-#
-# lufsd is started by the lufs user, and logs are kept in its homedir.
-#
-
-depend () {
- need localmount
-}
-
-start () {
- ebegin "Starting lufsd"
- su - lufs -c "lufsd -d 2>~/lufsd.err >~/lufsd.log"
- eend $? "Error starting lufsd"
-}
-
-stop () {
- ebegin "Stopping lufsd"
- pkill lufsd
- eend $? "Error stopping lufsd"
-}