summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-ftp/uftp/files')
-rw-r--r--net-ftp/uftp/files/uftp-2.10.3-hardcoded.patch19
-rw-r--r--net-ftp/uftp/files/uftpd.conf15
-rw-r--r--net-ftp/uftp/files/uftpd.init21
3 files changed, 0 insertions, 55 deletions
diff --git a/net-ftp/uftp/files/uftp-2.10.3-hardcoded.patch b/net-ftp/uftp/files/uftp-2.10.3-hardcoded.patch
deleted file mode 100644
index 7c579354e..000000000
--- a/net-ftp/uftp/files/uftp-2.10.3-hardcoded.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- makefile.orig 2010-01-08 21:00:08.308682429 +0100
-+++ makefile 2010-01-08 21:01:19.164681390 +0100
-@@ -4,7 +4,6 @@
- CC = gcc
- OPTIONS=-g -Wall
- LDLIBS=-lc -lm
--CFLAGS=
-
- # FreeBSD
- ifeq ("FreeBSD", "$(UNAME_S)")
-@@ -22,7 +21,7 @@
- # Linux
- ifeq ("Linux", "$(UNAME_S)")
- LDLIBS=-lm
--CFLAGS=`getconf LFS_CFLAGS`
-+CFLAGS += `getconf LFS_CFLAGS`
- endif
-
- UFTP_OBJ=uftp.o uftp_common.o
diff --git a/net-ftp/uftp/files/uftpd.conf b/net-ftp/uftp/files/uftpd.conf
deleted file mode 100644
index 5787d3b88..000000000
--- a/net-ftp/uftp/files/uftpd.conf
+++ /dev/null
@@ -1,15 +0,0 @@
-# /etc/conf.d/uftpd: config file for /etc/init.d/uftpd
-
-# Options for uftpd
-# see manpage uftpd(1) for other options
-# -L logfile : logfile location
-# -n : prevent name resolution
-# -D dir : destination directory
-# -T dir : directory for temporary files during transfer
-# -I iface : interface to listen on (accepts interface name, IP or hostname)
-# -M addr : public multicast addresses to listen on (comma-separated)
-
-UFTPD_OPTS="-D /var/tmp/uftpd -L /var/log/uftpd/uftpd.log -I 127.0.0.1"
-
-# PID File
-PIDFILE="/var/run/uftpd/uftpd.pid"
diff --git a/net-ftp/uftp/files/uftpd.init b/net-ftp/uftp/files/uftpd.init
deleted file mode 100644
index 910e62986..000000000
--- a/net-ftp/uftp/files/uftpd.init
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-depend() {
- use net
-}
-
-start() {
- ebegin "Starting uftpd"
- start-stop-daemon --start --pidfile "${PIDFILE}" --user nobody \
- --exec /usr/sbin/uftpd -- -P "${PIDFILE}" ${UFTPD_OPTS}
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping uftpd"
- start-stop-daemon --stop --pidfile "${PIDFILE}" --exec /usr/sbin/uftpd
- eend ${?}
-}