summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author dsomero <xgizzmo@gmail.com>2010-05-20 23:33:16 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-21 00:50:53 -0500
commit108661efe94a7da47184604ed112049b3596d5ea (patch)
treecd1b47bd44c5ed5ed9b43edfba55ad00bcbe0618 /development
parent065e7e9e29d2e6d5e14af8f4228e35c593419297 (diff)
downloadslackbuilds-108661efe94a7da47184604ed112049b3596d5ea.tar.gz
slackbuilds-108661efe94a7da47184604ed112049b3596d5ea.tar.xz
development/medit: Removed (build failure)
This appears related to glibc-2.11.x changes
Diffstat (limited to 'development')
-rw-r--r--development/medit/README18
-rw-r--r--development/medit/doinst.sh7
-rw-r--r--development/medit/medit.SlackBuild83
-rw-r--r--development/medit/medit.info10
-rw-r--r--development/medit/slack-desc19
5 files changed, 0 insertions, 137 deletions
diff --git a/development/medit/README b/development/medit/README
deleted file mode 100644
index aa3ed63fcc..0000000000
--- a/development/medit/README
+++ /dev/null
@@ -1,18 +0,0 @@
-medit the text editor
-
-Started originally as a simple built-in editor component in GGAP, it grew up
-to a real text editor.
-
-The intention now is to make it a useful programming and around-programming
-text editor.
-
-Features
- * Configurable syntax highlighting.
- * Configurable keyboard accelerators.
- * Multiplatform - works both on unix and windows.
- * Plugins: can be written in C or Python.
- * Configurable tools available from the main and context menus. They can
- be written in Python, or it can be a shell script, or in MooScript -
- simple builtin scripting lanugage.
- * Regular expression search/replace, grep and find frontends, builtin file
- selector and whatnot.
diff --git a/development/medit/doinst.sh b/development/medit/doinst.sh
deleted file mode 100644
index 9d2c5dc820..0000000000
--- a/development/medit/doinst.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications &> /dev/null
-fi
-
-if [ -x /usr/bin/update-mime-database ]; then
- /usr/bin/update-mime-database usr/share/mime &> /dev/null
-fi
diff --git a/development/medit/medit.SlackBuild b/development/medit/medit.SlackBuild
deleted file mode 100644
index 555b8e781a..0000000000
--- a/development/medit/medit.SlackBuild
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/sh
-#
-# Slackware build script for medit
-#
-# Copyright 2009 Erik W. Hanson, Minneapolis, MN, USA
-# 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.
-
-PRGNAM=medit
-VERSION=0.9.4
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-set -eu
-
-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"
-fi
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var/lib \
- --mandir=/usr/man \
- --disable-static \
- --disable-generated-files \
- --with-fam \
- --libdir=/usr/lib${LIBDIRSUFFIX}
-
-make
-make install-strip DESTDIR=$PKG
-
-rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/python2.?
-gzip -9 $PKG/usr/man/man?/*.?
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install
-cp -a AUTHORS COPYING COPYING.GPL INSTALL LICENSE NEWS README THANKS \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-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/medit/medit.info b/development/medit/medit.info
deleted file mode 100644
index 3d9a1da94b..0000000000
--- a/development/medit/medit.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="medit"
-VERSION="0.9.4"
-HOMEPAGE="http://mooedit.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/mooedit/medit-0.9.4.tar.bz2"
-MD5SUM="502086d22d608232d48ef70d56ef5f84"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Erik Hanson"
-EMAIL="erik@slackbuilds.org"
-APPROVED="dsomero"
diff --git a/development/medit/slack-desc b/development/medit/slack-desc
deleted file mode 100644
index 9b9d6a8f30..0000000000
--- a/development/medit/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------------------------------------------------------|
-medit: medit (Multiplatform GTK text editor)
-medit:
-medit: It features: Configurable syntax highlighting, keyboard accelerators,
-medit: and tools available from the main and context menus that can be written
-medit: in Python, MooScript (simple builtin scripting lanugage) or shell
-medit: script. Plugins can be written in C or Python. Incremental search,
-medit: regular expression search/replace, grep and find frontends, builtin
-medit: file selector and whatnot.
-medit:
-medit: http://mooedit.sourceforge.net/
-medit: