diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-04-19 17:23:06 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-19 17:23:06 -0500 |
commit | 7f14a72b060f69cc80acd76084264a9f06c0db8e (patch) | |
tree | 2cf62e4943fe1a654533fac3914af95c879cecb8 /desktop/xed | |
parent | 4a158a5e1a7bea6da05e26e11ad7fad23482892a (diff) |
desktop/xed: Removed (no active maintainer)
Diffstat (limited to 'desktop/xed')
-rw-r--r-- | desktop/xed/README | 31 | ||||
-rw-r--r-- | desktop/xed/doinst.sh | 15 | ||||
-rw-r--r-- | desktop/xed/slack-desc | 19 | ||||
-rw-r--r-- | desktop/xed/xed.SlackBuild | 103 | ||||
-rw-r--r-- | desktop/xed/xed.info | 10 |
5 files changed, 0 insertions, 178 deletions
diff --git a/desktop/xed/README b/desktop/xed/README deleted file mode 100644 index 2a4350f8bf27..000000000000 --- a/desktop/xed/README +++ /dev/null @@ -1,31 +0,0 @@ -xed (small and lightweight text editor) - -xed is a small and lightweight text editor. - -xed supports most standard editing features, plus several not found -in your average text editor (plugins being the most notable of these). - -Although new features are always under development, currently xed has: - - * Complete support for UTF-8 text - * Syntax highlighting - * Support for editing remote files - * Search and Replace - * Printing and Print Previewing Support - * File Revert - * A complete preferences interface - * Configurable Plugin system, with optional python support - -Some of the plugins, packaged and installed with xed include, among -others: - - * Word count - * Spell checker - * Change case of selected text - * File Browser - * Sort - * Insert Date/Time - * Tag list - -xed is released under the GNU General Public License (GPL) version 2, -see the file 'COPYING' for more information. diff --git a/desktop/xed/doinst.sh b/desktop/xed/doinst.sh deleted file mode 100644 index 401d9877955b..000000000000 --- a/desktop/xed/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi - -if [ -e usr/share/glib-2.0/schemas ]; then - if [ -x /usr/bin/glib-compile-schemas ]; then - /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1 - fi -fi diff --git a/desktop/xed/slack-desc b/desktop/xed/slack-desc deleted file mode 100644 index 85d14c2a736c..000000000000 --- a/desktop/xed/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -xed: xed (small and lightweight text editor) -xed: -xed: xed is a small and lightweight text editor. -xed: -xed: xed supports most standard editing features, plus several not found -xed: in your average text editor (plugins being the most notable of these). -xed: -xed: home page: https://github.com/linuxmint/xed -xed: -xed: -xed: diff --git a/desktop/xed/xed.SlackBuild b/desktop/xed/xed.SlackBuild deleted file mode 100644 index 37735a6028ef..000000000000 --- a/desktop/xed/xed.SlackBuild +++ /dev/null @@ -1,103 +0,0 @@ -#!/bin/sh -# -# Slackware build script for xed. -# -# Copyright 2016-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil. -# All rights reserved. -# -# Permission to use, copy, modify, and distribute this software for any purpose -# with or without fee is hereby granted, provided that the above copyright -# notice and this permission notice appear in all copies. -# -# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 -# AUTHORS AND COPYRIGHT HOLDERS AND THEIR CONTRIBUTORS 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=xed -VERSION=${VERSION:-1.6.3} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -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-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ - -./autogen.sh \ - --with-gtk=3.0 \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - -DOCS="AUTHORS COPYING ChangeLog HACKING NEWS.* README" - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp $DOCS $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/desktop/xed/xed.info b/desktop/xed/xed.info deleted file mode 100644 index 421d8a5e9311..000000000000 --- a/desktop/xed/xed.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="xed" -VERSION="1.6.3" -HOMEPAGE="https://github.com/linuxmint/xed" -DOWNLOAD="https://github.com/linuxmint/xed/archive/1.6.3/xed-1.6.3.tar.gz" -MD5SUM="b7aa267ecde3de3753c38e0092811e8b" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="gnome-common yelp-tools libpeas" -MAINTAINER="orphaned - no maintainer" -EMAIL="nobody@nowhere" |