diff options
author | Petar Petrov <slackalaxy@gmail.com> | 2023-04-28 02:05:38 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-29 18:11:40 +0700 |
commit | 31f85da1765328a3a6f113702156766f6be9431f (patch) | |
tree | 112563d733c602667ba936bef40c7b6628025fd7 /office/gnumeric-gtk2 | |
parent | 66084cb7c463bc2d92d3d245fdb497b1879c1d55 (diff) |
office/gnumeric-gtk2: Added (GNOME spreadsheet app)
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/gnumeric-gtk2')
-rw-r--r-- | office/gnumeric-gtk2/README | 9 | ||||
-rw-r--r-- | office/gnumeric-gtk2/doinst.sh | 27 | ||||
-rw-r--r-- | office/gnumeric-gtk2/gnumeric-gtk2.SlackBuild | 119 | ||||
-rw-r--r-- | office/gnumeric-gtk2/gnumeric-gtk2.info | 10 | ||||
-rw-r--r-- | office/gnumeric-gtk2/slack-desc | 19 |
5 files changed, 184 insertions, 0 deletions
diff --git a/office/gnumeric-gtk2/README b/office/gnumeric-gtk2/README new file mode 100644 index 000000000000..a11f1ebe31b3 --- /dev/null +++ b/office/gnumeric-gtk2/README @@ -0,0 +1,9 @@ +This is the last GTK2 version of Gnumeric. It will conflict with the +latest one, so don't install both. + +The Gnumeric spreadsheet is part of the GNOME desktop environment: +a project to create a free, user friendly desktop environment. +The goal of Gnumeric is to be the best possible spreadsheet. We are +not attempting to clone existing applications. However, Gnumeric can +read files saved with other spreadsheets and we offer a customizable +feel that attempts to minimize the costs of transition. diff --git a/office/gnumeric-gtk2/doinst.sh b/office/gnumeric-gtk2/doinst.sh new file mode 100644 index 000000000000..efc109a8c2ac --- /dev/null +++ b/office/gnumeric-gtk2/doinst.sh @@ -0,0 +1,27 @@ +schema_install() { + SCHEMA="$1" + GCONF_CONFIG_SOURCE="xml::etc/gconf/gconf.xml.defaults" \ + chroot . gconftool-2 --makefile-install-rule \ + /etc/gconf/schemas/$SCHEMA \ + 1>/dev/null 2>/dev/null +} + +schema_install gnumeric-dialogs.schemas +schema_install gnumeric-general.schemas +schema_install gnumeric-plugins.schemas + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + +if [ -e usr/share/glib-2.0/schemas ]; then + if [ -x /usr/bin/glib-compile-schemas ]; then + /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1 + fi +fi diff --git a/office/gnumeric-gtk2/gnumeric-gtk2.SlackBuild b/office/gnumeric-gtk2/gnumeric-gtk2.SlackBuild new file mode 100644 index 000000000000..c5bfc2d28b52 --- /dev/null +++ b/office/gnumeric-gtk2/gnumeric-gtk2.SlackBuild @@ -0,0 +1,119 @@ +#!/bin/bash + +# Slackware build script for gnumeric-gtk2 + +# Modified 2023 Petar Petrov slackalaxy@gmail.com +# Copyright 2010,2011 Robby Workman, Northport, Alabama, USA +# 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=gnumeric-gtk2 +SRCNAM=gnumeric +VERSION=${VERSION:-1.10.17} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -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 $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2 +cd $SRCNAM-$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 {} \; + +# Thanks to mancha for this gem :-) +# The docs will still be missing, but at least we can build the app itself +touch doc/C/gnumeric-C.omf.out + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-schemas-install \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +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 \ + AUTHORS BEVERAGES BUGS COPYING HACKING MAINTAINERS NEWS 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 +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/office/gnumeric-gtk2/gnumeric-gtk2.info b/office/gnumeric-gtk2/gnumeric-gtk2.info new file mode 100644 index 000000000000..ee97ea486059 --- /dev/null +++ b/office/gnumeric-gtk2/gnumeric-gtk2.info @@ -0,0 +1,10 @@ +PRGNAM="gnumeric-gtk2" +VERSION="1.10.17" +HOMEPAGE="http://www.gnumeric.org/" +DOWNLOAD="https://download.gnome.org/sources/gnumeric/1.10/gnumeric-1.10.17.tar.bz2" +MD5SUM="aacc0899222c98fa9cdd85c49a6840be" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="goffice0.8" +MAINTAINER="Petar Petrov" +EMAIL="slackalaxy@gmail.com" diff --git a/office/gnumeric-gtk2/slack-desc b/office/gnumeric-gtk2/slack-desc new file mode 100644 index 000000000000..68efbc266c1a --- /dev/null +++ b/office/gnumeric-gtk2/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------------------------------------------------------| +gnumeric-gtk2: gnumeric-gtk2 (GNOME spreadsheet app) +gnumeric-gtk2: +gnumeric-gtk2: The Gnumeric spreadsheet is part of the GNOME desktop environment: +gnumeric-gtk2: a project to create a free, user friendly desktop environment. +gnumeric-gtk2: The goal of Gnumeric is to be the best possible spreadsheet. We are +gnumeric-gtk2: not attempting to clone existing applications. However, Gnumeric can +gnumeric-gtk2: read files saved with other spreadsheets and we offer a customizable +gnumeric-gtk2: feel that attempts to minimize the costs of transition. +gnumeric-gtk2: +gnumeric-gtk2: Homepage: http://projects.gnome.org/gnumeric/ +gnumeric-gtk2: |