primary distsite and homepage have gone away; also do a minor style
cleanup while here
This commit is contained in:
parent
43d3edd170
commit
079ba6a4e2
@ -1,13 +1,11 @@
|
|||||||
# $OpenBSD: Makefile,v 1.5 2002/01/24 06:48:03 jsyn Exp $
|
# $OpenBSD: Makefile,v 1.6 2002/03/25 06:30:38 jsyn Exp $
|
||||||
|
|
||||||
COMMENT= "passive network mapping tool"
|
COMMENT= "passive network mapping tool"
|
||||||
|
|
||||||
DISTNAME= siphon-v.666
|
DISTNAME= siphon-v.666
|
||||||
PKGNAME= siphon-0.666
|
PKGNAME= siphon-0.666
|
||||||
CATEGORIES= security net
|
CATEGORIES= security net
|
||||||
NEED_VERSION= 1.504
|
NEED_VERSION= 1.515
|
||||||
|
|
||||||
HOMEPAGE= http://www.gravitino.net/projects/siphon/
|
|
||||||
|
|
||||||
MAINTAINER= Jason Peel <jsyn@openbsd.org>
|
MAINTAINER= Jason Peel <jsyn@openbsd.org>
|
||||||
|
|
||||||
@ -16,8 +14,7 @@ PERMIT_PACKAGE_FTP= Yes
|
|||||||
PERMIT_DISTFILES_CDROM= Yes
|
PERMIT_DISTFILES_CDROM= Yes
|
||||||
PERMIT_DISTFILES_FTP= Yes
|
PERMIT_DISTFILES_FTP= Yes
|
||||||
|
|
||||||
MASTER_SITES= http://www.gravitino.net/projects/siphon/ \
|
MASTER_SITES= http://siphon.datanerds.net/ \
|
||||||
http://siphon.datanerds.net/ \
|
|
||||||
${MASTER_SITE_PACKETSTORM}
|
${MASTER_SITE_PACKETSTORM}
|
||||||
MASTER_SITE_SUBDIR= UNIX/utilities
|
MASTER_SITE_SUBDIR= UNIX/utilities
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $OpenBSD: DEINSTALL,v 1.2 2001/06/30 00:52:20 lebel Exp $
|
# $OpenBSD: DEINSTALL,v 1.3 2002/03/25 06:30:38 jsyn Exp $
|
||||||
#
|
#
|
||||||
# siphon de-installation
|
# siphon de-installation
|
||||||
|
|
||||||
@ -8,13 +8,13 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|||||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||||
CONFIG_FILE=${SYSCONFDIR}/osprints.conf
|
CONFIG_FILE=${SYSCONFDIR}/osprints.conf
|
||||||
|
|
||||||
if [ -f $CONFIG_FILE ]; then
|
if [ -f ${CONFIG_FILE} ]; then
|
||||||
echo
|
echo
|
||||||
echo "+---------------"
|
echo "+---------------"
|
||||||
echo "| To completely deinstall the $1 package you need to perform"
|
echo "| To completely deinstall the $1 package you need to perform"
|
||||||
echo "| this step as root:"
|
echo "| this step as root:"
|
||||||
echo "|"
|
echo "|"
|
||||||
echo "| rm -f $CONFIG_FILE"
|
echo "| rm -f ${CONFIG_FILE}"
|
||||||
echo "|"
|
echo "|"
|
||||||
echo "| Do not do this if you plan on re-installing $1"
|
echo "| Do not do this if you plan on re-installing $1"
|
||||||
echo "| at some future time."
|
echo "| at some future time."
|
||||||
|
@ -10,5 +10,3 @@ intrusion detection systems. In fact, we send out no packets at
|
|||||||
all. Whereas nmap crashes some machines and network hardware when
|
all. Whereas nmap crashes some machines and network hardware when
|
||||||
performing its active OS detection tests, Siphon would never crash
|
performing its active OS detection tests, Siphon would never crash
|
||||||
remote machines. Siphon is available for UNIX and Win32.
|
remote machines. Siphon is available for UNIX and Win32.
|
||||||
|
|
||||||
WWW: ${HOMEPAGE}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $OpenBSD: INSTALL,v 1.3 2001/07/05 23:24:18 jsyn Exp $
|
# $OpenBSD: INSTALL,v 1.4 2002/03/25 06:30:38 jsyn Exp $
|
||||||
#
|
#
|
||||||
# Pre/post-installation setup of siphon
|
# Pre/post-installation setup of siphon
|
||||||
|
|
||||||
@ -9,15 +9,15 @@ set -e
|
|||||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||||
CONFIG_FILE=${SYSCONFDIR}/osprints.conf
|
CONFIG_FILE=${SYSCONFDIR}/osprints.conf
|
||||||
SAMPLE_CONFIG_DIR=$PREFIX/share/examples/siphon
|
SAMPLE_CONFIG_DIR=${PREFIX}/share/examples/siphon
|
||||||
|
|
||||||
do_notice()
|
do_notice()
|
||||||
{
|
{
|
||||||
echo
|
echo
|
||||||
echo "+---------------"
|
echo "+---------------"
|
||||||
echo "| The existing $1 configuration file in $CONFIG_FILE,"
|
echo "| The existing $1 configuration file in ${CONFIG_FILE},"
|
||||||
echo "| has NOT been changed. You may want to compare it to the"
|
echo "| has NOT been changed. You may want to compare it to the"
|
||||||
echo "| current sample file in $SAMPLE_CONFIG_DIR,"
|
echo "| current sample file in ${SAMPLE_CONFIG_DIR},"
|
||||||
echo "| and update your configuration as needed."
|
echo "| and update your configuration as needed."
|
||||||
echo "+---------------"
|
echo "+---------------"
|
||||||
echo
|
echo
|
||||||
@ -25,12 +25,12 @@ do_notice()
|
|||||||
|
|
||||||
do_install()
|
do_install()
|
||||||
{
|
{
|
||||||
install -o root -g wheel -m 644 $SAMPLE_CONFIG_DIR/osprints.conf \
|
install -o root -g wheel -m 644 ${SAMPLE_CONFIG_DIR}/osprints.conf \
|
||||||
$CONFIG_FILE
|
${CONFIG_FILE}
|
||||||
echo
|
echo
|
||||||
echo "+---------------"
|
echo "+---------------"
|
||||||
echo "| The $1 configuration file has been installed at"
|
echo "| The $1 configuration file has been installed at"
|
||||||
echo "| $CONFIG_FILE. Please view this file and change the configuration"
|
echo "| ${CONFIG_FILE}. Please view this file and change the configuration"
|
||||||
echo "| to meet your needs."
|
echo "| to meet your needs."
|
||||||
echo "+---------------"
|
echo "+---------------"
|
||||||
echo
|
echo
|
||||||
@ -50,7 +50,7 @@ case $2 in
|
|||||||
: nothing to pre-install for this port
|
: nothing to pre-install for this port
|
||||||
;;
|
;;
|
||||||
POST-INSTALL)
|
POST-INSTALL)
|
||||||
if [ ! -f $CONFIG_FILE ]; then
|
if [ ! -f ${CONFIG_FILE} ]; then
|
||||||
do_install $1
|
do_install $1
|
||||||
else
|
else
|
||||||
do_notice $1
|
do_notice $1
|
||||||
|
Loading…
Reference in New Issue
Block a user