summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2017-10-20 13:19:24 +0200
committer Willy Sudiarto Raharjo2017-10-20 13:19:24 +0200
commite8ab088599732731a7b05ffc8f4a16ecb57d319c (patch)
tree19bd49edf719b97bd4d8a17eee35866a35885a16 /network
parente0762f8db40ea46ff9c5c47f7db4989fd71ee63b (diff)
downloadslackbuilds-e8ab088599732731a7b05ffc8f4a16ecb57d319c.tar.gz
network/xombrero: Removed (retired and no longer developed).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/xombrero/README9
-rw-r--r--network/xombrero/doinst.sh3
-rw-r--r--network/xombrero/slack-desc19
-rw-r--r--network/xombrero/xombrero.SlackBuild105
-rw-r--r--network/xombrero/xombrero.info10
5 files changed, 0 insertions, 146 deletions
diff --git a/network/xombrero/README b/network/xombrero/README
deleted file mode 100644
index 9177319234..0000000000
--- a/network/xombrero/README
+++ /dev/null
@@ -1,9 +0,0 @@
-xombrero (keyboard-centric web browser, formerly xxxterm)
-
-xombrero is a minimalist web browser with sophisticated security
-features designed-in, rather than through an add-on after-the-fact.
-In particular, it provides both persistent and per-session controls
-for scripts and cookies.
-
-In addition to providing a familiar mouse-based interface, it offers a
-set of vi-like keyboard commands for power-users.
diff --git a/network/xombrero/doinst.sh b/network/xombrero/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/network/xombrero/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/network/xombrero/slack-desc b/network/xombrero/slack-desc
deleted file mode 100644
index 179b47dc89..0000000000
--- a/network/xombrero/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------------------------------------------------------|
-xombrero: xombrero (keyboard-centric web browser, formerly xxxterm)
-xombrero:
-xombrero: xombrero is a minimalist web browser with sophisticated security
-xombrero: features designed-in, rather than through an add-on after-the-fact.
-xombrero: In particular, it provides both persistent and per-session controls
-xombrero: for scripts and cookies.
-xombrero:
-xombrero: In addition to providing a familiar mouse-based interface, it offers a
-xombrero: set of vi-like keyboard commands for power-users.
-xombrero:
-xombrero: Homepage: https://github.com/conformal/xombrero/wiki
diff --git a/network/xombrero/xombrero.SlackBuild b/network/xombrero/xombrero.SlackBuild
deleted file mode 100644
index 3c025a605c..0000000000
--- a/network/xombrero/xombrero.SlackBuild
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for xombrero
-
-# Copyright 2017 Erik Falor, Utah, 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=xombrero
-VERSION=${VERSION:-1.6.4}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PRGNAM_UPPER=$(echo $PRGNAM | tr '[:lower:]' '[:upper:]')
-VERSION_UNDERSCORE=$(echo $VERSION | tr . _)
-
-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-${PRGNAM_UPPER}_${VERSION_UNDERSCORE}
-tar xvf $CWD/$PRGNAM-${PRGNAM_UPPER}_${VERSION_UNDERSCORE}.tar.gz
-cd $PRGNAM-${PRGNAM_UPPER}_${VERSION_UNDERSCORE}
-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 {} \;
-
-
-sed -i 's|https://www.cyphertite.com|http://www.slackware.com|' xombrero.{conf,h}
-sed -i 's|/etc/ssl/cert.pem|/etc/ssl/certs/ca-certificates.crt|' xombrero.conf
-
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-PREFIX=/usr \
-MANDIR=/usr/man \
-DESTDIR="$PKG" \
-make -C linux install
-
-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
-
-mkdir -p $PKG/usr/share/pixmaps/
-cp $PKG/usr/share/xombrero/xombreroicon64.png $PKG/usr/share/pixmaps/xombrero.png
-sed -i -e s/xombreroicon64.png/xombrero/ $PKG/usr/share/applications/xombrero.desktop
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-cat xombrero.conf > $PKG/usr/doc/$PRGNAM-$VERSION/xombrero.conf
-
-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/network/xombrero/xombrero.info b/network/xombrero/xombrero.info
deleted file mode 100644
index c6abaf6188..0000000000
--- a/network/xombrero/xombrero.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="xombrero"
-VERSION="1.6.4"
-HOMEPAGE="https://github.com/conformal/xombrero/wiki"
-DOWNLOAD="https://github.com/conformal/xombrero/archive/XOMBRERO_1_6_4/xombrero-XOMBRERO_1_6_4.tar.gz"
-MD5SUM="a7c570f67b5791ec132bade643b508f7"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="libbsd webkitgtk3"
-MAINTAINER="Erik Falor"
-EMAIL="ewfalor@gmail.com"