summaryrefslogtreecommitdiffstats
path: root/development/tkcvs
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:07:28 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:07:28 +0200
commit0e4c667e2474444b027db4d1712812e1e152dbd1 (patch)
tree12bf8073019ab8c5e6065632feae628805381d59 /development/tkcvs
parentb72a172e9ad014e654219a3f2d6d178cf39b3d75 (diff)
downloadslackbuilds-0e4c667e2474444b027db4d1712812e1e152dbd1.tar.gz
slackbuilds-0e4c667e2474444b027db4d1712812e1e152dbd1.tar.xz
development/tkcvs: Removed from 13.0 repository
Diffstat (limited to 'development/tkcvs')
-rw-r--r--development/tkcvs/README6
-rw-r--r--development/tkcvs/doinst.sh4
-rw-r--r--development/tkcvs/slack-desc19
-rw-r--r--development/tkcvs/tkcvs.SlackBuild72
-rw-r--r--development/tkcvs/tkcvs.desktop11
-rw-r--r--development/tkcvs/tkcvs.info8
6 files changed, 0 insertions, 120 deletions
diff --git a/development/tkcvs/README b/development/tkcvs/README
deleted file mode 100644
index 9b43dca580..0000000000
--- a/development/tkcvs/README
+++ /dev/null
@@ -1,6 +0,0 @@
-TkCVS is a Tcl/Tk-based graphical interface to the CVS and
-Subversion configuration management systems. It displays the status of
-the files in the current working directory, and provides buttons and
-menus to execute configuration-management commands on the selected
-files. Limited RCS functionality is also present. TkDiff is bundled
-in for browsing and merging your changes.
diff --git a/development/tkcvs/doinst.sh b/development/tkcvs/doinst.sh
deleted file mode 100644
index 5785882996..0000000000
--- a/development/tkcvs/doinst.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
-fi
-
diff --git a/development/tkcvs/slack-desc b/development/tkcvs/slack-desc
deleted file mode 100644
index 78ad969497..0000000000
--- a/development/tkcvs/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 ':'.
-
- |-----handy-ruler------------------------------------------------------|
-tkcvs: tkcvs (Tcl/Tk Graphical Interface to CVS and Subversion)
-tkcvs:
-tkcvs: TkCVS is a Tcl/Tk-based graphical interface to the CVS and
-tkcvs: Subversion configuration management systems. It displays the status of
-tkcvs: the files in the current working directory, and provides buttons and
-tkcvs: menus to execute configuration-management commands on the selected
-tkcvs: files. Limited RCS functionality is also present. TkDiff is bundled
-tkcvs: in for browsing and merging your changes.
-tkcvs:
-tkcvs:
-tkcvs:
diff --git a/development/tkcvs/tkcvs.SlackBuild b/development/tkcvs/tkcvs.SlackBuild
deleted file mode 100644
index 138765d987..0000000000
--- a/development/tkcvs/tkcvs.SlackBuild
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for tkcvs
-
-# Copyright 2007-2008 Ferenc Deak <ferenc.deak@gmail.com>
-# 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.
-
-# Slightly modified by the SlackBuilds project
-
-PRGNAM=tkcvs
-VERSION=8.2
-ARCH=noarch
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-SRCVERSION=$(echo $VERSION | tr . _)
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf ${PRGNAM}_$SRCVERSION
-tar xzf $CWD/${PRGNAM}_$SRCVERSION.tar.gz
-cd ${PRGNAM}_$SRCVERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-./doinstall.tcl -nox $PKG/usr
-
-( cd $PKG/usr/man || exit 1
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a FAQ COPYING CHANGELOG $PKG/usr/doc/$PRGNAM-$VERSION
-cp tkdiff/Changelog $PKG/usr/doc/$PRGNAM-$VERSION/Changelog.tkdiff
-cp tkdiff/COPYING $PKG/usr/doc/$PRGNAM-$VERSION/COPYING.tkdiff
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/usr/share/applications
-cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
-
-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.tgz
diff --git a/development/tkcvs/tkcvs.desktop b/development/tkcvs/tkcvs.desktop
deleted file mode 100644
index 0c598c21e2..0000000000
--- a/development/tkcvs/tkcvs.desktop
+++ /dev/null
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=tkcvs
-Comment=Graphical Interface to CVS and Subversion
-Exec=tkcvs
-TryExec=tkcvs
-Icon=/usr/lib/tkcvs/bitmaps/tkcvs48.xbm
-Terminal=false
-Type=Application
-Categories=Application;Development;
-StartupNotify=false
-Encoding=UTF-8
diff --git a/development/tkcvs/tkcvs.info b/development/tkcvs/tkcvs.info
deleted file mode 100644
index a35ad1a40b..0000000000
--- a/development/tkcvs/tkcvs.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="tkcvs"
-VERSION="8.2"
-HOMEPAGE="http://www.twobarleycorns.net/tkcvs.html"
-DOWNLOAD="http://www.twobarleycorns.net/tkcvs_8_2.tar.gz"
-MD5SUM="f263e59233625145a4efc38b14241e0c"
-MAINTAINER="Ferenc Deak"
-EMAIL="ferenc.deak@gmail.com"
-APPROVED="rworkman"