diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:06:59 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:06:59 +0200 |
commit | f534b1ca5bb2db5245287ef47e47a242eb0f23ef (patch) | |
tree | 3eee5ee26eff3379aa80d9d84dac782dd8442aa6 /development | |
parent | 483ddf5e210472e1a5691885019f986e589ea3cc (diff) | |
download | slackbuilds-f534b1ca5bb2db5245287ef47e47a242eb0f23ef.tar.gz |
development/cm_tools: Removed from 13.0 repository
Diffstat (limited to 'development')
-rw-r--r-- | development/cm_tools/README | 15 | ||||
-rw-r--r-- | development/cm_tools/cm_tools.SlackBuild | 60 | ||||
-rw-r--r-- | development/cm_tools/cm_tools.info | 8 | ||||
-rw-r--r-- | development/cm_tools/slack-desc | 19 |
4 files changed, 0 insertions, 102 deletions
diff --git a/development/cm_tools/README b/development/cm_tools/README deleted file mode 100644 index 1f5584d056..0000000000 --- a/development/cm_tools/README +++ /dev/null @@ -1,15 +0,0 @@ -cm_tools are a set of utilities serving as wrappers around the RCS -system. Particularly, they set the checkin timestamps to the -modification date rather than the commit date, along with a few other -differences. They and the directory editor, ded, are designed to work -together. - -td_lib (available from SlackBuilds.org) is required to build this. Note -that you do not need to actually 'installpkg' td_lib if you do not want -to. It only needs to be built and when cm_tools is built alongside it, -cm_tools will find it. You can then remove the td_lib directories and -package if you don't want them. - -The SlackBuild differs from a default installation in not setting the -set-uid bit on the 'vcs', 'checkin', and 'checkout' binaries. If you -need this, modify the SlackBuild to suit. diff --git a/development/cm_tools/cm_tools.SlackBuild b/development/cm_tools/cm_tools.SlackBuild deleted file mode 100644 index 987c8bf4ff..0000000000 --- a/development/cm_tools/cm_tools.SlackBuild +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -# Slackware build script for cm_tools -# Written by slakmagik <jsun@freeshell.org> -# Released under the WTFPL - -PRGNAM=cm_tools -VERSION=20061023 -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -# Pass "SUID=yes" to this script if you want three of the binaries setUID -SUID=${SUID:-no} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tgz -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" ./configure --prefix=/usr -make -make prefix=$PKG/usr install - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a [CR]* $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -find $PKG/usr/man/ -type f -exec gzip -9 {} \; - -# don't really need set-UID-root binaries here -if [ ! "$SUID" = "yes" ]; then - chmod 0755 $PKG/usr/bin/* -fi - -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.tgz diff --git a/development/cm_tools/cm_tools.info b/development/cm_tools/cm_tools.info deleted file mode 100644 index cfa8229ede..0000000000 --- a/development/cm_tools/cm_tools.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="cm_tools" -VERSION="20061023" -HOMEPAGE="http://invisible-island.net/ded/ded.html" -DOWNLOAD="ftp://invisible-island.net/ded/cm_tools-20061023.tgz" -MD5SUM="786a75e14a6dafb6e58281206b3da5b7" -MAINTAINER="slakmagik" -EMAIL="jsun@freeshell.org" -APPROVED="rworkman" diff --git a/development/cm_tools/slack-desc b/development/cm_tools/slack-desc deleted file mode 100644 index ad21446a28..0000000000 --- a/development/cm_tools/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------------------------------------------------------| -cm_tools: cm_tools (content management tools) -cm_tools: -cm_tools: cm_tools are a set of utilities serving as wrappers around the -cm_tools: RCS system. Particularly, they set the checkin timestamps to the -cm_tools: modification date rather than the commit date, along with a few -cm_tools: other differences. They and the directory editor, ded, are designed -cm_tools: to work together. -cm_tools: -cm_tools: Homepage: http://invisible-island.net/ded/ded.html -cm_tools: -cm_tools: |