summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Benjamin Trigona-Harany2014-02-02 00:43:01 +0100
committer Robby Workman2014-02-02 09:09:50 +0100
commit3e6b03c740ba59020bed017da5fbc522a413f2b3 (patch)
treef6a3e412bcad7090ade061f0320a6fe5c61f2011 /desktop
parent8ca20e71725cd3d3b814dbacd400941d2be6a382 (diff)
downloadslackbuilds-3e6b03c740ba59020bed017da5fbc522a413f2b3.tar.gz
gis/xplanet: Moved from Desktop category.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/xplanet/README8
-rw-r--r--desktop/xplanet/slack-desc19
-rw-r--r--desktop/xplanet/xplanet.SlackBuild83
-rw-r--r--desktop/xplanet/xplanet.info10
4 files changed, 0 insertions, 120 deletions
diff --git a/desktop/xplanet/README b/desktop/xplanet/README
deleted file mode 100644
index 641dae6637..0000000000
--- a/desktop/xplanet/README
+++ /dev/null
@@ -1,8 +0,0 @@
-Xplanet renders planetary and solar system images. It can be used to create
-computer wallpapers or single images. Xplanet can show city names, overlay
-cloud maps or display which regions of Earth are day or night. Xplanet can
-be used to produce projected maps based on several projections, such as
-mollweide, which show the whole earth at once, or mercator, which is
-rectangular and is suitable for filling the screen.
-
-See /usr/share/xplanet for maps, config files, scripts, and so on.
diff --git a/desktop/xplanet/slack-desc b/desktop/xplanet/slack-desc
deleted file mode 100644
index 41083fdead..0000000000
--- a/desktop/xplanet/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------------------------------------------------------|
-xplanet: xplanet (renders images of earth and other planets)
-xplanet:
-xplanet: Xplanet renders planetary and solar system images. It can be used to
-xplanet: create computer wallpapers or single images. Xplanet can show city
-xplanet: names, overlay cloud maps or display which regions of Earth are day or
-xplanet: night. Xplanet can be used to produce projected maps based on several
-xplanet: projections, such as mollweide, which show the whole earth at once, or
-xplanet: mercator, which is rectangular and is suitable for filling the screen.
-xplanet:
-xplanet: Home: http://xplanet.sourceforge.net/
-xplanet:
diff --git a/desktop/xplanet/xplanet.SlackBuild b/desktop/xplanet/xplanet.SlackBuild
deleted file mode 100644
index a97b5ba314..0000000000
--- a/desktop/xplanet/xplanet.SlackBuild
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/sh
-# Written by Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
-# Based on http://slackbuilds.org/template.SlackBuild
-
-PRGNAM=xplanet
-VERSION=${VERSION:-1.3.0}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) export ARCH=i486 ;;
- arm*) export ARCH=arm ;;
- *) export ARCH=$( uname -m ) ;;
- esac
-fi
-
-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 $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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --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 | xargs file | grep "executable" | 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 . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- README TODO AUTHORS COPYING NEWS ChangeLog \
- $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:-tgz}
diff --git a/desktop/xplanet/xplanet.info b/desktop/xplanet/xplanet.info
deleted file mode 100644
index 0827af96f8..0000000000
--- a/desktop/xplanet/xplanet.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="xplanet"
-VERSION="1.3.0"
-HOMEPAGE="http://xplanet.sourceforge.net/"
-DOWNLOAD="http://prdownloads.sourceforge.net/xplanet/xplanet-1.3.0.tar.gz"
-MD5SUM="41f7db2ccd1d8b4b989cacaf9adfe692"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Benjamin Trigona-Harany"
-EMAIL="slackbuilds@jaxartes.net"