diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2014-06-03 18:38:16 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-03 16:34:20 +0700 |
commit | 020684f4e1d8bd51ffa86de00b860f33dcaffaba (patch) | |
tree | ade0d069742d32dad8fde01b23b5d9a2b5c57d44 /network/spice-gtk/spice-gtk.SlackBuild | |
parent | 78f3266cb1a2ddfc0a267ac270f0c1a835c311e6 (diff) | |
download | slackbuilds-020684f4e1d8bd51ffa86de00b860f33dcaffaba.tar.gz |
network/spice-gtk: Updated for version 0.25.
Removed the libcacard dependency, added the qemu optional one
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/spice-gtk/spice-gtk.SlackBuild')
-rw-r--r-- | network/spice-gtk/spice-gtk.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/network/spice-gtk/spice-gtk.SlackBuild b/network/spice-gtk/spice-gtk.SlackBuild index fe573b5946..4088ced69f 100644 --- a/network/spice-gtk/spice-gtk.SlackBuild +++ b/network/spice-gtk/spice-gtk.SlackBuild @@ -22,7 +22,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=spice-gtk -VERSION=${VERSION:-0.23} +VERSION=${VERSION:-0.25} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -53,8 +53,9 @@ else LIBDIRSUFFIX="" fi -# enable support for usbredir if available +# enable support for usbredir and libcacard, if available if pkg-config --exists libusbredirhost; then usbredir="en"; else usbredir="dis"; fi +if pkg-config --exists libcacard; then cacard="en"; else cacard="dis"; fi if [ "$GTK" = "2" ]; then gtkver="2"; else gtkver="3"; fi DOCS="AUTHORS COPYING NEWS README THANKS TODO" @@ -97,6 +98,7 @@ CXXFLAGS="$SLKCFLAGS" \ --with-audio=gstreamer \ --disable-maintainer-mode \ --${usbredir}able-usbredir \ + --${cacard}able-smartcard \ --build=$ARCH-slackware-linux make |