mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
development/jasspa: Removed from 13.0 repository
This commit is contained in:
parent
989937edaf
commit
51f0895027
7 changed files with 0 additions and 135 deletions
|
@ -1,13 +0,0 @@
|
||||||
jasspa (enhanced microemacs text editor)
|
|
||||||
|
|
||||||
Jasspa's MicroEmacs is an Emacs editor biased towards UNIX users,
|
|
||||||
working across platforms by providing a consistent interface under
|
|
||||||
UNIX, Microsoft Windows 3.1/'95/'98/NT/2K/XP and DOS operating
|
|
||||||
systems.
|
|
||||||
It features syntax highlighling, folding, multiple undo/redo, macro
|
|
||||||
languge, organizer, mailer, calendar, multiple frames and windows and
|
|
||||||
much more See it's internal help for full list of features.
|
|
||||||
|
|
||||||
In addtion to a file listed in jasspa.info you need the macro package from
|
|
||||||
http://www.jasspa.com/release_20060909/jasspa-metree-20060909-2.tar.gz
|
|
||||||
to be able to compile and use jasspa.
|
|
|
@ -1,3 +0,0 @@
|
||||||
if [ -x usr/bin/update-desktop-database ]; then
|
|
||||||
./usr/bin/update-desktop-database ./usr/share/applications > /dev/null 2>&1
|
|
||||||
fi
|
|
|
@ -1,66 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Slackware build script for jasspa
|
|
||||||
|
|
||||||
# Written by Ferenc Deak <ferenc.deak@gmail.com>
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
PRGNAM=jasspa
|
|
||||||
VERSION=060909
|
|
||||||
ARCH=${ARCH:-i486}
|
|
||||||
BUILD=${BUILD:-1}
|
|
||||||
TAG=${TAG:-_SBo}
|
|
||||||
CWD=$(pwd)
|
|
||||||
TMP=${TMP:-/tmp/SBo}
|
|
||||||
PKG=$TMP/package-$PRGNAM
|
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
|
||||||
|
|
||||||
if [ "$ARCH" = "i486" ]; then
|
|
||||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
||||||
elif [ "$ARCH" = "i686" ]; then
|
|
||||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -rf $PKG
|
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
|
||||||
cd $TMP
|
|
||||||
rm -rf me$VERSION
|
|
||||||
tar xzf $CWD/$PRGNAM-mesrc-20$VERSION-2.tar.gz
|
|
||||||
cd me$VERSION
|
|
||||||
chown -R root:root .
|
|
||||||
chmod -R u+w,go+r-w,a-s .
|
|
||||||
|
|
||||||
cd src
|
|
||||||
sed -i -e "s/\\(COPTIMISE\\s*=\\s*\\)-O3\\(.*\\)/\\1$SLKCFLAGS\\2/" linux2.gmk
|
|
||||||
sed -i -e "s/\\(COPTIMISE\\s*=\\s*\\)-O3\\(.*\\)/\\1$SLKCFLAGS\\2/" linux26.gmk
|
|
||||||
./build
|
|
||||||
install -D -m 755 me $PKG/usr/bin/me
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/share
|
|
||||||
# extract macros under /usr/share
|
|
||||||
tar xzf $CWD/$PRGNAM-metree-20$VERSION-2.tar.gz -C $PKG/usr/share
|
|
||||||
chown -R root:root $PKG/usr/share/$PRGNAM
|
|
||||||
chmod -R u+w,go+r-w,a-s $PKG/usr/share/$PRGNAM
|
|
||||||
|
|
||||||
( cd $PKG
|
|
||||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
||||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
||||||
)
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cp -a ../{COPYING,change.log,faq.txt,license.txt,readme.txt} \
|
|
||||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/share/applications
|
|
||||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
|
||||||
|
|
||||||
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.tgz
|
|
||||||
|
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Name=Jasspa
|
|
||||||
Comment=Enhanced Microemacs Text Editor
|
|
||||||
Exec=me
|
|
||||||
Icon=/usr/share/jasspa/pixmaps/me_l.png
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
Categories=Application;Utility
|
|
||||||
StartupNotify=false
|
|
||||||
Encoding=UTF-8
|
|
|
@ -1,8 +0,0 @@
|
||||||
PRGNAM="jasspa"
|
|
||||||
VERSION="060909"
|
|
||||||
HOMEPAGE="http://www.jasspa.com/"
|
|
||||||
DOWNLOAD="http://www.jasspa.com/release_20060909/jasspa-mesrc-20060909-2.tar.gz"
|
|
||||||
MD5SUM="6606ec40da39352e5cbb644090a13820"
|
|
||||||
MAINTAINER="Ferenc Deak"
|
|
||||||
EMAIL="ferenc.deak@gmail.com"
|
|
||||||
APPROVED="BP{k}"
|
|
|
@ -1,16 +0,0 @@
|
||||||
- jasspa is a descendant of the original microemacs, with a lot of additions
|
|
||||||
|
|
||||||
- there is a 'build' script in the distribution which autodetects a few
|
|
||||||
things, so I use this script.
|
|
||||||
- but if I use this script I have to patch linux2.gmk and linux26.gmk
|
|
||||||
|
|
||||||
- there is a macro package called jasspa-metree-20$VERSION-2.tar.gz which is
|
|
||||||
needed to use the editor. (link in README)
|
|
||||||
|
|
||||||
- there is a special version called nanoemacs (ne) which is a small macro-less
|
|
||||||
minimal version. I do not build this version because I think it is not so
|
|
||||||
useful.
|
|
||||||
|
|
||||||
- this is my second editor after vim
|
|
||||||
|
|
||||||
|
|
|
@ -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------------------------------------------------------|
|
|
||||||
jasspa: jasspa (enhanced microemacs text editor)
|
|
||||||
jasspa:
|
|
||||||
jasspa: Jasspa's MicroEmacs is an Emacs editor biased towards UNIX users,
|
|
||||||
jasspa: working across platforms by providing a consistent interface under
|
|
||||||
jasspa: UNIX, Microsoft Windows 3.1/'95/'98/NT/2K/XP and DOS operating
|
|
||||||
jasspa: systems.
|
|
||||||
jasspa: It features syntax highlighling, folding, multiple undo/redo, macro
|
|
||||||
jasspa: languge, organizer, mailer, calendar, multiple frames and windows and
|
|
||||||
jasspa: much more See it's internal help for full list of features.
|
|
||||||
jasspa:
|
|
||||||
jasspa:
|
|
Loading…
Reference in a new issue