From e196cc5d04965dc652a0095a8c01fa7662ae9a8c Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Sun, 23 Sep 2012 12:58:57 -0500 Subject: network/gogoc: Removed (see remainder of commit message) From: Willy Sudiarto Raharjo Subject: gogoc Date: Sun, 23 Sep 2012 21:04:22 +0700 I wanted to test gogoc, but i didn't find the upstream URL on the gogoc.info i searched the Internet and found this http://www.gogo6.com/profile/gogoCLIENT, but it requires login to download the application Signed-off-by: Robby Workman --- network/gogoc/README | 8 ---- network/gogoc/doinst.sh | 26 ----------- network/gogoc/gogoc.SlackBuild | 98 ------------------------------------------ network/gogoc/gogoc.info | 10 ----- network/gogoc/rc.gogoc | 30 ------------- network/gogoc/slack-desc | 19 -------- 6 files changed, 191 deletions(-) delete mode 100644 network/gogoc/README delete mode 100644 network/gogoc/doinst.sh delete mode 100644 network/gogoc/gogoc.SlackBuild delete mode 100644 network/gogoc/gogoc.info delete mode 100644 network/gogoc/rc.gogoc delete mode 100644 network/gogoc/slack-desc diff --git a/network/gogoc/README b/network/gogoc/README deleted file mode 100644 index b0dd1a2c9353..000000000000 --- a/network/gogoc/README +++ /dev/null @@ -1,8 +0,0 @@ -This software allows you to create and maintain an IPv6 tunnel if you don't -have native IPv6 connectivity. - -If you wish to maintain a static IPv6 address, you *must* register a Freenet6 -account and edit /etc/gogoc.conf with the account you configured. - -Information on the Freenet6 tunnelbroker and a link to the registration process -is at http://gogonet.gogo6.com/page/freenet6-tunnelbroker diff --git a/network/gogoc/doinst.sh b/network/gogoc/doinst.sh deleted file mode 100644 index bcbe2d5df5aa..000000000000 --- a/network/gogoc/doinst.sh +++ /dev/null @@ -1,26 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -preserve_perms() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - if [ -e $OLD ]; then - cp -a $OLD ${NEW}.incoming - cat $NEW > ${NEW}.incoming - mv ${NEW}.incoming $NEW - fi - config $NEW -} - -preserve_perms etc/rc.d/rc.gogoc.new -config etc/gogoc.conf.new diff --git a/network/gogoc/gogoc.SlackBuild b/network/gogoc/gogoc.SlackBuild deleted file mode 100644 index 3a310825e19c..000000000000 --- a/network/gogoc/gogoc.SlackBuild +++ /dev/null @@ -1,98 +0,0 @@ -#!/bin/sh - -# Slackware build script for gogoCLIENT (gogoc) - -# Written by Michael Johnson - -PRGNAM=gogoc -VERSION=${VERSION:-1.2_RELEASE} -TARVERSION=${TARVERSION:-1_2-RELEASE} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 # Exit on most errors - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$TARVERSION -tar xvf $CWD/$PRGNAM-$TARVERSION.tar.gz -cd $PRGNAM-$TARVERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -make -make installdir=$PKG/usr install - -# Copy run script into package destination -mkdir -p $PKG/etc/rc.d -cp $CWD/rc.gogoc $PKG/etc/rc.d/rc.gogoc.new - -# Move config file into /etc -( cd $PKG - mv usr/bin/gogoc.conf etc/gogoc.conf.new - rm usr/bin/gogoc.conf.sample -# Move template area into /var/lib - mkdir -p var/lib/gogoc - mv usr/template var/lib/gogoc/ -) - -# Fix config file -sed -e "s+$PKG/usr+/var/lib/gogoc+" -i $PKG/etc/gogoc.conf.new - -# Strip binaries and libraries -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -# Compress man pages -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - -# Copy the slack-desc and a custom doinst.sh into ./install -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CLIENT-LICENSE.TXT GUI-LICENSE.TXT INSTALL README \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# Copy the slack-desc (and a custom doinst.sh if necessary) into ./install -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -# Make the package -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/gogoc/gogoc.info b/network/gogoc/gogoc.info deleted file mode 100644 index e5df63b77fa3..000000000000 --- a/network/gogoc/gogoc.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="gogoc" -VERSION="1.2_RELEASE" -HOMEPAGE="homepage of application" -DOWNLOAD="http://gogo6.com/downloads/gogoc-1_2-RELEASE.tar.gz" -MD5SUM="41177ed683cf511cc206c7782c37baa9" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Michael Johnson" -EMAIL="youngmug@animeneko.net" diff --git a/network/gogoc/rc.gogoc b/network/gogoc/rc.gogoc deleted file mode 100644 index b76fdf5edbe7..000000000000 --- a/network/gogoc/rc.gogoc +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -# Start/stop/restart the Freenet6 Client - -# Comment this out if you don't want the client to auto-accept the server cert -AUTOACCEPT="-y" - - -gogoc_start() { - /usr/bin/gogoc -b -f /etc/gogoc.conf $AUTOACCEPT -} - -gogoc_stop() { - killall gogoc -} - -case "$1" in -'start') - gogoc_start - ;; -'stop') - gogoc_stop - ;; -'restart') - gogoc_stop - gogoc_start - ;; -*) - echo "usage $0 start|stop|restart" -esac - diff --git a/network/gogoc/slack-desc b/network/gogoc/slack-desc deleted file mode 100644 index 4e4ecb4ea652..000000000000 --- a/network/gogoc/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------------------------------------------------------| -gogoc: gogoc (gogo6 Freenet6 Client aka gogoCLIENT) -gogoc: -gogoc: The Freenet6 Client allows connection to gogo6's Freenet6 service. -gogoc: -gogoc: Freenet6 Tunneling is an IPv6 access service offered to the community -gogoc: for free. This service enables thousands of people from all over the -gogoc: world to experience the best solution for a smooth and incremental -gogoc: deployment of IPv6. Freenet6 users can get IPv6 connectivity from -gogoc: anywhere, including from behind any NAT device or from outside -gogoc: of their home network. -gogoc: -- cgit v1.2.3