summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Dave Woodfall2022-03-01 22:32:17 +0100
committer Willy Sudiarto Raharjo2022-03-03 10:25:42 +0100
commite764918d61b9f8a052de0cb0b9be549fe2c69a02 (patch)
tree21e7ea9eab2b2587417a536614ca3bbce4f612ad
parent105ebbe6765c170b3fbb9fc9f6fb14134b6ec6f1 (diff)
downloadslackbuilds-e764918d61b9f8a052de0cb0b9be549fe2c69a02.tar.gz
network/linuxdcpp: Removed.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--network/linuxdcpp/README2
-rw-r--r--network/linuxdcpp/doinst.sh9
-rw-r--r--network/linuxdcpp/linuxdcpp.SlackBuild104
-rw-r--r--network/linuxdcpp/linuxdcpp.desktop11
-rw-r--r--network/linuxdcpp/linuxdcpp.info10
-rw-r--r--network/linuxdcpp/slack-desc19
6 files changed, 0 insertions, 155 deletions
diff --git a/network/linuxdcpp/README b/network/linuxdcpp/README
deleted file mode 100644
index 3801c90513..0000000000
--- a/network/linuxdcpp/README
+++ /dev/null
@@ -1,2 +0,0 @@
-linuxdcpp is an Unix/Linux port of the DC++ client.
-It's a client for direct connect P2P networks.
diff --git a/network/linuxdcpp/doinst.sh b/network/linuxdcpp/doinst.sh
deleted file mode 100644
index a692890106..0000000000
--- a/network/linuxdcpp/doinst.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications
-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/linuxdcpp/linuxdcpp.SlackBuild b/network/linuxdcpp/linuxdcpp.SlackBuild
deleted file mode 100644
index cd98ae127b..0000000000
--- a/network/linuxdcpp/linuxdcpp.SlackBuild
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for linuxdcpp
-#
-# Copyright 2007 Niklas "Nille" Åkerström
-# 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.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=linuxdcpp
-VERSION=${VERSION:-1.1.0}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS -fpermissive -std=gnu++98" \
-scons \
- PREFIX=/usr \
- FAKE_ROOT=$PKG \
- debug=no \
- release=no \
- profile=no
-
-scons install
-
-find $PKG | xargs 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/share/applications
-cat $CWD/linuxdcpp.desktop > $PKG/usr/share/applications/linuxdcpp.desktop
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/doc/$PRGNAM/* $PKG/usr/doc/$PRGNAM-$VERSION
-rm -rf $PKG/usr/share/doc
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/network/linuxdcpp/linuxdcpp.desktop b/network/linuxdcpp/linuxdcpp.desktop
deleted file mode 100644
index 732e10d7c0..0000000000
--- a/network/linuxdcpp/linuxdcpp.desktop
+++ /dev/null
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=Linux DC++
-Comment=DC++ Linux client
-Exec=linuxdcpp
-Icon=linuxdcpp
-Terminal=false
-Type=Application
-Categories=Network;
-GenericName=P2P client
-GenericName[sv]=P2P klient
-Comment[sv]=DC++ Linux klient
diff --git a/network/linuxdcpp/linuxdcpp.info b/network/linuxdcpp/linuxdcpp.info
deleted file mode 100644
index 2361c28c20..0000000000
--- a/network/linuxdcpp/linuxdcpp.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="linuxdcpp"
-VERSION="1.1.0"
-HOMEPAGE="https://launchpad.net/linuxdcpp"
-DOWNLOAD="http://launchpad.net/linuxdcpp/1.1/1.1.0/+download/linuxdcpp-1.1.0.tar.bz2"
-MD5SUM="037de708bdb1e5dd7ac6c359b0e2c1a0"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Niklas 'Nille' Åkerström"
-EMAIL="nille.kungen[AT]gmail.com"
diff --git a/network/linuxdcpp/slack-desc b/network/linuxdcpp/slack-desc
deleted file mode 100644
index ca6ce14764..0000000000
--- a/network/linuxdcpp/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------------------------------------------------------|
-linuxdcpp: linuxdcpp (linux dc plus plus)
-linuxdcpp:
-linuxdcpp: linuxdcpp is an Unix/Linux port of the DC++ client.
-linuxdcpp: It's a client for direct connect P2P networks.
-linuxdcpp:
-linuxdcpp: Homepage: http://linuxdcpp.berlios.de
-linuxdcpp:
-linuxdcpp:
-linuxdcpp:
-linuxdcpp:
-linuxdcpp: