From 69f2751109f476b8b6824755b0d664f300bf2247 Mon Sep 17 00:00:00 2001 From: David Spencer Date: Thu, 9 Jun 2016 08:16:50 +0100 Subject: gis/qmapshack: Moved from desktop/ category. Signed-off-by: David Spencer --- desktop/qmapshack/CMakeVersion.patch | 8 --- desktop/qmapshack/README | 5 -- desktop/qmapshack/doinst.sh | 3 -- desktop/qmapshack/qmapshack.SlackBuild | 90 ---------------------------------- desktop/qmapshack/qmapshack.info | 10 ---- desktop/qmapshack/slack-desc | 19 ------- gis/qmapshack/CMakeVersion.patch | 8 +++ gis/qmapshack/README | 5 ++ gis/qmapshack/doinst.sh | 3 ++ gis/qmapshack/qmapshack.SlackBuild | 90 ++++++++++++++++++++++++++++++++++ gis/qmapshack/qmapshack.info | 10 ++++ gis/qmapshack/slack-desc | 19 +++++++ 12 files changed, 135 insertions(+), 135 deletions(-) delete mode 100644 desktop/qmapshack/CMakeVersion.patch delete mode 100644 desktop/qmapshack/README delete mode 100644 desktop/qmapshack/doinst.sh delete mode 100644 desktop/qmapshack/qmapshack.SlackBuild delete mode 100644 desktop/qmapshack/qmapshack.info delete mode 100644 desktop/qmapshack/slack-desc create mode 100644 gis/qmapshack/CMakeVersion.patch create mode 100644 gis/qmapshack/README create mode 100644 gis/qmapshack/doinst.sh create mode 100644 gis/qmapshack/qmapshack.SlackBuild create mode 100644 gis/qmapshack/qmapshack.info create mode 100644 gis/qmapshack/slack-desc diff --git a/desktop/qmapshack/CMakeVersion.patch b/desktop/qmapshack/CMakeVersion.patch deleted file mode 100644 index 625dd819c3..0000000000 --- a/desktop/qmapshack/CMakeVersion.patch +++ /dev/null @@ -1,8 +0,0 @@ ---- qmapshack-1.0.beta1/CMakeLists.txt 2015-02-23 22:57:29.010838124 +0100 -+++ qmapshack-1.0.beta1-A/CMakeLists.txt 2015-02-22 16:29:06.757835259 +0100 -@@ -1,4 +1,4 @@ --cmake_minimum_required(VERSION 3.0.0) -+cmake_minimum_required(VERSION 2.8.12) - - project(QMapShack) - diff --git a/desktop/qmapshack/README b/desktop/qmapshack/README deleted file mode 100644 index 5f510d8dce..0000000000 --- a/desktop/qmapshack/README +++ /dev/null @@ -1,5 +0,0 @@ -QMapShack provides a versatile tool for GPS maps in GeoTiff format -as well as Garmin's img vector map format. You can also view and -edit your GPX tracks. - -QMapShack is the successor of QLandkarteGT. diff --git a/desktop/qmapshack/doinst.sh b/desktop/qmapshack/doinst.sh deleted file mode 100644 index 140e332222..0000000000 --- a/desktop/qmapshack/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 -fi diff --git a/desktop/qmapshack/qmapshack.SlackBuild b/desktop/qmapshack/qmapshack.SlackBuild deleted file mode 100644 index e496e0d7d6..0000000000 --- a/desktop/qmapshack/qmapshack.SlackBuild +++ /dev/null @@ -1,90 +0,0 @@ -#!/bin/sh - -# Slackware build script for qmapshack -# Copyright 2015 Daniel Stolarski -# -# This program is free software. It comes without any warranty, to -# the extent permitted by applicable law. You can redistribute it -# and/or modify it under the terms of the Do What The Fuck You Want -# To Public License, Version 2, as published by Sam Hocevar. See -# http://sam.zoy.org/wtfpl/COPYING for more details. - -PRGNAM=qmapshack -VERSION=${VERSION:-1.3.0} -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -patch -p1 < $CWD/CMakeVersion.patch -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 {} \; - -mkdir -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} \ - -DMAN_INSTALL_DIR=/usr/man \ - -DSYSCONF_INSTALL_DIR=/etc \ - -DCMAKE_BUILD_TYPE=Release .. - make - make install DESTDIR=$PKG -cd .. - -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 - -# Move and compress man pages -mv $PKG/usr/share/man $PKG/usr -find $PKG/usr/man -type f -exec gzip -9 {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a README.md changelog.txt LICENSE $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 -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/desktop/qmapshack/qmapshack.info b/desktop/qmapshack/qmapshack.info deleted file mode 100644 index 892dbca855..0000000000 --- a/desktop/qmapshack/qmapshack.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="qmapshack" -VERSION="1.3.0" -HOMEPAGE="https://bitbucket.org/maproom/qmapshack/wiki/Home" -DOWNLOAD="https://bitbucket.org/maproom/qmapshack/downloads/qmapshack-1.3.0.tar.gz" -MD5SUM="f1d16bf227108edd6219341ea1352d1d" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="gdal qt5" -MAINTAINER="Daniel Stolarski" -EMAIL="daniel.stolarski@gmail.com" diff --git a/desktop/qmapshack/slack-desc b/desktop/qmapshack/slack-desc deleted file mode 100644 index a618391083..0000000000 --- a/desktop/qmapshack/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------------------------------------------------------| -qmapshack: qmapshack (GPS mapping and GPSr management) -qmapshack: -qmapshack: QMapShack provides a versatile tool for GPS maps in GeoTiff format -qmapshack: as well as Garmin's img vector map format. You can also view and -qmapshack: edit your GPX tracks. -qmapshack: -qmapshack: QMapShack is the successor of QLandkarteGT. -qmapshack: -qmapshack: -qmapshack: -qmapshack: diff --git a/gis/qmapshack/CMakeVersion.patch b/gis/qmapshack/CMakeVersion.patch new file mode 100644 index 0000000000..625dd819c3 --- /dev/null +++ b/gis/qmapshack/CMakeVersion.patch @@ -0,0 +1,8 @@ +--- qmapshack-1.0.beta1/CMakeLists.txt 2015-02-23 22:57:29.010838124 +0100 ++++ qmapshack-1.0.beta1-A/CMakeLists.txt 2015-02-22 16:29:06.757835259 +0100 +@@ -1,4 +1,4 @@ +-cmake_minimum_required(VERSION 3.0.0) ++cmake_minimum_required(VERSION 2.8.12) + + project(QMapShack) + diff --git a/gis/qmapshack/README b/gis/qmapshack/README new file mode 100644 index 0000000000..5f510d8dce --- /dev/null +++ b/gis/qmapshack/README @@ -0,0 +1,5 @@ +QMapShack provides a versatile tool for GPS maps in GeoTiff format +as well as Garmin's img vector map format. You can also view and +edit your GPX tracks. + +QMapShack is the successor of QLandkarteGT. diff --git a/gis/qmapshack/doinst.sh b/gis/qmapshack/doinst.sh new file mode 100644 index 0000000000..140e332222 --- /dev/null +++ b/gis/qmapshack/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications +fi diff --git a/gis/qmapshack/qmapshack.SlackBuild b/gis/qmapshack/qmapshack.SlackBuild new file mode 100644 index 0000000000..e496e0d7d6 --- /dev/null +++ b/gis/qmapshack/qmapshack.SlackBuild @@ -0,0 +1,90 @@ +#!/bin/sh + +# Slackware build script for qmapshack +# Copyright 2015 Daniel Stolarski +# +# This program is free software. It comes without any warranty, to +# the extent permitted by applicable law. You can redistribute it +# and/or modify it under the terms of the Do What The Fuck You Want +# To Public License, Version 2, as published by Sam Hocevar. See +# http://sam.zoy.org/wtfpl/COPYING for more details. + +PRGNAM=qmapshack +VERSION=${VERSION:-1.3.0} +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 $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +patch -p1 < $CWD/CMakeVersion.patch +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 {} \; + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_SUFFIX=${LIBDIRSUFFIX} \ + -DMAN_INSTALL_DIR=/usr/man \ + -DSYSCONF_INSTALL_DIR=/etc \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG +cd .. + +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 + +# Move and compress man pages +mv $PKG/usr/share/man $PKG/usr +find $PKG/usr/man -type f -exec gzip -9 {} \; + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README.md changelog.txt LICENSE $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 +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/gis/qmapshack/qmapshack.info b/gis/qmapshack/qmapshack.info new file mode 100644 index 0000000000..892dbca855 --- /dev/null +++ b/gis/qmapshack/qmapshack.info @@ -0,0 +1,10 @@ +PRGNAM="qmapshack" +VERSION="1.3.0" +HOMEPAGE="https://bitbucket.org/maproom/qmapshack/wiki/Home" +DOWNLOAD="https://bitbucket.org/maproom/qmapshack/downloads/qmapshack-1.3.0.tar.gz" +MD5SUM="f1d16bf227108edd6219341ea1352d1d" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="gdal qt5" +MAINTAINER="Daniel Stolarski" +EMAIL="daniel.stolarski@gmail.com" diff --git a/gis/qmapshack/slack-desc b/gis/qmapshack/slack-desc new file mode 100644 index 0000000000..a618391083 --- /dev/null +++ b/gis/qmapshack/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------------------------------------------------------| +qmapshack: qmapshack (GPS mapping and GPSr management) +qmapshack: +qmapshack: QMapShack provides a versatile tool for GPS maps in GeoTiff format +qmapshack: as well as Garmin's img vector map format. You can also view and +qmapshack: edit your GPX tracks. +qmapshack: +qmapshack: QMapShack is the successor of QLandkarteGT. +qmapshack: +qmapshack: +qmapshack: +qmapshack: -- cgit v1.2.3