mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
office/remind: Added (A command-line calendar)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
b680f8a0c9
commit
a71dbeb3b7
4 changed files with 250 additions and 0 deletions
35
office/remind/README
Normal file
35
office/remind/README
Normal file
|
@ -0,0 +1,35 @@
|
|||
Remind is a sophisticated command-line calendar and alarm program
|
||||
with a sophisticated scripting language and intelligent handling of
|
||||
exceptions and holidays.
|
||||
|
||||
There are several options to pass to this script at compile-time.
|
||||
Some of these options can be changed at run-time through SET
|
||||
commands, while others (language, date/time separators, character
|
||||
set, and the -u option) must be chosen at compile-time. Pass these
|
||||
using `VAR=value ./remind.SlackBuild`:
|
||||
LANGUAGE=LANG (default: ENGLISH), set the language. See the SlackBuild
|
||||
for possible language options.
|
||||
|
||||
LAT_DEG=# (default: 45), set the latitudinal degrees
|
||||
LAT_MIN=# (default: 24), set the latitudinal minutes
|
||||
LAT_SEC=# (default: 0), set the latitudinal seconds
|
||||
LON_DEG=# (default: 75), set the longitudinal degrees
|
||||
LON_MIN=# (default: 39), set the longitudinal minutes
|
||||
LON_SEC=# (default: 0), set the longitudinal seconds
|
||||
LOCATION=location (default: Ottawa), set the location string
|
||||
See the SlackBuild for more information on these variables.
|
||||
|
||||
DEFAULT_PAGE=Letter|A4 (default: Letter), set the default page size
|
||||
DATESEP=-|/ (default: -), set the date separator character
|
||||
TIMESEP=:|. (default: :), set the time separator character
|
||||
|
||||
CHARSET=ASCII|ISOLATIN1|ISOLATIN2|IBMEXTENDED|IBM852
|
||||
(default: ISOLATIN1), set the character set to use
|
||||
|
||||
WANTU=yes|no (default: yes), enable/disable the -u option (which
|
||||
runs remind with the uid and gid of the specified name)
|
||||
|
||||
There are a number of graphical front-ends to remind. tkremind is
|
||||
included, but requires tcllib (available from SlackBuilds.org) as
|
||||
a run-time requirement. Using remind via the command-line (or via
|
||||
other front-ends) does not require tcllib.
|
186
office/remind/remind.SlackBuild
Normal file
186
office/remind/remind.SlackBuild
Normal file
|
@ -0,0 +1,186 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Remind
|
||||
|
||||
# Written by T3slider <t3slider@gmail.com>
|
||||
# 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=remind
|
||||
VERSION=${VERSION:-03.01.10}
|
||||
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
|
||||
|
||||
# Valid options for LANG are one of the following:
|
||||
# ENGLISH, GERMAN, DUTCH, FINNISH, FRENCH, NORWEGIAN, DANISH, POLISH, BRAZPORT,
|
||||
# ITALIAN, ROMANIAN, SPANISH, ICELANDIC
|
||||
LANGUAGE=${LANGUAGE:-ENGLISH}
|
||||
|
||||
# You can also pass your location via the following variables (this ensures that
|
||||
# sunrise, sunset, etc. work as expected for your location):
|
||||
# LAT_DEG, LAT_MIN, LAT_SEC, LON_DEG, LON_MIN, LON_SEC, LOCATION
|
||||
# By default these point to Ottawa, Ontario. From custom.h:
|
||||
|
||||
# LAT_DEG, LAT_MIN and LAT_SEC: Latitude of your location
|
||||
# LON_DEG, LON_MIN and LON_SEC: Longitude of your location
|
||||
# LOCATION: A string identifying your location.
|
||||
# All latitude and longitude numbers should be positive for the
|
||||
# northern and western hemisphere. If you live in the southern
|
||||
# hemisphere, ALL latitude values should be negative. If you live
|
||||
# in the eastern hemisphere, ALL longitude values should be negative.
|
||||
# The default values are initially set to Ottawa, Ontario, Canada.
|
||||
LAT_DEG=${LAT_DEG:-45}
|
||||
LAT_MIN=${LAT_MIN:-24}
|
||||
LAT_SEC=${LAT_SEC:-0}
|
||||
LON_DEG=${LON_DEG:-75}
|
||||
LON_MIN=${LON_MIN:-39}
|
||||
LON_SEC=${LON_SEC:-0}
|
||||
LOCATION=${LOCATION:-Ottawa}
|
||||
|
||||
# Default page size to use for Rem2PS. Options are Letter or A4.
|
||||
DEFAULT_PAGE=${DEFAULT_PAGE:-Letter}
|
||||
|
||||
# Default date separator (this works for input only). Options are
|
||||
# - or /
|
||||
DATESEP=${DATESEP:--}
|
||||
|
||||
# Default time separator. Options are : or .
|
||||
TIMESEP=${TIMESEP:-:}
|
||||
|
||||
# Character set to use. Options are ASCII, ISOLATIN1, ISOLATIN2,
|
||||
# IBMEXTENDED, or IBM852.
|
||||
CHARSET=${CHARSET:-ISOLATIN1}
|
||||
|
||||
# If you do not want the -u option (which runs remind with the
|
||||
# uid and gid of the specified name), pass "no" (without quotes)
|
||||
# to this option.
|
||||
WANTU=${WANTU:-yes}
|
||||
|
||||
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 . \
|
||||
\( -perm 777 -o -perm 775 -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 {} \;
|
||||
|
||||
# You can also use Tcl/Tk's `wish` to configure and build remind graphically,
|
||||
# but this is untested. If you wish to try, uncomment the following line:
|
||||
#wish ./build.tk
|
||||
# Note that this would also require commenting out everything up to (but NOT
|
||||
# including) the "make install" line below, since that should (in theory) be
|
||||
# done by the build.tk script. I don't know how this would affect the package
|
||||
# directories. I would advise passing the options as variables without using
|
||||
# wish unless you want to have fun.
|
||||
|
||||
# Set the proper options from the options passed to this script. Sorry for
|
||||
# the mess...
|
||||
sed -i "s/^\(#define LANG \).*/\1$LANGUAGE/" src/lang.h
|
||||
sed -i "s/^\(#define LAT_DEG \).*/\1$LAT_DEG/" src/custom.h
|
||||
sed -i "s/^\(#define LAT_MIN \).*/\1$LAT_MIN/" src/custom.h
|
||||
sed -i "s/^\(#define LAT_SEC \).*/\1$LAT_SEC/" src/custom.h
|
||||
sed -i "s/^\(#define LON_DEG \).*/\1$LON_DEG/" src/custom.h
|
||||
sed -i "s/^\(#define LON_MIN \).*/\1$LON_MIN/" src/custom.h
|
||||
sed -i "s/^\(#define LON_SEC \).*/\1$LON_SEC/" src/custom.h
|
||||
sed -i "s/^\(#define LOCATION \).*/\1\"$LOCATION\"/" src/custom.h
|
||||
if [ "$DEFAULT_PAGE" = "A4" ]; then
|
||||
sed -i 's|^#define DEFAULT_PAGE {"Letter", 612, 792}|/* & */|' src/custom.h
|
||||
sed -i 's|^\(/\* \)\(#define DEFAULT_PAGE {"A4", 595, 842}\)\( \*/\)|\2|' src/custom.h
|
||||
fi
|
||||
if [ "$DATESEP" = "/" ]; then
|
||||
sed -i "s|^#define DATESEP '-'|/* & */|" src/custom.h
|
||||
sed -i "s|^\(/\* \)\(#define DATESEP '/'\)\( \*/\)|\2|" src/custom.h
|
||||
fi
|
||||
if [ "$TIMESEP" = "." ]; then
|
||||
sed -i "s|^#define TIMESEP ':'|/* & */|" src/custom.h
|
||||
sed -i "s|^\(/\* \)\(#define TIMESEP '\.'\)\( \*/\)|\2|" src/custom.h
|
||||
fi
|
||||
sed -i "s/^\(#define ISOLATIN1 \).*/\1 0/" src/custom.h
|
||||
if [ "$CHARSET" != "ASCII" ]; then
|
||||
sed -i "s/^\(#define $CHARSET \).*/\1 1/" src/custom.h
|
||||
fi
|
||||
if [ "$WANTU" = "no" ]; then
|
||||
sed -i 's|^#define WANT_U_OPTION 1|/* & */|' src/custom.h
|
||||
fi
|
||||
|
||||
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 -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/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COPYRIGHT MICROSOFT-AND-APPLE README \
|
||||
$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}
|
10
office/remind/remind.info
Normal file
10
office/remind/remind.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="remind"
|
||||
VERSION="03.01.10"
|
||||
HOMEPAGE="http://www.roaringpenguin.com/products/remind"
|
||||
DOWNLOAD="http://www.roaringpenguin.com/files/download/remind-03.01.10.tar.gz"
|
||||
MD5SUM="f6f7829d3ac92e0d6d463c59b5e6ce3f"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="T3slider"
|
||||
EMAIL="t3slider@gmail.com"
|
||||
APPROVED="Niels Horn"
|
19
office/remind/slack-desc
Normal file
19
office/remind/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
remind: remind (a command-line calendar)
|
||||
remind:
|
||||
remind: Remind is a sophisticated command-line calendar and alarm program
|
||||
remind: with a sophisticated scripting language and intelligent handling of
|
||||
remind: exceptions and holidays.
|
||||
remind:
|
||||
remind: There are a number of graphical front-ends to remind. tkremind is
|
||||
remind: included.
|
||||
remind:
|
||||
remind: http://www.roaringpenguin.com/products/remind
|
||||
remind:
|
Loading…
Reference in a new issue