summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2022-03-23 13:53:14 -0400
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-03-26 01:20:12 +0700
commit6ba9f7f3752fdeaf587e6a26a6b2765628506b58 (patch)
treea0ec246929b0877d88163e4f02d3e893ccbdb528
parentc96ceb17454f01a9db8a3fab0be3aec810da4dd8 (diff)
downloadslackbuilds-6ba9f7f3752fdeaf587e6a26a6b2765628506b58.tar.gz
slackbuilds-6ba9f7f3752fdeaf587e6a26a6b2765628506b58.tar.xz
development/nsis: Removed (FTBFS; not updated since 2010).
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--development/nsis/README6
-rw-r--r--development/nsis/nsis-fix-compile.patch10
-rw-r--r--development/nsis/nsis.SlackBuild117
-rw-r--r--development/nsis/nsis.info12
-rw-r--r--development/nsis/slack-desc19
5 files changed, 0 insertions, 164 deletions
diff --git a/development/nsis/README b/development/nsis/README
deleted file mode 100644
index ffdbfd5de9..0000000000
--- a/development/nsis/README
+++ /dev/null
@@ -1,6 +0,0 @@
-NSIS (Nullsoft Scriptable Install System) is a professional open source
-system to create Windows installers. It is designed to be as small
-and flexible as possible and is therefore very suitable for internet
-distribution.
-
-NOTE: This won't build on x86_64.
diff --git a/development/nsis/nsis-fix-compile.patch b/development/nsis/nsis-fix-compile.patch
deleted file mode 100644
index 62e9e43c5d..0000000000
--- a/development/nsis/nsis-fix-compile.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- nsis-2.46-src/Source/script.cpp.orig 2012-09-19 07:37:04.579646966 +0700
-+++ nsis-2.46-src/Source/script.cpp 2012-09-19 07:37:34.676226671 +0700
-@@ -16,6 +16,7 @@
-
- #include "Platform.h"
- #include <stdio.h>
-+#include <unistd.h>
- #include <ctype.h>
- #include "tokens.h"
- #include "build.h"
diff --git a/development/nsis/nsis.SlackBuild b/development/nsis/nsis.SlackBuild
deleted file mode 100644
index 80bf990951..0000000000
--- a/development/nsis/nsis.SlackBuild
+++ /dev/null
@@ -1,117 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for nsis
-
-# Copyright 2008-2009 Martinus Ady H <mrt.itnewbies@gmail.com>
-# 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.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=nsis
-VERSION=${VERSION:-2.46}
-BUILD=${BUILD:-3}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-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 $TMP/$PRGNAM-$VERSION-src $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-tar xvf $CWD/$PRGNAM-$VERSION-src.tar.bz2
-cd $PRGNAM-$VERSION-src
-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 {} \;
-
-# Extract the zip package and fix perms if needed
-mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}
-unzip $CWD/$PRGNAM-$VERSION.zip -d $PKG/usr/lib${LIBDIRSUFFIX}
-chown -R root:root $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM-$VERSION
-chmod -R u+w,go+r-w,a-s $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM-$VERSION
-
-patch -p1 < $CWD/nsis-fix-compile.patch
-
-# PREFIX=$PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM-$VERSION search located zip extracted dir.
-# *makensis* will be placed in $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM-$VERSION
-scons \
- SKIPSTUBS=all \
- SKIPPLUGINS=all \
- SKIPUTILS=all \
- SKIPMISC=all \
- NSIS_CONFIG_CONST_DATA_PATH=no \
- PREFIX=$PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM-$VERSION \
- install-compiler
-
-# Creating symlink for executable makensis
-mkdir -p $PKG/usr/bin
-( cd $PKG/usr/bin ; ln -sf ../lib${LIBDIRSUFFIX}/nsis-2.46/makensis makensis )
-
-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 \
- SConstruct ChangeLog INSTALL COPYING TODO.txt \
- $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/development/nsis/nsis.info b/development/nsis/nsis.info
deleted file mode 100644
index be70d842ff..0000000000
--- a/development/nsis/nsis.info
+++ /dev/null
@@ -1,12 +0,0 @@
-PRGNAM="nsis"
-VERSION="2.46"
-HOMEPAGE="http://nsis.sourceforge.net/Main_Page"
-DOWNLOAD="http://downloads.sourceforge.net/nsis/nsis-2.46-src.tar.bz2 \
- http://downloads.sourceforge.net/nsis/nsis-2.46.zip"
-MD5SUM="61c2e81739436b06d7cf7bcce1d533ac \
- d7e43beabc017a7d892a3d6663e988d4"
-DOWNLOAD_x86_64="UNSUPPORTED"
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Martinus Ady H"
-EMAIL="mrt.itnewbies@gmail.com"
diff --git a/development/nsis/slack-desc b/development/nsis/slack-desc
deleted file mode 100644
index 6fe72784b2..0000000000
--- a/development/nsis/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------------------------------------------------------|
-nsis: nsis (Nullsoft Scriptable Install System)
-nsis:
-nsis: NSIS (Nullsoft Scriptable Install System) is a professional open
-nsis: source system to create Windows installers. It is designed to be as
-nsis: small and flexible as possible and is therefore very suitable for
-nsis: internet distribution.
-nsis:
-nsis: Homepage: http://nsis.sourceforge.net/
-nsis:
-nsis:
-nsis: