diff options
author | Gustavo Conrad - LU8WFY <gusconrad@gmail.com> | 2014-07-24 12:59:28 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-07-24 12:59:28 +0700 |
commit | 2e5db2e4995c66a89bbd22cb0361f78d35689b69 (patch) | |
tree | d0538e4b9f149ea3fd2f08d91a4af4ea00098bd8 /ham | |
parent | 0b0188353ff9b9b29adb328982986359a6977d6f (diff) | |
download | slackbuilds-2e5db2e4995c66a89bbd22cb0361f78d35689b69.tar.gz |
ham/cqrlog: Added (advanced ham radio logger).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'ham')
-rw-r--r-- | ham/cqrlog/README | 14 | ||||
-rw-r--r-- | ham/cqrlog/cqrlog.SlackBuild | 94 | ||||
-rw-r--r-- | ham/cqrlog/cqrlog.info | 10 | ||||
-rw-r--r-- | ham/cqrlog/doinst.sh | 3 | ||||
-rw-r--r-- | ham/cqrlog/slack-desc | 19 |
5 files changed, 140 insertions, 0 deletions
diff --git a/ham/cqrlog/README b/ham/cqrlog/README new file mode 100644 index 0000000000..84aabc4b64 --- /dev/null +++ b/ham/cqrlog/README @@ -0,0 +1,14 @@ +CQRLOG an advanced ham radio logger + +CQRLOG is based on MySQL database. Provides radio control based on +hamlib libraries, DX cluster connection, online callbook, a grayliner, +internal QSL manager database support and a most accurate country +resolution algorithm. +CQRLOG is intended for daily general logging of HF, CW & SSB contacts +and strongly focused on easy operation and maintenance. +Homepage: http://www.cqrlog.com + +NOTE: You must run lazarus-IDE once to populate the required files +before building cqrlog. +If you run the IDE as normal user, you must copy the content of your +.lazarus directory into /root/.lazarus diff --git a/ham/cqrlog/cqrlog.SlackBuild b/ham/cqrlog/cqrlog.SlackBuild new file mode 100644 index 0000000000..6c488e231f --- /dev/null +++ b/ham/cqrlog/cqrlog.SlackBuild @@ -0,0 +1,94 @@ +#!/bin/sh + +# Slackware build script for cqrlog + +# Copyright Gustavo Conrad - LU8WFY (gus3963 gmail) +# 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=cqrlog +VERSION=${VERSION:-1.8.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}.src.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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +make +make install DESTDIR=$PKG + +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 man pages +mkdir -p $PKG/usr/man +mv $PKG/usr/share/man/* $PKG/usr/man +rmdir $PKG/usr/share/man + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README.md $PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html +cp -a help/* $PKG/usr/doc/$PRGNAM-$VERSION/html +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/ham/cqrlog/cqrlog.info b/ham/cqrlog/cqrlog.info new file mode 100644 index 0000000000..081236a3d7 --- /dev/null +++ b/ham/cqrlog/cqrlog.info @@ -0,0 +1,10 @@ +PRGNAM="cqrlog" +VERSION="1.8.0" +HOMEPAGE="http://www.cqrlog.com" +DOWNLOAD="http://www.cqrlog.com/files/cqrlog_1.8.0/cqrlog_1.8.0.src.tar.gz" +MD5SUM="d8249246edcead59e2a21c1251b094d3" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="lazarus tqsl xplanet %README%" +MAINTAINER="Gustavo Conrad - LU8WFY" +EMAIL="gus3963 gmail" diff --git a/ham/cqrlog/doinst.sh b/ham/cqrlog/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/ham/cqrlog/doinst.sh @@ -0,0 +1,3 @@ +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/ham/cqrlog/slack-desc b/ham/cqrlog/slack-desc new file mode 100644 index 0000000000..4de69eddfe --- /dev/null +++ b/ham/cqrlog/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a cqrlog description. +# Line up the first '|' above the ':' following the base cqrlog 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------------------------------------------------------| +cqrlog: cqrlog (an advanced ham radio logger) +cqrlog: +cqrlog: CQRLOG is based on MySQL database. Provides radio control based on +cqrlog: hamlib libraries, DX cluster connection, online callbook, a grayliner, +cqrlog: internal QSL manager database support and a most accurate country +cqrlog: resolution algorithm. +cqrlog: CQRLOG is intended for daily general logging of HF, CW & SSB contacts +cqrlog: and strongly focused on easy operation and maintenance. +cqrlog: Homepage: http://www.cqrlog.com +cqrlog: +cqrlog: |