diff options
author | wiz <wiz@pkgsrc.org> | 2018-08-20 05:21:04 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2018-08-20 05:21:04 +0000 |
commit | 40c8b8336514c185743202f0c5a9a07e616b97f1 (patch) | |
tree | f8dd44a7dcd29988788876574b3a67321251bb67 /chat/inspircd/files | |
parent | c32c1d5ac10bc3e2ce155fea7672462c3616515f (diff) | |
download | pkgsrc-40c8b8336514c185743202f0c5a9a07e616b97f1.tar.gz |
inspircd*: remove outdated programs by request of author
Too old and vulnerable. Newer versions could be packaged.
(see pkgsrc-users post from Peter Powell)
Diffstat (limited to 'chat/inspircd/files')
-rw-r--r-- | chat/inspircd/files/inspircd.sh | 48 | ||||
-rw-r--r-- | chat/inspircd/files/openssl.pc | 11 |
2 files changed, 0 insertions, 59 deletions
diff --git a/chat/inspircd/files/inspircd.sh b/chat/inspircd/files/inspircd.sh deleted file mode 100644 index 59091e7a1f5..00000000000 --- a/chat/inspircd/files/inspircd.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!@RCD_SCRIPTS_SHELL@ -# -# $NetBSD: inspircd.sh,v 1.1.1.1 2007/07/24 20:13:20 adrianp Exp $ -# -# PROVIDE: inspircd -# REQUIRE: DAEMON -# KEYWORD: shutdown -# - -if [ -f /etc/rc.subr ] -then - . /etc/rc.subr -fi - -name="inspircd" -rcvar=${name} -command="@PREFIX@/bin/inspircd" -required_files="@PKG_SYSCONFDIR@/inspircd.conf" -pidfile="@VARBASE@/run/inspircd/inspircd.pid" -inspircd_user="@INSPIRCD_USER@" -inspircd_group="@INSPIRCD_GROUP@" -command_args="--logfile @VARBASE@/log/inspircd.log" -extra_commands="rehash" -rehash_cmd="inspircd_rehash" -start_precmd="inspircd_precmd" - -inspircd_precmd() -{ - if [ ! -d @VARBASE@/run/inspircd ]; then - @MKDIR@ @VARBASE@/run/inspircd - @CHMOD@ 0750 @VARBASE@/run/inspircd - @CHOWN@ @INSPIRCD_USER@:@INSPIRCD_GROUP@ @VARBASE@/run/inspircd - fi - - if [ ! -f @VARBASE@/log/inspircd.log ]; then - @TOUCH@ @VARBASE@/log/inspircd.log - @CHMOD@ 0640 @VARBASE@/log/inspircd.log - @CHOWN@ @INSPIRCD_USER@:@INSPIRCD_GROUP@ @VARBASE@/log/inspircd.log - fi -} - -inspircd_rehash() -{ - kill -HUP `@CAT@ $pidfile` -} - -load_rc_config $name -run_rc_command "$1" diff --git a/chat/inspircd/files/openssl.pc b/chat/inspircd/files/openssl.pc deleted file mode 100644 index 3ee6bfd395c..00000000000 --- a/chat/inspircd/files/openssl.pc +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@SSLBASE@ -exec_prefix=${prefix} -libdir=${exec_prefix}/lib -includedir=${prefix}/include - -Name: OpenSSL -Description: Secure Sockets Layer and cryptography libraries and tools -Version: @SSLVER@ -Requires: -Libs: -L${libdir} -lssl -lcrypto -Wl,-R@SSLBASE@/lib -Cflags: -I${includedir} |