From 3e6b03c740ba59020bed017da5fbc522a413f2b3 Mon Sep 17 00:00:00 2001 From: Benjamin Trigona-Harany Date: Sun, 2 Feb 2014 06:43:01 +0700 Subject: gis/xplanet: Moved from Desktop category. Signed-off-by: Willy Sudiarto Raharjo --- gis/xplanet/README | 8 ++++ gis/xplanet/slack-desc | 19 ++++++++++ gis/xplanet/xplanet.SlackBuild | 83 ++++++++++++++++++++++++++++++++++++++++++ gis/xplanet/xplanet.info | 10 +++++ 4 files changed, 120 insertions(+) create mode 100644 gis/xplanet/README create mode 100644 gis/xplanet/slack-desc create mode 100644 gis/xplanet/xplanet.SlackBuild create mode 100644 gis/xplanet/xplanet.info (limited to 'gis') diff --git a/gis/xplanet/README b/gis/xplanet/README new file mode 100644 index 0000000000..641dae6637 --- /dev/null +++ b/gis/xplanet/README @@ -0,0 +1,8 @@ +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/gis/xplanet/slack-desc b/gis/xplanet/slack-desc new file mode 100644 index 0000000000..41083fdead --- /dev/null +++ b/gis/xplanet/slack-desc @@ -0,0 +1,19 @@ +# 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/gis/xplanet/xplanet.SlackBuild b/gis/xplanet/xplanet.SlackBuild new file mode 100644 index 0000000000..a97b5ba314 --- /dev/null +++ b/gis/xplanet/xplanet.SlackBuild @@ -0,0 +1,83 @@ +#!/bin/sh +# Written by Benjamin Trigona-Harany +# 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/gis/xplanet/xplanet.info b/gis/xplanet/xplanet.info new file mode 100644 index 0000000000..0827af96f8 --- /dev/null +++ b/gis/xplanet/xplanet.info @@ -0,0 +1,10 @@ +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" -- cgit v1.2.3