diff options
author | Bob Funk <bobfunk11@gmail.com> | 2023-04-13 01:42:24 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-15 07:15:22 +0700 |
commit | 99fa819421df7382b441307cf7c71c60e4f49e1f (patch) | |
tree | 696e9f7f88c25014a435bd5f10e82303fe33c799 /system | |
parent | 9c78d47afccd9730d14996faa20f0ac0ebcaecfb (diff) |
system/gnome-color-manager: Added (GNOME Color Profile Manager)
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/gnome-color-manager/README | 28 | ||||
-rw-r--r-- | system/gnome-color-manager/doinst.sh | 10 | ||||
-rw-r--r-- | system/gnome-color-manager/gnome-color-manager.SlackBuild | 113 | ||||
-rw-r--r-- | system/gnome-color-manager/gnome-color-manager.info | 10 | ||||
-rw-r--r-- | system/gnome-color-manager/slack-desc | 19 |
5 files changed, 180 insertions, 0 deletions
diff --git a/system/gnome-color-manager/README b/system/gnome-color-manager/README new file mode 100644 index 000000000000..6efa2cb6f661 --- /dev/null +++ b/system/gnome-color-manager/README @@ -0,0 +1,28 @@ +GNOME Color Manager is a session framework that makes it easy to +manage, install and generate color profiles in the GNOME desktop. + +This project has the following features: + +- Setting output gamma tables (with local brightness and adjustments) + to any Xrandr output (falling back to the per-screen methods for + drivers that do not yet support Xrandr 1.3). + +- Setting of settings at session start, and when monitors are + hotplugged. + +- Easy install of vendor supplied ICC or ICM files, just by double + clicking on the file. + +- Easy display calibration using an external calibration device, and + scanner calibration using a inexpensive IT 8.7 target. For + calibration, the ArgyllCMS package is required. + +- Integration X11 by setting the per-screen and per-output _ICC_PROFILE + atom, which makes applications such as the GIMP use a color managed + output. + +- Easy to use DBus interface for applications to query what ICC + profiles should be used for a specific device or device type. This is + session activated and is only started when it is needed, and quits + after a small period of idleness. + diff --git a/system/gnome-color-manager/doinst.sh b/system/gnome-color-manager/doinst.sh new file mode 100644 index 000000000000..4a25de5e6fbd --- /dev/null +++ b/system/gnome-color-manager/doinst.sh @@ -0,0 +1,10 @@ +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 + diff --git a/system/gnome-color-manager/gnome-color-manager.SlackBuild b/system/gnome-color-manager/gnome-color-manager.SlackBuild new file mode 100644 index 000000000000..48878edab3e8 --- /dev/null +++ b/system/gnome-color-manager/gnome-color-manager.SlackBuild @@ -0,0 +1,113 @@ +#!/bin/bash + +# Slackware build script for gnome-color-manager + +# Copyright 2023, Bob Funk, Winnipeg Canada +# 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=gnome-color-manager +VERSION=${VERSION:-3.36.0} +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 $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +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 {} \; + +mkdir build +cd build + CFLAGS="$SLKCFLAGS" \ + CXXFLAGS="$SLKCFLAGS" \ + meson .. \ + --buildtype=release \ + --infodir=/usr/info \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --localstatedir=/var \ + --mandir=/usr/man \ + --prefix=/usr \ + --sysconfdir=/etc \ + -Dstrip=true + "${NINJA:=ninja}" + DESTDIR=$PKG $NINJA install +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 + +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 COMMITMENT COPYING MAINTAINERS README RELEASE \ + $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/system/gnome-color-manager/gnome-color-manager.info b/system/gnome-color-manager/gnome-color-manager.info new file mode 100644 index 000000000000..1fe87df1a62b --- /dev/null +++ b/system/gnome-color-manager/gnome-color-manager.info @@ -0,0 +1,10 @@ +PRGNAM="gnome-color-manager" +VERSION="3.36.0" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-color-manager" +DOWNLOAD="https://download.gnome.org/sources/gnome-color-manager/3.36/gnome-color-manager-3.36.0.tar.xz" +MD5SUM="c5360705a68e88455b1801200e9aaa2e" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="colord" +MAINTAINER="Bob Funk" +EMAIL="bobfunk11@gmail.com" diff --git a/system/gnome-color-manager/slack-desc b/system/gnome-color-manager/slack-desc new file mode 100644 index 000000000000..281711fb4ba2 --- /dev/null +++ b/system/gnome-color-manager/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------------------------------------------------------| +gnome-color-manager: gnome-color-manager (GNOME Color Profile Manager) +gnome-color-manager: +gnome-color-manager: GNOME Color Manager is a session framework that makes it easy to +gnome-color-manager: manage, install and generate color profiles in the GNOME desktop. +gnome-color-manager: +gnome-color-manager: +gnome-color-manager: +gnome-color-manager: +gnome-color-manager: +gnome-color-manager: https://gitlab.gnome.org/GNOME/gnome-color-manager +gnome-color-manager: |