aboutsummaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2010-12-31 17:35:17 +0000
committerRene Ladan <rene@FreeBSD.org>2010-12-31 17:35:17 +0000
commitb7d7206e331ee8ea7c04edf9d67d31e3c2200f2e (patch)
tree8af93908ea781b500c84a3f66c1a7e07b1642782 /security
parentb272f7cc9d952121fdfd294bd10287e62d113240 (diff)
downloadports-b7d7206e331ee8ea7c04edf9d67d31e3c2200f2e.tar.gz
ports-b7d7206e331ee8ea7c04edf9d67d31e3c2200f2e.zip
Notes
Diffstat (limited to 'security')
-rw-r--r--security/Makefile1
-rw-r--r--security/hostsentry/Makefile50
-rw-r--r--security/hostsentry/distinfo2
-rw-r--r--security/hostsentry/files/patch-Makefile27
-rw-r--r--security/hostsentry/files/patch-aa11
-rw-r--r--security/hostsentry/files/patch-hostSentryLog24
-rw-r--r--security/hostsentry/files/patch-hostsentry-conf35
-rw-r--r--security/hostsentry/pkg-descr5
-rw-r--r--security/hostsentry/pkg-message2
-rw-r--r--security/hostsentry/pkg-plist39
10 files changed, 0 insertions, 196 deletions
diff --git a/security/Makefile b/security/Makefile
index 192f12a3b533..f99ad16c8722 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -192,7 +192,6 @@
SUBDIR += hlfl
SUBDIR += hmap
SUBDIR += horde-jeta
- SUBDIR += hostsentry
SUBDIR += hotssh
SUBDIR += hs-SHA
SUBDIR += hs-digest
diff --git a/security/hostsentry/Makefile b/security/hostsentry/Makefile
deleted file mode 100644
index 3a4fda0a46dc..000000000000
--- a/security/hostsentry/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-# New ports collection makefile for: hostsentry
-# Date created: 7 February 2003
-# Whom: Andre Ramos <andre.ramos@netcabo.pt>
-#
-# $FreeBSD$
-#
-
-PORTNAME= hostsentry
-PORTVERSION= 0.02
-PORTREVISION= 2
-CATEGORIES= security
-MASTER_SITES= ftp://ftp.netsys.com/len/ \
- ${MASTER_SITE_PACKETSTORM}
-MASTER_SITE_SUBDIR= UNIX/IDS
-
-MAINTAINER= michael@ranner.eu
-COMMENT= A Login Anomaly Detector
-
-RUN_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/gdbm.so:${PORTSDIR}/databases/py-gdbm
-
-DEPRECATED= Project is dead.
-EXPIRATION_DATE=2010-12-31
-
-USE_PYTHON= yes
-
-PKGMESSAGE= ${WRKDIR}/pkg-message
-
-post-patch:
- @${SED} 's|%%PREFIX%%|${PREFIX}|' ${.CURDIR}/pkg-message > ${PKGMESSAGE}
- @${REINPLACE_CMD} -e "s,/usr/local,${PREFIX}," \
- ${WRKSRC}/*
- @${RM} ${WRKSRC}/*.bak
-
-post-install:
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/README.BUGS \
- ${WRKSRC}/README.credits \
- ${WRKSRC}/README.install \
- ${WRKSRC}/README.intro \
- ${WRKSRC}/README.modules \
- ${WRKSRC}/README.paper \
- ${WRKSRC}/README.technical \
- ${WRKSRC}/README.why_python \
- ${WRKSRC}/README.wtmp \
- ${DOCSDIR}
-.endif
- @${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.mk>
diff --git a/security/hostsentry/distinfo b/security/hostsentry/distinfo
deleted file mode 100644
index 57e0c78d114e..000000000000
--- a/security/hostsentry/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (hostsentry-0.02.tar.gz) = ae72db926a73b826617e8d2836f0f1b35c6cebaf43eaaa07ed9605e3111f9a81
-SIZE (hostsentry-0.02.tar.gz) = 33983
diff --git a/security/hostsentry/files/patch-Makefile b/security/hostsentry/files/patch-Makefile
deleted file mode 100644
index 4e1a0d7c276b..000000000000
--- a/security/hostsentry/files/patch-Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
---- Makefile.orig Thu Mar 25 23:06:01 1999
-+++ Makefile Sat Jul 3 22:03:13 2004
-@@ -4,7 +4,8 @@
- #
- # $Id: Makefile,v 1.4 1999/03/22 05:32:24 crowland Exp crowland $
-
--INSTALLDIR = /usr/local/abacus/hostsentry
-+INSTALLDIR = /usr/local/lib/hostsentry
-+CONFIGDIR = /usr/local/etc/hostsentry
-
-
- all:
-@@ -20,8 +21,13 @@
- @echo "Installing HostSentry in: $(INSTALLDIR)"
- install -d -g 0 -o root -m 0700 $(INSTALLDIR)
- install -d -g 0 -o root -m 0700 $(INSTALLDIR)/modules
-- install -g 0 -o root -m 0700 host* $(INSTALLDIR)
-+ install -g 0 -o root -m 0700 host*.py $(INSTALLDIR)
- install -g 0 -o root -m 0700 module* $(INSTALLDIR)/modules
-+ install -d -g 0 -o root -m 0700 $(CONFIGDIR)
-+ install -g 0 -o root -m 0600 hostsentry.action $(CONFIGDIR)/hostsentry.action-dist
-+ install -g 0 -o root -m 0600 hostsentry.conf $(CONFIGDIR)/hostsentry.conf-dist
-+ install -g 0 -o root -m 0600 hostsentry.ignore $(CONFIGDIR)/hostsentry.ignore-dist
-+ install -g 0 -o root -m 0600 hostsentry.modules $(CONFIGDIR)/hostsentry.modules-dist
- @echo ""
- @echo ""
-
diff --git a/security/hostsentry/files/patch-aa b/security/hostsentry/files/patch-aa
deleted file mode 100644
index fb50e7ffaeb9..000000000000
--- a/security/hostsentry/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- ../hostSentryConfig.py Thu Mar 25 22:06:01 1999
-+++ hostSentryConfig.py Sun Feb 9 14:49:38 2003
-@@ -35,7 +35,7 @@
-
- # This is the default config file. I'll make this more
- # accessible in the future.
--CONFIG='/usr/local/abacus/hostsentry/hostsentry.conf'
-+CONFIG='/usr/local/etc/hostsentry/hostsentry.conf'
-
- class hostSentryConfig(hostSentryCore):
-
diff --git a/security/hostsentry/files/patch-hostSentryLog b/security/hostsentry/files/patch-hostSentryLog
deleted file mode 100644
index ce02c7ba3ae2..000000000000
--- a/security/hostsentry/files/patch-hostSentryLog
+++ /dev/null
@@ -1,24 +0,0 @@
---- hostSentryLog.py.orig Sat Jul 3 21:56:35 2004
-+++ hostSentryLog.py Sat Jul 3 21:56:40 2004
-@@ -26,7 +26,7 @@
- #
- # $Id: hostSentryLog.py,v 1.1 1999/03/22 04:56:44 crowland Exp crowland $
-
--from hostSentryCore import *
-+#from hostSentryCore import *
- import sys
- import syslog
- import hostSentryConfig
-@@ -44,10 +44,9 @@
- if priority == '':
- priority = syslog.LOG_INFO
-
-- syslog.openlog('hostSentry', syslog.LOG_PID, priority)
-- syslog.syslog(message)
-+ syslog.openlog('hostSentry', syslog.LOG_PID, syslog.LOG_LOCAL1)
-+ syslog.syslog(priority, message)
- syslog.closelog()
--
-
- if __name__ == '__main__':
- log('Test log message')
diff --git a/security/hostsentry/files/patch-hostsentry-conf b/security/hostsentry/files/patch-hostsentry-conf
deleted file mode 100644
index f170f0f16a9a..000000000000
--- a/security/hostsentry/files/patch-hostsentry-conf
+++ /dev/null
@@ -1,35 +0,0 @@
---- hostsentry.conf.orig Sat Jul 3 20:59:32 2004
-+++ hostsentry.conf Sat Jul 3 21:00:39 2004
-@@ -27,13 +27,13 @@
- # $Id: hostsentry.conf,v 1.3 1999/03/25 22:05:44 crowland Exp crowland $
-
-
--IGNORE_FILE = "/usr/local/abacus/hostsentry/hostsentry.ignore"
--ACTION_FILE = "/usr/local/abacus/hostsentry/hostsentry.action"
--MODULE_FILE = "/usr/local/abacus/hostsentry/hostsentry.modules"
--MODULE_PATH = "/usr/local/abacus/hostsentry/modules"
-+IGNORE_FILE = "/usr/local/etc/hostsentry/hostsentry.ignore"
-+ACTION_FILE = "/usr/local/etc/hostsentry/hostsentry.action"
-+MODULE_FILE = "/usr/local/etc/hostsentry/hostsentry.modules"
-+MODULE_PATH = "/usr/local/lib/hostsentry/modules"
- WTMP_FILE = "/var/log/wtmp"
--DB_FILE = "/usr/local/abacus/hostsentry/hostsentry.db"
--DB_TTY_FILE = "/usr/local/abacus/hostsentry/hostsentry.tty.db"
-+DB_FILE = "/usr/local/etc/hostsentry/hostsentry.db"
-+DB_TTY_FILE = "/usr/local/etc/hostsentry/hostsentry.tty.db"
-
-
- # WTMP formats vary between Unices. As a result you need to let HostSentry
-@@ -70,10 +70,10 @@
- # I wrap native getutent() functions for Python.
- #
- # RedHat
--WTMP_FORMAT = "384/8:32/44:32/76:256"
-+#WTMP_FORMAT = "384/8:32/44:32/76:256"
- # Slackware
- #WTMP_FORMAT = "56/8:12/28:8/36:16"
- # BSD variants
--#WTMP_FORMAT = "36/0:8/8:8/16:16"
-+WTMP_FORMAT = "36/0:8/8:8/16:16"
-
-
diff --git a/security/hostsentry/pkg-descr b/security/hostsentry/pkg-descr
deleted file mode 100644
index eecf8b053e90..000000000000
--- a/security/hostsentry/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-HostSentry is a program to trace suspicious user's activity, unknown user
-logins and suspicious login domains, taking measures against compromised
-accounts and unethical user's behaviour.
-
-WWW: http://sourceforge.net/projects/sentrytools/
diff --git a/security/hostsentry/pkg-message b/security/hostsentry/pkg-message
deleted file mode 100644
index 29acd009cd27..000000000000
--- a/security/hostsentry/pkg-message
+++ /dev/null
@@ -1,2 +0,0 @@
-Edit %%PREFIX%%/etc/hostssentry/hostssentry.conf and change
-your settings if you haven't already.
diff --git a/security/hostsentry/pkg-plist b/security/hostsentry/pkg-plist
deleted file mode 100644
index 3921ef634080..000000000000
--- a/security/hostsentry/pkg-plist
+++ /dev/null
@@ -1,39 +0,0 @@
-etc/hostsentry/hostsentry.action-dist
-etc/hostsentry/hostsentry.conf-dist
-etc/hostsentry/hostsentry.ignore-dist
-etc/hostsentry/hostsentry.modules-dist
-lib/hostsentry/hostSentryConfig.py
-lib/hostsentry/hostSentryCore.py
-lib/hostsentry/hostSentryDB.py
-lib/hostsentry/hostSentryLog.py
-lib/hostsentry/hostSentryStat.py
-lib/hostsentry/hostSentryTTY.py
-lib/hostsentry/hostSentryTTYDB.py
-lib/hostsentry/hostSentryUser.py
-lib/hostsentry/hostSentryUtmp.py
-lib/hostsentry/hostsentry.py
-lib/hostsentry/modules/moduleExample.py
-lib/hostsentry/modules/moduleFirstLogin.py
-lib/hostsentry/modules/moduleForeignDomain.allow
-lib/hostsentry/modules/moduleForeignDomain.py
-lib/hostsentry/modules/moduleHistorySuspicious.py
-lib/hostsentry/modules/moduleHistoryTruncated.py
-lib/hostsentry/modules/moduleLoginLogout.py
-lib/hostsentry/modules/moduleMultipleLogins.allow
-lib/hostsentry/modules/moduleMultipleLogins.py
-lib/hostsentry/modules/moduleOddDirnames.py
-lib/hostsentry/modules/moduleRhostsCheck.py
-@dirrm lib/hostsentry/modules
-@unexec rm %D/lib/hostsentry/*.pyc 2>/dev/null || true
-@dirrm lib/hostsentry
-@unexec rmdir %D/etc/hostsentry 2>/dev/null || echo "If you are permanently removing this port, you should do a "rm -rf ${PKG_PREFIX}/etc/hostsentry" to remove any binary, configuration and log files left." | fmt
-%%PORTDOCS%%%%DOCSDIR%%/README.BUGS
-%%PORTDOCS%%%%DOCSDIR%%/README.credits
-%%PORTDOCS%%%%DOCSDIR%%/README.install
-%%PORTDOCS%%%%DOCSDIR%%/README.intro
-%%PORTDOCS%%%%DOCSDIR%%/README.modules
-%%PORTDOCS%%%%DOCSDIR%%/README.paper
-%%PORTDOCS%%%%DOCSDIR%%/README.technical
-%%PORTDOCS%%%%DOCSDIR%%/README.why_python
-%%PORTDOCS%%%%DOCSDIR%%/README.wtmp
-%%PORTDOCS%%@dirrm %%DOCSDIR%%