summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-07-09 23:31:23 -0500
committer Robby Workman <rworkman@slackbuilds.org>2013-10-29 23:31:36 -0500
commit192eebceeefbc1d974290cf495a38daab5f0cfdf (patch)
tree0859652aea9ed5dcd0c1e9bc7014f15f2fba0fd0
parentfb1ace464c0a73fcc2f0fc8a48a66543e025eac7 (diff)
downloadslackbuilds-192eebceeefbc1d974290cf495a38daab5f0cfdf.tar.gz
slackbuilds-192eebceeefbc1d974290cf495a38daab5f0cfdf.tar.xz
desktop/xcm: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--desktop/xcm/README4
-rw-r--r--desktop/xcm/slack-desc19
-rw-r--r--desktop/xcm/xcm.SlackBuild83
-rw-r--r--desktop/xcm/xcm.info10
4 files changed, 0 insertions, 116 deletions
diff --git a/desktop/xcm/README b/desktop/xcm/README
deleted file mode 100644
index d26ecd657c..0000000000
--- a/desktop/xcm/README
+++ /dev/null
@@ -1,4 +0,0 @@
-xcm is a tool based on libXcm, a library for colour management on X.
-* xcmddc requests EDID from a monitor over the i2c bus.
-* xcmedid is for parsing EDID data blocks.
-* xcmevents observes X11 colour management events.
diff --git a/desktop/xcm/slack-desc b/desktop/xcm/slack-desc
deleted file mode 100644
index 63ca73a20f..0000000000
--- a/desktop/xcm/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-xcm: xcm (colour management tool)
-xcm:
-xcm: xcm is a tools which based on libXcm, a library for colour management
-xcm: on X.
-xcm: * xcmddc requests EDID from a monitor over the i2c bus.
-xcm: * xcmedid is for parsing EDID data blocks.
-xcm: * xcmevents observes X11 colour management events.
-xcm:
-xcm:
-xcm:
-xcm:
diff --git a/desktop/xcm/xcm.SlackBuild b/desktop/xcm/xcm.SlackBuild
deleted file mode 100644
index 18267ca95b..0000000000
--- a/desktop/xcm/xcm.SlackBuild
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for xcm
-# Written by Diogo Leal (diogo@diogoleal.com)
-
-PRGNAM=xcm
-VERSION=${VERSION:-0.4.1}
-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 xvfj $CWD/$PRGNAM-$VERSION.tar.bz2
-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 {} \;
-
-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
-
-# --docdir does not work
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/doc/xcm/* $PKG/usr/doc/$PRGNAM-$VERSION/
-find $PKG/usr -type d -empty -depth -exec rmdir {} \;
-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}
diff --git a/desktop/xcm/xcm.info b/desktop/xcm/xcm.info
deleted file mode 100644
index e703642dab..0000000000
--- a/desktop/xcm/xcm.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="xcm"
-VERSION="0.4.1"
-HOMEPAGE="http://www.oyranos.org/"
-DOWNLOAD="http://downloads.sourceforge.net/oyranos/xcm-0.4.1.tar.bz2"
-MD5SUM="7ed79670e7ebb930309ba6989801041e"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Diogo Leal"
-EMAIL="diogo@diogoleal.com"