summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author Lenard Spencer <lspencer31@cfl.rr.com>2018-04-23 23:50:35 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2018-04-23 23:50:35 +0700
commitc2ad7aeb89247fc5505faa93c7c16bf71869131a (patch)
treee3948fc1e57eaa347b68a3eacc83a2dcbdc04aaa /office
parent5d9424313f4bbbd989e2ee74a0c0f69036d80d5c (diff)
downloadslackbuilds-c2ad7aeb89247fc5505faa93c7c16bf71869131a.tar.gz
slackbuilds-c2ad7aeb89247fc5505faa93c7c16bf71869131a.tar.xz
office/gnucash3-docs: Added (Gnucash3 help and user guides).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r--office/gnucash3-docs/README18
-rw-r--r--office/gnucash3-docs/gnucash3-docs.SlackBuild96
-rw-r--r--office/gnucash3-docs/gnucash3-docs.info10
-rw-r--r--office/gnucash3-docs/slack-desc19
4 files changed, 143 insertions, 0 deletions
diff --git a/office/gnucash3-docs/README b/office/gnucash3-docs/README
new file mode 100644
index 0000000000..b9695a7c67
--- /dev/null
+++ b/office/gnucash3-docs/README
@@ -0,0 +1,18 @@
+This is the documentation package for Gnucash3.
+
+This builds the internal help and user guides for Gnucash3.
+
+For the HTML help and user guides to read outside the Gnucash3
+application, pass HTML="yes" to the script.
+
+For a specific language, pass DOCLANG="xx", where xx is:
+C for English (default)
+de for German
+it for Italian
+pt for Portugese
+ja for Japanese (guide only, no help - defaults to C)
+ru for Russian (guide only, no help - defaults to C)
+
+Note: This script builds the internal guides in all available
+languages, but the HTML guides are only in the spacified language
+to save space and avoid any excessive package bloat.
diff --git a/office/gnucash3-docs/gnucash3-docs.SlackBuild b/office/gnucash3-docs/gnucash3-docs.SlackBuild
new file mode 100644
index 0000000000..df46b9e512
--- /dev/null
+++ b/office/gnucash3-docs/gnucash3-docs.SlackBuild
@@ -0,0 +1,96 @@
+#!/bin/sh
+
+# Slackware build script for gnucash-docs
+
+# Copyright 2018 Lenard Spencer <lspencer31@cfl.rr.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=gnucash3-docs
+DESTNAM=gnucash
+VERSION=${VERSION:-3.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$DESTNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+ARCH=noarch # does not install any binary files
+
+# Set DOCLANG to C if it is empty:
+if [ ! "$DOCLANG" ]; then
+ DOCLANG=C
+fi
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $DESTNAM-docs-$VERSION
+tar xvf $CWD/$DESTNAM-docs-$VERSION.tar.?z*
+cd $DESTNAM-docs-$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 {} \;
+
+./configure \
+ --prefix=/usr \
+ --docdir=/usr/doc/$DESTNAM-$VERSION
+
+make
+make -j1 install DESTDIR=$PKG docdir=/usr/doc/$DESTNAM-$VERSION
+
+# Build and install the HTML docs for the specified language (default to C)
+
+BUILDHTML=""
+if [ "$HTML" = "yes" ]; then
+ BUILDHTML="_html"
+ mkdir -p $PKG/usr/doc/$DESTNAM-$VERSION/html
+ cd guide/${DOCLANG:-C} || cd guide/C
+ echo "in `pwd`"
+ sleep 2
+ make html
+ cp -vR gnucash-guide $PKG/usr/doc/$DESTNAM-$VERSION/html
+ cd ../../help/${DOCLANG:-C} || cd ../../help/C
+ echo "in `pwd`"
+ sleep 2
+ make html
+ cp -vR gnucash-help $PKG/usr/doc/$DESTNAM-$VERSION/html
+ cd ../..
+fi
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -p -l y -c n $OUTPUT/$PRGNAM-$VERSION$BUILDHTML-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/office/gnucash3-docs/gnucash3-docs.info b/office/gnucash3-docs/gnucash3-docs.info
new file mode 100644
index 0000000000..648f432691
--- /dev/null
+++ b/office/gnucash3-docs/gnucash3-docs.info
@@ -0,0 +1,10 @@
+PRGNAM="gnucash3-docs"
+VERSION="3.0"
+HOMEPAGE="http://www.gnucash.org"
+DOWNLOAD="http://downloads.sourceforge.net/gnucash/gnucash-docs-3.0.tar.gz"
+MD5SUM="eca6089d3feacde503981cfbd2917735"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES="gnucash3 rarian yelp"
+MAINTAINER="Lenard Spencer"
+EMAIL="lspencer31@cfl.rr.com"
diff --git a/office/gnucash3-docs/slack-desc b/office/gnucash3-docs/slack-desc
new file mode 100644
index 0000000000..3f7447c002
--- /dev/null
+++ b/office/gnucash3-docs/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------------------------------------------------------|
+gnucash3-docs: gnucash3-docs (Gnucash3 help and user guides)
+gnucash3-docs:
+gnucash3-docs: Documentation files for Gnucash3
+gnucash3-docs:
+gnucash3-docs: http://www.gnucash.org
+gnucash3-docs:
+gnucash3-docs:
+gnucash3-docs:
+gnucash3-docs:
+gnucash3-docs:
+gnucash3-docs: