summaryrefslogtreecommitdiff
path: root/www-servers/hiawatha/files
diff options
context:
space:
mode:
Diffstat (limited to 'www-servers/hiawatha/files')
-rw-r--r--www-servers/hiawatha/files/hiawatha-9.5-cflags.patch17
-rw-r--r--www-servers/hiawatha/files/hiawatha.initd-r125
-rw-r--r--www-servers/hiawatha/files/hiawatha.service9
3 files changed, 0 insertions, 51 deletions
diff --git a/www-servers/hiawatha/files/hiawatha-9.5-cflags.patch b/www-servers/hiawatha/files/hiawatha-9.5-cflags.patch
deleted file mode 100644
index 4ff33cd0d126..000000000000
--- a/www-servers/hiawatha/files/hiawatha-9.5-cflags.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From: Julian Ospald <hasufell@gentoo.org>
-Date: Fri May 23 16:59:33 UTC 2014
-Subject: make optimization level build-type dependant
-
---- hiawatha-9.5/CMakeLists.txt
-+++ hiawatha-9.5/CMakeLists.txt
-@@ -2,7 +2,9 @@
- project(Hiawatha C)
-
- # Compiler
--set(CMAKE_C_FLAGS "-O2 -Wall -Wextra ${CMAKE_C_FLAGS}")
-+set(CMAKE_C_FLAGS "-Wall -Wextra ${CMAKE_C_FLAGS}")
-+set(CMAKE_C_FLAGS_RELEASE "-O2")
-+set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2")
- set(CMAKE_BUILD_TYPE "RelWithDebInfo")
-
- # Options
diff --git a/www-servers/hiawatha/files/hiawatha.initd-r1 b/www-servers/hiawatha/files/hiawatha.initd-r1
deleted file mode 100644
index a6ebb0d64c4b..000000000000
--- a/www-servers/hiawatha/files/hiawatha.initd-r1
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon \
- --start \
- --exec "/usr/sbin/hiawatha" \
- --pidfile "@HIAWATHA_PID_DIR@/hiawatha.pid"
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon \
- --stop \
- --exec "/usr/sbin/hiawatha" \
- --pidfile "@HIAWATHA_PID_DIR@/hiawatha.pid"
- eend $?
-}
diff --git a/www-servers/hiawatha/files/hiawatha.service b/www-servers/hiawatha/files/hiawatha.service
deleted file mode 100644
index 35e740b7e390..000000000000
--- a/www-servers/hiawatha/files/hiawatha.service
+++ /dev/null
@@ -1,9 +0,0 @@
-[Unit]
-Description=Hiawatha webserver
-After=network.target
-
-[Service]
-ExecStart=/usr/sbin/hiawatha -d
-
-[Install]
-WantedBy=multi-user.target