diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 22:09:30 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 22:09:30 -0500 |
commit | 8c5a1e98a3d0b995390511305964e364bdf61dfb (patch) | |
tree | 19ba36b8b69b4c5e0a11d4352a352171749de20d /network | |
parent | 3230c51ab9719bf4978c0e9cd13c4bace927a9da (diff) |
network/ipscan: Removed (no maintainer)
Diffstat (limited to 'network')
-rw-r--r-- | network/ipscan/README | 26 | ||||
-rw-r--r-- | network/ipscan/copyright | 22 | ||||
-rw-r--r-- | network/ipscan/doinst.sh | 13 | ||||
-rw-r--r-- | network/ipscan/ipscan | 2 | ||||
-rw-r--r-- | network/ipscan/ipscan.SlackBuild | 98 | ||||
-rw-r--r-- | network/ipscan/ipscan.desktop | 10 | ||||
-rw-r--r-- | network/ipscan/ipscan.info | 10 | ||||
-rw-r--r-- | network/ipscan/ipscan.png | bin | 10422 -> 0 bytes | |||
-rw-r--r-- | network/ipscan/slack-desc | 19 |
9 files changed, 0 insertions, 200 deletions
diff --git a/network/ipscan/README b/network/ipscan/README deleted file mode 100644 index 2be6fec76283..000000000000 --- a/network/ipscan/README +++ /dev/null @@ -1,26 +0,0 @@ -ipscan (fast and friendly network scanner) - -Angry IP Scanner (or simply ipscan) is an open-source and -cross-platform network scanner designed to be fast and simple to use. -It scans IP addresses and ports as well as has many other features. - -It is widely used by network administrators and just curious users -around the world including large and small enterprises, banks, and -government agencies. - -It runs on Linux, Windows, and Mac OS X, possibly supporting other -platforms as well. - -Angry IP scanner simply pings each IP address to check if it's alive, -then optionally it is resolving its hostname, determines the MAC -address, scans ports, etc. The amount of gathered data about each host -can be extended with plugins. - -It also has additional features, like NetBIOS information (computer -name, workgroup name, and currently logged in Windows user), favorite -IP address ranges, web server detection, customizable openers, etc. - -Scanning results can be saved to CSV, TXT, XML or IP-Port list files. -With help of plugins, Angry IP Scanner can gather any information -about scanned IPs. Anybody who can write Java code is able to write -plugins and extend functionality of Angry IP Scanner. diff --git a/network/ipscan/copyright b/network/ipscan/copyright deleted file mode 100644 index 38cd3860481c..000000000000 --- a/network/ipscan/copyright +++ /dev/null @@ -1,22 +0,0 @@ -Angry IP Scanner is copyright 2004-2011 Anton Keks and others. -Development is hosted on http://ipscan.sourceforge.net - -License: GPLv2+ - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - -See /usr/share/common-licenses/GPL-2, or -<http://www.gnu.org/copyleft/gpl.txt> for the terms of the latest version -of the GNU General Public License. diff --git a/network/ipscan/doinst.sh b/network/ipscan/doinst.sh deleted file mode 100644 index aea0f894eb32..000000000000 --- a/network/ipscan/doinst.sh +++ /dev/null @@ -1,13 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -if [ -x /usr/bin/update-mime-database ]; then - /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 -fi - -if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi diff --git a/network/ipscan/ipscan b/network/ipscan/ipscan deleted file mode 100644 index 51f6ca2f5345..000000000000 --- a/network/ipscan/ipscan +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -java -jar /usr/share/ipscan/ipscan*.jar "$@" diff --git a/network/ipscan/ipscan.SlackBuild b/network/ipscan/ipscan.SlackBuild deleted file mode 100644 index 9049345fa0e1..000000000000 --- a/network/ipscan/ipscan.SlackBuild +++ /dev/null @@ -1,98 +0,0 @@ -#!/bin/sh -# -# Slackware build script for ipscan. -# -# Copyright 2015-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil. -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=ipscan -VERSION=${VERSION:-3.6.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -SRCNAM="ipscan-linux" - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -rm -rf $TMP/$PRGNAM-$VERSION -cd $TMP -mkdir $PRGNAM-$VERSION -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -install -Dm755 $CWD/$PRGNAM $PKG/usr/bin/$PRGNAM -install -Dm644 $CWD/ipscan.desktop $PKG/usr/share/applications/ipscan.desktop -install -Dm644 $CWD/ipscan.png $PKG/usr/share/pixmaps/ipscan.png - -install -d $PKG/usr/share/$PRGNAM - -if [ "$ARCH" = "i586" ]; then - cp $CWD/$SRCNAM-$VERSION.jar $PKG/usr/share/$PRGNAM -elif [ "$ARCH" = "x86_64" ]; then - cp $CWD/$SRCNAM$LIBDIRSUFFIX-$VERSION.jar $PKG/usr/share/$PRGNAM -fi - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp $CWD/copyright $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM-SlackBuild - -mkdir -p $PKG/install -cat $CWD/doinst.sh > $PKG/install/doinst.sh -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/ipscan/ipscan.desktop b/network/ipscan/ipscan.desktop deleted file mode 100644 index 6f51d5bf3d3a..000000000000 --- a/network/ipscan/ipscan.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Name=Angry IP Scanner -GenericName=Fast and friendly network scanner -Exec=/usr/bin/ipscan -Terminal=false -Type=Application -Icon=ipscan -Categories=Network; -StartupWMClass=Angry IP Scanner -StartupNotify=true diff --git a/network/ipscan/ipscan.info b/network/ipscan/ipscan.info deleted file mode 100644 index 619544ea6e7a..000000000000 --- a/network/ipscan/ipscan.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="ipscan" -VERSION="3.6.2" -HOMEPAGE="https://github.com/angryziber/ipscan/" -DOWNLOAD="https://github.com/angryip/ipscan/releases/download/3.6.2/ipscan-linux-3.6.2.jar" -MD5SUM="d2610e9d01615e1eb86cd5df8895732f" -DOWNLOAD_x86_64="https://github.com/angryip/ipscan/releases/download/3.6.2/ipscan-linux64-3.6.2.jar" -MD5SUM_x86_64="35259a87425d5a11bd587f799031aace" -REQUIRES="jdk" -MAINTAINER="orphaned - no maintainer" -EMAIL="nobody@nowhere" diff --git a/network/ipscan/ipscan.png b/network/ipscan/ipscan.png Binary files differdeleted file mode 100644 index ec9059f9e19b..000000000000 --- a/network/ipscan/ipscan.png +++ /dev/null diff --git a/network/ipscan/slack-desc b/network/ipscan/slack-desc deleted file mode 100644 index ee6abe086f9d..000000000000 --- a/network/ipscan/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -ipscan: ipscan (fast and friendly network scanner) -ipscan: -ipscan: Angry IP Scanner (or simply ipscan) is an open-source and -ipscan: cross-platform network scanner designed to be fast and simple to use. -ipscan: It scans IP addresses and ports as well as has many other features. -ipscan: -ipscan: Home page: https://github.com/angryziber/ipscan/ -ipscan: -ipscan: -ipscan: -ipscan: |