summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2011-03-14 15:34:45 -0500
committer Robby Workman <rworkman@slackbuilds.org>2011-03-14 15:34:45 -0500
commit386d703d43b65fc57ed95adeff1bd2839dc67218 (patch)
tree1047353fa796b2041aefb02dc1a92b132471002f
parent783575d9fb3dd6bbb080068e2f143bfa010a1186 (diff)
downloadslackbuilds-386d703d43b65fc57ed95adeff1bd2839dc67218.tar.gz
slackbuilds-386d703d43b65fc57ed95adeff1bd2839dc67218.tar.xz
development/vic: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006570.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--development/vic/README13
-rw-r--r--development/vic/slack-desc19
-rw-r--r--development/vic/vic.SlackBuild48
-rw-r--r--development/vic/vic.info10
4 files changed, 0 insertions, 90 deletions
diff --git a/development/vic/README b/development/vic/README
deleted file mode 100644
index 294ba67830..0000000000
--- a/development/vic/README
+++ /dev/null
@@ -1,13 +0,0 @@
-vic is a simple wrapper around the editor of your choice to first check a
-file out of RCS, edit the file, and then check the file back into RCS.
-
-There are safeguards to protect the user if the file is edited outside of RCS,
-and it allows the user to get the RCS archive back up to date.
-
-You can edit multiple programs at a time with something like: vic *.wc
-
-The editor name is drawn from the environment variables $VISUAL, $EDITOR, or
-(if all else fails) "vi".
-
-Also included is a simple program, show.locks, which shows all of the files
-from the current directory which are currently locked.
diff --git a/development/vic/slack-desc b/development/vic/slack-desc
deleted file mode 100644
index 77592c8aed..0000000000
--- a/development/vic/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------------------------------------------------------|
-vic: vic (The VIC wrapper to easily edit RCS maintained files)
-vic:
-vic: 'vic' first checks the file out of RCS, presents the editor,
-vic: then checks the file back into RCS. Also included is a simple
-vic: program named 'show.locks' which shows currently locked files.
-vic:
-vic: vic was written by Dave Regan based on ideas from a program
-vic: (of the same name) by Stephen W. Fulling
-vic:
-vic:
-vic:
diff --git a/development/vic/vic.SlackBuild b/development/vic/vic.SlackBuild
deleted file mode 100644
index fed0e646a3..0000000000
--- a/development/vic/vic.SlackBuild
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Vic
-
-# Written by Menno Duursma <druiloor@zonnet.nl>
-
-# This program is free software. It comes without any warranty.
-# Granted WTFPL, Version 2, as published by Sam Hocevar. See
-# http://sam.zoy.org/wtfpl/COPYING for more details.
-
-PRGNAM=vic
-VERSION=${VERSION:-0.08}
-ARCH=noarch
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-set -e # Exit on most errors
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-# Fix the shebang lines
-sed -i 's|#!/usr/local/bin/perl|#!/usr/bin/perl|' vic
-sed -i 's|#!/usr/local/bin/perl|#!/usr/bin/perl|' show.locks
-
-install -D -m 0755 vic $PKG/usr/bin/vic
-install -D -m 0755 show.locks $PKG/usr/bin/show.locks
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a index.html $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/development/vic/vic.info b/development/vic/vic.info
deleted file mode 100644
index 938ae4dc38..0000000000
--- a/development/vic/vic.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="vic"
-VERSION="0.08"
-HOMEPAGE="http://cornvalley.peak.org/vic/"
-DOWNLOAD="http://cornvalley.peak.org/vic/vic-0.08.tar.gz"
-MD5SUM="b219e45ca5340e21438215735389d8f5"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Menno Duursma"
-EMAIL="druiloor@zonnet.nl"
-APPROVED="rworkman"