summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-03-06 17:58:25 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-03-06 17:58:25 +0000
commit25198e9968a005ec53192f75be3e2d24674f37bd (patch)
treeb2299ee3bc4e8e8a8fddd84c5f99a0710c40b5a9 /shells
parentSupport stage (diff)
Remove a broken and abandonware
Notes
Notes: svn path=/head/; revision=347289
Diffstat (limited to 'shells')
-rw-r--r--shells/Makefile1
-rw-r--r--shells/wapsh/Makefile111
-rw-r--r--shells/wapsh/distinfo2
-rw-r--r--shells/wapsh/files/htshd.in20
-rw-r--r--shells/wapsh/files/patch-htshd::htshd.c15
-rw-r--r--shells/wapsh/files/pkg-message.in13
-rw-r--r--shells/wapsh/pkg-descr19
-rw-r--r--shells/wapsh/pkg-plist98
8 files changed, 0 insertions, 279 deletions
diff --git a/shells/Makefile b/shells/Makefile
index 57225c07ec30..eaba4252ee2d 100644
--- a/shells/Makefile
+++ b/shells/Makefile
@@ -40,7 +40,6 @@
SUBDIR += v7sh
SUBDIR += viewglob
SUBDIR += vshnu
- SUBDIR += wapsh
SUBDIR += zoidberg
SUBDIR += zsh
diff --git a/shells/wapsh/Makefile b/shells/wapsh/Makefile
deleted file mode 100644
index 655c576ffcd1..000000000000
--- a/shells/wapsh/Makefile
+++ /dev/null
@@ -1,111 +0,0 @@
-# Created by: George Reid <greid@ukug.uk.freebsd.org>
-# $FreeBSD$
-
-PORTNAME= wapsh
-PORTVERSION= 1.0.1
-CATEGORIES= shells
-MASTER_SITES= http://www.exolution.de/geschaeft/produkte/wapsh/
-DISTNAME= ${PORTNAME}_${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A system to allow remote shell logins via a WAP phone or web browser
-
-USE_RC_SUBR= htshd
-
-WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/}
-
-SUB_FILES= pkg-message
-
-USERGUIDEDOCS= Image10.jpg Image11.jpg Image12.jpg Image13.jpg \
- Image14.jpg Image15.jpg Image16.jpg Image17.jpg \
- Image18.jpg Image19.jpg Image20.jpg Image21.jpg \
- Image22.jpg Image23.jpg Image24.jpg Image25.gif \
- Image26.jpg Image27.jpg Image28.jpg Image29.jpg \
- Image30.jpg Image31.jpg Image32.jpg Image33.jpg \
- Image34.jpg Image35.jpg Image36.jpg Image37.jpg \
- Image38.jpg Image39.jpg Image4.gif Image40.jpg \
- Image41.jpg Image42.jpg Image43.jpg Image44.jpg \
- Image45.jpg Image46.jpg Image47.jpg Image48.jpg \
- Image49.jpg Image5.gif Image50.gif Image51.jpg \
- Image52.jpg Image53.gif Image54.jpg Image55.jpg \
- Image56.jpg Image6.jpg Image7.jpg Image8.jpg \
- Image9.jpg index.html
-
-HTDOCS= command.php command_html.inc command_wml.inc \
- common.inc common_html.inc common_wml.inc \
- controls_wml.php displayfuncs.inc getloginhosts.inc \
- history_edit_wml.php history_html.php history_wml.php \
- login_html.php login_wml.php scroll_wml.php \
- shortcuts_wml.php index.html
-
-NO_STAGE= yes
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} > 900007
-BROKEN= fails to build with new utmpx
-.endif
-
-post-patch:
- @${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/htshd/htshd.c > ${WRKDIR}/foo && \
- ${MV} ${WRKDIR}/foo ${WRKSRC}/htshd/htshd.c
-
-do-build:
- (cd ${WRKSRC}/htshd && ${CC} ${CFLAGS} -o htshd htshd.c -lcrypt \
- -lutil -DUSE_DEV_RANDOM=1 -DHAVE_SETENV)
-
-pre-install:
- @${ECHO_MSG} "----------------------------------------------------------------"
- @${ECHO_MSG} "Set WWWDIR to the location of your web server's document root"
- @${ECHO_MSG} ""
- @${ECHO_MSG} "${PORTNAME} will be installed under \$$WWWDIR/"
- @${ECHO_MSG} ""
- @${ECHO_MSG} "The current value of WWWDIR is: ${WWWDIR}"
- @${ECHO_MSG} ""
- @${ECHO_MSG} "Press CTRL+C now to change it."
- @${ECHO_MSG} "----------------------------------------------------------------"
- @sleep 2
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/htshd/htshd ${PREFIX}/sbin
-
- ${MKDIR} ${PREFIX}/etc/wapsh
-.for C in htsh_profile htshd.conf loginhosts
- ${INSTALL_DATA} ${WRKSRC}/sample/$C ${PREFIX}/etc/wapsh/$C.dist
- if [ ! -e ${PREFIX}/etc/wapsh/$C ]; then \
- ${CP} ${PREFIX}/etc/wapsh/$C.dist \
- ${PREFIX}/etc/wapsh/$C; \
- fi
-.endfor
-
- ${MKDIR} ${WWWDIR}
-.for H in ${HTDOCS}
- ${INSTALL_DATA} ${WRKSRC}/htdocs/$H ${WWWDIR}
-.endfor
- ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
-
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}/admin_guide
- ${MKDIR} ${DOCSDIR}/implementation_notes
- ${MKDIR} ${DOCSDIR}/user_guide
-.for B in Image1.jpg Image2.jpg Image3.jpg index.html qpl.html
- ${INSTALL_DATA} ${WRKSRC}/docs/html/$B ${DOCSDIR}
-.endfor
- ${INSTALL_DATA} ${WRKSRC}/docs/html/admin_guide/index.html \
- ${DOCSDIR}/admin_guide
-.for I in index.html image57.gif
- ${INSTALL_DATA} ${WRKSRC}/docs/html/implementation_notes/$I \
- ${DOCSDIR}/implementation_notes
-.endfor
-.for U in ${USERGUIDEDOCS}
- ${INSTALL_DATA} ${WRKSRC}/docs/html/user_guide/$U \
- ${DOCSDIR}/user_guide
-.endfor
-.endif #if !defined(NOPORTDOCS)
-
-post-install:
- @${ECHO} "updating /etc/services"
- @${CP} /etc/services /etc/services.bak
- @(${GREP} -v ^htsh /etc/services.bak; ${ECHO_CMD} "htsh 3001/tcp # htsh/wapsh server") > /etc/services
- @${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.post.mk>
diff --git a/shells/wapsh/distinfo b/shells/wapsh/distinfo
deleted file mode 100644
index 2648bb76260a..000000000000
--- a/shells/wapsh/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (wapsh_1.0.1.tar.gz) = 49ee84ed6e92e747931a090a2804d933bac31f4c92eda66ee091ad9698d5aef7
-SIZE (wapsh_1.0.1.tar.gz) = 3547292
diff --git a/shells/wapsh/files/htshd.in b/shells/wapsh/files/htshd.in
deleted file mode 100644
index 92a8a0a9e62f..000000000000
--- a/shells/wapsh/files/htshd.in
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# $FreeBSD$
-#
-# PROVIDE: htshd
-# REQUIRE: DAEMON
-# BEFORE: LOGIN
-
-. /etc/rc.subr
-
-name="htshd"
-rcvar=htshd_enable
-load_rc_config $name
-
-htshd_enable=${htshd_enable:-"NO"}
-
-command="%%PREFIX%%/sbin/htshd"
-required_files="%%PREFIX%%/etc/wapsh/htshd.conf"
-
-run_rc_command "$1"
diff --git a/shells/wapsh/files/patch-htshd::htshd.c b/shells/wapsh/files/patch-htshd::htshd.c
deleted file mode 100644
index 8af522dd3581..000000000000
--- a/shells/wapsh/files/patch-htshd::htshd.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- htshd/htshd.c.orig Fri Nov 24 15:46:01 2000
-+++ htshd/htshd.c Tue Nov 18 18:03:33 2003
-@@ -97,10 +97,10 @@
- #define SERVICE_NAME "htsh" /* Should be in /etc/services
- on login and http server hosts */
-
--#define CONFIG_FILE "/etc/htshd.conf"
-+#define CONFIG_FILE "/usr/local/etc/wapsh/htshd.conf"
- /* Default name of startup config file */
-
--#define GLOBAL_RC_FILE "/etc/htsh_profile"
-+#define GLOBAL_RC_FILE "/usr/local/etc/wapsh/htsh_profile"
- /* Default name of global user
- initialisation file */
- #define RCFILE ".htshrc" /* Name of user-specific initialisation file
diff --git a/shells/wapsh/files/pkg-message.in b/shells/wapsh/files/pkg-message.in
deleted file mode 100644
index 34083969a931..000000000000
--- a/shells/wapsh/files/pkg-message.in
+++ /dev/null
@@ -1,13 +0,0 @@
-------------------------------------------------------------------------
-wapsh/htsh is now installed.
-
-Sample configuration files can be found in %%PREFIX%%/etc/wapsh
-
-HTML documentation has been installed in %%PREFIX%%/share/doc/wapsh
-
-PHP scripts for both HTTP and WAP access have been installed in
-%%WWWDIR%%
-
-Please read the installed documentation for information on how to create
-the configuration files.
-------------------------------------------------------------------------
diff --git a/shells/wapsh/pkg-descr b/shells/wapsh/pkg-descr
deleted file mode 100644
index 417249fedaff..000000000000
--- a/shells/wapsh/pkg-descr
+++ /dev/null
@@ -1,19 +0,0 @@
-htsh/wapsh is a system implemented by exolution GmbH which allows
-users to login to a Unix shell on a remote host using a web browser
-or WAP phone (in the latter incarnation, htsh is also called wapsh).
-
-The following phones and emulators have been successfully tested with
-htsh:
- * Nokia 6210
- * Nokia 7110
- * Motorola Timeport P7389
- * Siemens C35 and S35, S45, S55
- * Samsung SCH-20
- * Sony CMD-J5
- * Nokia WAP Toolkit 2.0 "Blueprint" phone emulator
- * UP.Simulator 4.0 from Phone.com
-
-We welcome feedback (at wapsh@exolution.de) from users about their
-experiences using other phone types.
-
-WWW: http://www.exolution.de/geschaeft/produkte/wapsh.en.htm
diff --git a/shells/wapsh/pkg-plist b/shells/wapsh/pkg-plist
deleted file mode 100644
index bca2225b24d8..000000000000
--- a/shells/wapsh/pkg-plist
+++ /dev/null
@@ -1,98 +0,0 @@
-sbin/htshd
-@unexec if cmp -s %D/etc/wapsh/htsh_profile %D/etc/wapsh/htsh_profile.dist; then rm -f %D/etc/wapsh/htsh_profile; fi
-etc/wapsh/htsh_profile.dist
-@exec [ -f %B/htsh_profile ] || cp %B/%f %B/htsh_profile
-@unexec if cmp -s %D/etc/wapsh/htshd.conf %D/etc/wapsh/htshd.conf.dist; then rm -f %D/etc/wapsh/htshd.conf; fi
-etc/wapsh/htshd.conf.dist
-@exec [ -f %B/htshd.conf ] || cp %B/%f %B/htshd.conf
-@unexec if cmp -s %D/etc/wapsh/loginhosts %D/etc/wapsh/loginhosts.dist; then rm -f %D/etc/wapsh/loginhosts; fi
-etc/wapsh/loginhosts.dist
-@exec [ -f %B/loginhosts ] || cp %B/%f %B/loginhosts
-%%WWWDIR%%/command.php
-%%WWWDIR%%/command_html.inc
-%%WWWDIR%%/command_wml.inc
-%%WWWDIR%%/common.inc
-%%WWWDIR%%/common_html.inc
-%%WWWDIR%%/common_wml.inc
-%%WWWDIR%%/controls_wml.php
-%%WWWDIR%%/displayfuncs.inc
-%%WWWDIR%%/getloginhosts.inc
-%%WWWDIR%%/history_edit_wml.php
-%%WWWDIR%%/history_html.php
-%%WWWDIR%%/history_wml.php
-%%WWWDIR%%/index.html
-%%WWWDIR%%/login_html.php
-%%WWWDIR%%/login_wml.php
-%%WWWDIR%%/scroll_wml.php
-%%WWWDIR%%/shortcuts_wml.php
-%%PORTDOCS%%%%DOCSDIR%%/Image1.jpg
-%%PORTDOCS%%%%DOCSDIR%%/Image2.jpg
-%%PORTDOCS%%%%DOCSDIR%%/Image3.jpg
-%%PORTDOCS%%%%DOCSDIR%%/admin_guide/index.html
-%%PORTDOCS%%%%DOCSDIR%%/implementation_notes/image57.gif
-%%PORTDOCS%%%%DOCSDIR%%/implementation_notes/index.html
-%%PORTDOCS%%%%DOCSDIR%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/qpl.html
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image10.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image11.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image12.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image13.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image14.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image15.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image16.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image17.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image18.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image19.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image20.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image21.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image22.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image23.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image24.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image25.gif
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image26.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image27.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image28.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image29.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image30.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image31.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image32.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image33.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image34.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image35.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image36.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image37.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image38.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image39.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image4.gif
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image40.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image41.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image42.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image43.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image44.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image45.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image46.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image47.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image48.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image49.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image5.gif
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image50.gif
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image51.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image52.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image53.gif
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image54.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image55.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image56.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image6.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image7.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image8.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/Image9.jpg
-%%PORTDOCS%%%%DOCSDIR%%/user_guide/index.html
-@exec echo "updating /etc/services"; cp /etc/services /etc/services.bak; (grep -v ^htsh /etc/services.bak ; echo "htsh 3001/tcp # htsh/wapsh server") > /etc/services
-@unexec echo "updating /etc/services"; cp /etc/services /etc/services.bak; (grep -v ^htsh /etc/services.bak ) > /etc/services
-@dirrm etc/wapsh
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/admin_guide
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/implementation_notes
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/user_guide
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@dirrm %%WWWDIR%%
-@dirrmtry www/data