summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2012-07-31 13:55:06 +0000
committerMichael Palimaka <kensington@gentoo.org>2012-07-31 13:55:06 +0000
commit5d71a4f8dca2df79381c6cfe26eaf7939ca8d71e (patch)
treeb5b85bcaae43312838671284f3ce839acd13e630 /www-servers/webfs
parentAdd latest versions of gPodder2 and gPodder3, thanks to contributors in bug #... (diff)
downloadgentoo-2-5d71a4f8dca2df79381c6cfe26eaf7939ca8d71e.tar.gz
gentoo-2-5d71a4f8dca2df79381c6cfe26eaf7939ca8d71e.tar.bz2
gentoo-2-5d71a4f8dca2df79381c6cfe26eaf7939ca8d71e.zip
Remove old.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'www-servers/webfs')
-rw-r--r--www-servers/webfs/ChangeLog6
-rw-r--r--www-servers/webfs/files/webfs.initd30
-rw-r--r--www-servers/webfs/webfs-1.21-r1.ebuild43
3 files changed, 5 insertions, 74 deletions
diff --git a/www-servers/webfs/ChangeLog b/www-servers/webfs/ChangeLog
index 8a68e306e896..695982dccf55 100644
--- a/www-servers/webfs/ChangeLog
+++ b/www-servers/webfs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-servers/webfs
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/webfs/ChangeLog,v 1.28 2012/07/29 18:15:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/webfs/ChangeLog,v 1.29 2012/07/31 13:55:06 kensington Exp $
+
+ 31 Jul 2012; Michael Palimaka <kensington@gentoo.org> -files/webfs.initd,
+ -webfs-1.21-r1.ebuild:
+ Remove old.
29 Jul 2012; Raúl Porcel <armin76@gentoo.org> webfs-1.21-r1.ebuild,
webfs-1.21-r2.ebuild:
diff --git a/www-servers/webfs/files/webfs.initd b/www-servers/webfs/files/webfs.initd
deleted file mode 100644
index 8c97440373b5..000000000000
--- a/www-servers/webfs/files/webfs.initd
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/webfs/files/webfs.initd,v 1.2 2007/02/28 22:57:00 bangert Exp $
-
-depend() {
- need net
-}
-
-start() {
- WEBFS_OPTS="-p ${WEBFS_PORT:-80} -f ${WEBFS_INDEX:-index.html} ${WEBFS_OPTS}"
- [[ -n "${WEBFS_DOCROOT}" ]] && WEBFS_OPTS="${WEBFS_OPTS} -r ${WEBFS_DOCROOT}"
- [[ -n "${WEBFS_CHROOT}" ]] && WEBFS_OPTS="${WEBFS_OPTS} -R ${WEBFS_CHROOT}"
- [[ -n "${WEBFS_LOG}" ]] && WEBFS_OPTS="${WEBFS_OPTS} -L ${WEBFS_LOG}"
- [[ -n "${WEBFS_MAXCONN}" ]] && WEBFS_OPTS="${WEBFS_OPTS} -c ${WEBFS_MAXCONN}"
- [[ -n "${WEBFS_IPV6}" ]] && WEBFS_OPTS="${WEBFS_OPTS} -6"
- [[ -n "${WEBFS_SSL}" ]] && WEBFS_OPTS="${WEBFS_OPTS} -S"
- [[ -n "${WEBFS_SERVNAME}" ]] && WEBFS_OPTS="${WEBFS_OPTS} -n ${WEBFS_SERVNAME}"
- [[ -n "${WEBFS_DIR_LIST}" ]] || WEBFS_OPTS="${WEBFS_OPTS} -j"
-
- ebegin "Starting webfsd"
- start-stop-daemon --start --quiet --exec /usr/bin/webfsd -- ${WEBFS_OPTS}
- eend $? "Failed to start webfsd"
-}
-
-stop() {
- ebegin "Stopping webfsd"
- start-stop-daemon --stop --quiet --name webfsd --exec /usr/bin/webfsd
- eend $? "Failed to stop webfsd"
-}
diff --git a/www-servers/webfs/webfs-1.21-r1.ebuild b/www-servers/webfs/webfs-1.21-r1.ebuild
deleted file mode 100644
index 1c383d412fc8..000000000000
--- a/www-servers/webfs/webfs-1.21-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/webfs/webfs-1.21-r1.ebuild,v 1.7 2012/07/29 18:15:51 armin76 Exp $
-
-inherit eutils
-
-DESCRIPTION="Lightweight HTTP server for static content"
-SRC_URI="http://dl.bytesex.org/releases/${PN}/${P}.tar.gz"
-HOMEPAGE="http://linux.bytesex.org/misc/webfs.html"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="ssl threads"
-
-DEPEND="ssl? ( dev-libs/openssl )"
-
-RDEPEND="${DEPEND}
- app-misc/mime-types"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/webfs-1.21-Variables.mk-dont-strip-binaries-on-install.patch"
-}
-
-src_compile() {
- local myconf
- use ssl || myconf="${myconf} USE_SSL=no"
- use threads && myconf="${myconf} USE_THREADS=yes"
-
- emake prefix=/usr ${myconf} || die "emake failed"
-}
-
-src_install() {
- local myconf
- use ssl || myconf="${myconf} USE_SSL=no"
- use threads && myconf="${myconf} USE_THREADS=yes"
- einstall ${myconf} mandir="${D}/usr/share/man" || die "make install failed"
- newinitd "${FILESDIR}"/${PN}.initd ${PN} || die "newinitd failed"
- newconfd "${FILESDIR}"/${PN}.confd ${PN} || die "newconfd failed"
- dodoc README
-}