diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-30 12:53:53 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-30 22:53:18 -0500 |
commit | 24b8d47c584f61a94bbbf6847e7468f436e911b6 (patch) | |
tree | 90599ae9d11822a682f8b73360a9b92e7e81e9fe | |
parent | 3e0c13aa9b6c25c16e5a0b6fd25a5503f6e3811f (diff) | |
download | slackbuilds-24b8d47c584f61a94bbbf6847e7468f436e911b6.tar.gz |
development/esvn: Removed (abandoned by maintainer)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | development/esvn/README | 11 | ||||
-rw-r--r-- | development/esvn/doinst.sh | 4 | ||||
-rw-r--r-- | development/esvn/esvn-Makefile.diff | 49 | ||||
-rw-r--r-- | development/esvn/esvn.SlackBuild | 89 | ||||
-rw-r--r-- | development/esvn/esvn.info | 10 | ||||
-rw-r--r-- | development/esvn/slack-desc | 19 |
6 files changed, 0 insertions, 182 deletions
diff --git a/development/esvn/README b/development/esvn/README deleted file mode 100644 index 3032be8a85..0000000000 --- a/development/esvn/README +++ /dev/null @@ -1,11 +0,0 @@ -eSvn is a QT GUI frontend to the Subversion revision system. - -In addition to the the standard svn commands it features: -- svn repository browsing -- organizing working directories and workspaces -- showing changed items -- performing quick diff, external diff and 3-way diff -- showing the status of files/directories in real time - -eSvn won't build on Slackware 13.0 without the Qt3 compatibility -package from /extra/kde3-compat. diff --git a/development/esvn/doinst.sh b/development/esvn/doinst.sh deleted file mode 100644 index 4e8ba7071d..0000000000 --- a/development/esvn/doinst.sh +++ /dev/null @@ -1,4 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - diff --git a/development/esvn/esvn-Makefile.diff b/development/esvn/esvn-Makefile.diff deleted file mode 100644 index 2f66a9aaea..0000000000 --- a/development/esvn/esvn-Makefile.diff +++ /dev/null @@ -1,49 +0,0 @@ ---- Makefile.orig 2008-03-05 13:51:10.000000000 +0200 -+++ Makefile 2008-03-05 13:58:47.000000000 +0200 -@@ -6,26 +6,14 @@ - @echo "** done **" - - esvn: -- qmake esvn.pro - make -f esvn.mak - - esvn-diff-wrapper: -- qmake esvn-diff-wrapper.pro - make -f esvn-diff-wrapper.mak - - install: - make -f esvn.mak install - make -f esvn-diff-wrapper.mak install -- mkdir -p /usr/share/doc/esvn -- cp -f -r html-docs /usr/share/doc/esvn -- --#cp -f esvn.pdf /usr/share/doc/esvn -- --install-doc: -- mkdir -p /usr/share/doc/esvn -- cp -f -r html-docs /usr/share/doc/esvn -- --#cp -f esvn.pdf /usr/share/doc/esvn - - clean: - make -f esvn.mak clean ---- esvn.pro.orig 2008-03-05 13:51:22.000000000 +0200 -+++ esvn.pro 2008-03-05 13:59:15.000000000 +0200 -@@ -253,7 +253,6 @@ - VER=$$system(cat VERSION) - - target.path = /usr/bin -- target.files = esvn - INSTALLS += target - - icons.path = /usr/share/pixmaps ---- esvn-diff-wrapper.pro.orig 2008-03-05 13:51:32.000000000 +0200 -+++ esvn-diff-wrapper.pro 2008-03-05 14:01:38.000000000 +0200 -@@ -13,7 +13,6 @@ - # Target is an application: - - MAKEFILE = esvn-diff-wrapper.mak --target.files = esvn-diff-wrapper - target.path = /usr/bin - INSTALLS += target - unix{ diff --git a/development/esvn/esvn.SlackBuild b/development/esvn/esvn.SlackBuild deleted file mode 100644 index daba5729ec..0000000000 --- a/development/esvn/esvn.SlackBuild +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh - -# Slackware build script for esvn -# Written by Iskar Enev <iskar.enev[@]gmail.com> - -PRGNAM=esvn -VERSION=0.6.12.1 -SRCVERSION=0.6.12-1 -BUILD=${BUILD:-1} -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} - -DOCUMENTATION="AUTHORS ChangeLog COPYING html-docs/ docs/ LICENSE README" - -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-$SRCVERSION.tar.gz -mv $PRGNAM $PRGNAM-$VERSION -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 {} \; - -# This patch enables the use of Slackware compile flags and fixes the -# binary install targets (esvn and esvn-diff-wrapper) in the .mak files -patch -p0 < $CWD/esvn-Makefile.diff - -PATH=$QTDIR"/bin":$PATH \ - qmake \ - "QMAKE_CXXFLAGS+=$SLKCFLAGS" \ - "QMAKE_CFLAGS+=$SLKCFLAGS" \ - esvn.pro -PATH=$QTDIR"/bin":$PATH \ - qmake \ - "QMAKE_CXXFLAGS+=$SLKCFLAGS" \ - "QMAKE_CFLAGS+=$SLKCFLAGS" \ - esvn-diff-wrapper.pro - -make -make install INSTALL_ROOT=$PKG - -find $PKG | xargs 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 $DOCUMENTATION $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/development/esvn/esvn.info b/development/esvn/esvn.info deleted file mode 100644 index 1216d69cd4..0000000000 --- a/development/esvn/esvn.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="esvn" -VERSION="0.6.12.1" -HOMEPAGE="http://zoneit.free.fr/esvn/" -DOWNLOAD="http://downloads.sourceforge.net/esvn/esvn-0.6.12-1.tar.gz" -MD5SUM="c46ffee6188dc28604c7cc9e5dbf082e" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Iskar Enev" -EMAIL="<iskar.enev[@]gmail.com>" -APPROVED="rworkman" diff --git a/development/esvn/slack-desc b/development/esvn/slack-desc deleted file mode 100644 index 2d02f00353..0000000000 --- a/development/esvn/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------------------------------------------------------| -esvn: eSvn (QT GUI frontend for Subversion) -esvn: -esvn: esvn is a QT GUI frontend to the Subversion revision system -esvn: -esvn: -esvn: -esvn: -esvn: -esvn: -esvn: -esvn: |