From a27ba789b09cfec011935e02a76ecab730837ec1 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Sun, 1 Dec 2013 01:30:56 -0600 Subject: network/nateon: Removed (no SBo maintainer) Signed-off-by: Robby Workman --- network/nateon/README | 2 - network/nateon/doinst.sh | 9 ----- network/nateon/knateon.patch | 60 ---------------------------- network/nateon/nateon.SlackBuild | 86 ---------------------------------------- network/nateon/nateon.info | 10 ----- network/nateon/slack-desc | 19 --------- 6 files changed, 186 deletions(-) delete mode 100644 network/nateon/README delete mode 100644 network/nateon/doinst.sh delete mode 100644 network/nateon/knateon.patch delete mode 100644 network/nateon/nateon.SlackBuild delete mode 100644 network/nateon/nateon.info delete mode 100644 network/nateon/slack-desc (limited to 'network') diff --git a/network/nateon/README b/network/nateon/README deleted file mode 100644 index 7d17a66291..0000000000 --- a/network/nateon/README +++ /dev/null @@ -1,2 +0,0 @@ -nate provides an instant messenger service called nateon. -This is the linux version of the messenger program. diff --git a/network/nateon/doinst.sh b/network/nateon/doinst.sh deleted file mode 100644 index 3e5691a052..0000000000 --- a/network/nateon/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 >/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 usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi diff --git a/network/nateon/knateon.patch b/network/nateon/knateon.patch deleted file mode 100644 index 4ba4d01716..0000000000 --- a/network/nateon/knateon.patch +++ /dev/null @@ -1,60 +0,0 @@ ---- nateon-1.2/nateon/knateon.cpp.orig 2012-09-23 21:32:04.881311086 +0700 -+++ nateon-1.2/nateon/knateon.cpp 2012-09-23 21:32:16.785153870 +0700 -@@ -2490,20 +2490,20 @@ - - int nTID = m_pDPcon->putADSB(sCommand); - -- Buddy *pBuddy = new Buddy(); -- pBuddy->setFL( true ); -- pBuddy->setUID( sID ); -- pBuddy->setName( sID ); -- pBuddy->setNick( sID ); -+ Buddy *pBuddy2 = new Buddy(); -+ pBuddy2->setFL( true ); -+ pBuddy2->setUID( sID ); -+ pBuddy2->setName( sID ); -+ pBuddy2->setNick( sID ); - - /// TID를 저장하기 위해 임시로 사용됨. -- pBuddy->setHandle( "TID:" + QString::number(nTID) ); -+ pBuddy2->setHandle( "TID:" + QString::number(nTID) ); - - /// 수락을 받기 전에 버디에 추가 시킴. -- m_pBuddyList->addBuddy( pBuddy ); -+ m_pBuddyList->addBuddy( pBuddy2 ); - - /*! 0 그룹에 등록하기. */ -- m_pDPcon->setGroup0( pBuddy ); -+ m_pDPcon->setGroup0( pBuddy2 ); - - /*! - * 목록 refresh ---- nateon-1.2/nateon/knateonmainview.cpp.orig 2012-09-23 21:41:02.870430208 +0700 -+++ nateon-1.2/nateon/knateonmainview.cpp 2012-09-23 21:39:53.259320655 +0700 -@@ -1171,18 +1171,18 @@ - slotEmoticonList( stConfig.viewemoticonlist ); - } - } else { -- Buddy *pBuddy = new Buddy(); -- pBuddy->setFL( true ); -- pBuddy->setHandle( slCommand[3] ); -- pBuddy->setUID( slCommand[7] ); -- pBuddy->setName( slCommand[4] ); -- pBuddy->setNick( slCommand[7] ); -+ Buddy *pBuddy2 = new Buddy(); -+ pBuddy2->setFL( true ); -+ pBuddy2->setHandle( slCommand[3] ); -+ pBuddy2->setUID( slCommand[7] ); -+ pBuddy2->setName( slCommand[4] ); -+ pBuddy2->setNick( slCommand[7] ); - - /*! 그룹에 등록하기. */ - Group *pGroup = pGroupList->getGroupByID( slCommand[8] ); -- pGroup->addBuddy( pBuddy ); -+ pGroup->addBuddy( pBuddy2 ); - -- pBuddyList->addBuddy( pBuddy ); -+ pBuddyList->addBuddy( pBuddy2 ); - - /*! - * 목록 refresh diff --git a/network/nateon/nateon.SlackBuild b/network/nateon/nateon.SlackBuild deleted file mode 100644 index c539330a6e..0000000000 --- a/network/nateon/nateon.SlackBuild +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh - -# Slackware build script for nateon - -# Written by crocket (crockabiscuit@gmail.com) -# Updated by Willy Sudiarto Raharjo - -PRGNAM=nateon -VERSION=${VERSION:-1.2.0.326} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) 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 - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -mv $PRGNAM-$(echo $VERSION | cut -d. -f-2) $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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -patch -p1 < $CWD/knateon.patch - -mkdir -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release .. - make - make install DESTDIR=$PKG -cd .. - -( cd $PKG/usr; mkdir -p share/icons; mv hicolor locolor share/icons ) - -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 -a \ - AUTHORS BUGS INSTALL LICENSE NEWS README THANKS TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION -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:-tgz} - diff --git a/network/nateon/nateon.info b/network/nateon/nateon.info deleted file mode 100644 index 3498b6fa75..0000000000 --- a/network/nateon/nateon.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="nateon" -VERSION="1.2.0.326" -HOMEPAGE="http://kldp.net/projects/nateon/" -DOWNLOAD="http://www.kldp.net/frs/download.php/5966/nateon-1.2.0.326.tar.bz2" -MD5SUM="9c4c6413345828b2f5f2740f127f40b0" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="crocket" -EMAIL="crockabiscuit@gmail.com" diff --git a/network/nateon/slack-desc b/network/nateon/slack-desc deleted file mode 100644 index 4b06a743a1..0000000000 --- a/network/nateon/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------------------------------------------------------| -nateon: nateon (instant messenger for the nateon service) -nateon: -nateon: nate provides an instant messenger service called nateon. -nateon: This is the linux version of the messenger program. -nateon: -nateon: Website : http://kldp.net/projects/nateon/ -nateon: -nateon: -nateon: -nateon: -nateon: -- cgit v1.2.3