diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2012-12-28 20:36:37 -0500 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-12-29 22:25:35 -0500 |
commit | 55e3705248a89f4fc48360d690081acef539f69e (patch) | |
tree | ba32d527016ff70282b172a51de62989cb1b1fa0 /system/xf86-video-qxl/xf86-video-qxl.SlackBuild | |
parent | bd735c121fff6c77a3735be16816f3b325484f36 (diff) | |
download | slackbuilds-55e3705248a89f4fc48360d690081acef539f69e.tar.gz |
system/xf86-video-qxl: Updated for version 0.1.0.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/xf86-video-qxl/xf86-video-qxl.SlackBuild')
-rw-r--r-- | system/xf86-video-qxl/xf86-video-qxl.SlackBuild | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/system/xf86-video-qxl/xf86-video-qxl.SlackBuild b/system/xf86-video-qxl/xf86-video-qxl.SlackBuild index 7848b6f6ff..48f9b20b1a 100644 --- a/system/xf86-video-qxl/xf86-video-qxl.SlackBuild +++ b/system/xf86-video-qxl/xf86-video-qxl.SlackBuild @@ -1,10 +1,28 @@ #!/bin/sh # Slackware build script for xf86-video-qxl -# written by Matteo Bernardini <ponce@slackbuilds.org> +# Copyright 2012 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy +# 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=xf86-video-qxl -VERSION=${VERSION:-20120823_a261bef} +VERSION=${VERSION:-0.1.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -56,9 +74,10 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# autogen.sh can be used in place of configure CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ -./autogen.sh \ +./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ @@ -79,7 +98,8 @@ if [ "${XSPICE:-no}" = "yes" ]; then $PKG/etc/X11/spiceqxl.xorg.conf.new install -m 0755 -D scripts/Xspice $PKG/usr/bin/Xspice else - rm -fr $PKG/usr/bin # we have nothing in bin + # we have nothing in bin + rm -fr $PKG/usr/bin fi find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ |