From c47daa5d9e29ac3fce11e59c86aab0a57618eee1 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Mon, 11 Apr 2011 01:09:21 -0500 Subject: development/scite: Re-added/changed maintainer. Revert "development/scite: Removed (abandoned by maintainer)" This reverts commit 3fa55f127df2dd0f9b09ec1385ff1c7c7c1d138a. Signed-off-by: Robby Workman --- development/scite/scite.SlackBuild | 85 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 development/scite/scite.SlackBuild (limited to 'development/scite/scite.SlackBuild') diff --git a/development/scite/scite.SlackBuild b/development/scite/scite.SlackBuild new file mode 100644 index 0000000000..2353545adb --- /dev/null +++ b/development/scite/scite.SlackBuild @@ -0,0 +1,85 @@ +#!/bin/sh +# Slackware build script for SciTE +# Written by Iskar Enev + +PRGNAM=scite +VERSION=2.12 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +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 scite/ scintilla/ +tar xvf $CWD/${PRGNAM}$(echo $VERSION | tr -d .).tgz +chown -R root:root scite/ scintilla/ +chmod -R u+w,go+r-w,a-s scite/ scintilla/ + +# Build Scintilla first +cd $TMP/scintilla/gtk +sed -i "s%CXXBASEFLAGS=-Wall -Wno-missing-braces -Wno-char-subscripts -pedantic -Os %CXXBASEFLAGS=-Wall -Wno-missing-braces -Wno-char-subscripts -pedantic %" makefile +sed -i "s%CXXFLAGS=-DNDEBUG -Os %CXXFLAGS=-DNDEBUG $SLKCFLAGS %" makefile +make prefix=/usr + +cd $TMP/scite/gtk +sed -i "s%CXXBASEFLAGS=-W -Wall -Wno-char-subscripts -pedantic -Os %CXXBASEFLAGS=-W -Wall -Wno-char-subscripts -pedantic %" makefile +sed -i "s%CXXTFLAGS=-DNDEBUG -Os %CXXTFLAGS=-DNDEBUG $SLKCFLAGS %" makefile + +make prefix=/usr +make install DESTDIR=$PKG + +( cd $PKG/usr/bin ; ln -sf SciTE scite ) + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true +) + +cd $TMP/scite +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html +cp -a README License.txt $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $PKG/usr/share/scite/*.html $PKG/usr/share/scite/*.png \ + $PKG/usr/doc/$PRGNAM-$VERSION/html +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/usr/man/man1 +cat doc/scite.1 | gzip -9c > $PKG/usr/man/man1/scite.1.gz + +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} -- cgit v1.2.3