summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
author klaatu2022-03-09 17:36:20 +0100
committer Willy Sudiarto Raharjo2022-03-10 02:29:14 +0100
commiteac2ae8a204d1dfe33253f5c450ccea830e324d4 (patch)
tree29bbf78040d8a28972c4bf6047987aee3f89fe3d /multimedia
parentf4a424f8949fce2535851d7f18346464290dbfc4 (diff)
downloadslackbuilds-eac2ae8a204d1dfe33253f5c450ccea830e324d4.tar.gz
multimedia/lwks: Removed (membership and licensing changes).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/lwks/README39
-rw-r--r--multimedia/lwks/doinst.sh3
-rw-r--r--multimedia/lwks/lwks.SlackBuild71
-rw-r--r--multimedia/lwks/lwks.info10
-rw-r--r--multimedia/lwks/slack-desc19
5 files changed, 0 insertions, 142 deletions
diff --git a/multimedia/lwks/README b/multimedia/lwks/README
deleted file mode 100644
index dc1dc94403..0000000000
--- a/multimedia/lwks/README
+++ /dev/null
@@ -1,39 +0,0 @@
-lightworks (professional non-linear editing system)
-
-Lightworks is a cross-platform industry-grade NLE, having been used
-for films including Pulp Fiction, Hugo, and The King's Speech. It is
-free to use, but for additional codec support and technical support,
-you can purchase a variety of licenses from http://lwks.com
-
-Using Lightworks requires registration on lwks.com. It is free, but
-you must register in order to use the application. You can register in
-advance or after you launch Lightworks.
-
-Lightworks will work with Nvidia or AMD graphic cards, but Nvidia is
-recommended. Lightworks requires proprietary Nvidia drivers.
-
-Lightworks is 64bit only.
-
-System Recommendations:
------------------------
-
-From lwks.com:
-
-- Intel i7 chipset or faster, fast AMD chipset
-- 3GB RAM or higher
-- Two high-resolution displays (1920 x1080) or above
-- PCI Express graphics card (NVIDIA or ATI) with 1GB or higher
-- Separate media and system drives (these can be internal or external
- as long as the the interface is suitably fast)
-- Compatible sound card
-- 200MB Disk space for Lightworks installation
-- (Optional) a Lightworks Console.
-- (Optional) a Lightworks keyboard.
-
-From Klaatu:
-
-I run this on two machines:
-- AMD FX-6300 / 8gb RAM / Nvidia GeForce GT 630 (proprietary drivers)
-- Intel i7 / 16gb RAM / Intel HD Mobile 4000 (laptop)
-
-Both edit HD footage without a problem. Your mileage may vary.
diff --git a/multimedia/lwks/doinst.sh b/multimedia/lwks/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/multimedia/lwks/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/multimedia/lwks/lwks.SlackBuild b/multimedia/lwks/lwks.SlackBuild
deleted file mode 100644
index 804308a8e5..0000000000
--- a/multimedia/lwks/lwks.SlackBuild
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/bash
-# Slackware build script for lwks
-
-# Copyright 2015 Klaatu Wellington NZ
-# GNU All-Permissive License
-# Copying and distribution of this file, with or without modification,
-# are permitted in any medium without royalty provided the copyright
-# notice and this notice are preserved. This file is offered as-is,
-# without any warranty.
-
-# 20220214 bkw: this script now builds a correct package, but it's
-# still broken because this version of lightworks needs libjpeg.so.8
-# and the old openssl libcrypto.so.1.0.0.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=lwks
-VERSION=${VERSION:-14.0.0}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-ARCH=amd64
-
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-x86_64-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $PKG
-ar p $CWD/$PRGNAM-$VERSION-$ARCH.deb data.tar.xz | tar xJv
-cd $PKG
-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 {} \+
-
-## install
-mkdir -p $PKG/usr/share/fonts/TTF
-mv $PKG/usr/share/fonts/truetype $PKG/usr/share/fonts/TTF
-mv $PKG/usr/lib $PKG/usr/lib64
-
-# patch thanks to Christoph Willing
-sed -i 's|/usr/lib/lightworks/ntcardvt|/usr/lib64/lightworks/ntcardvt|' \
- $PKG/usr/bin/lightworks
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/doc/lightworks/* $PKG/usr/doc/$PRGNAM-$VERSION
-rm -rf $PKG/usr/share/doc
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-# editshare controller udev rules.
-# more thanks to Christoph Willing
-mkdir -p $PKG/etc/udev
-mv $PKG/lib/udev/rules.d $PKG/etc/udev/rules.d/
-
-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-x86_64-$BUILD$TAG.$PKGTYPE
diff --git a/multimedia/lwks/lwks.info b/multimedia/lwks/lwks.info
deleted file mode 100644
index 3a1a0bbf29..0000000000
--- a/multimedia/lwks/lwks.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="lwks"
-VERSION="14.0.0"
-HOMEPAGE="http://lwks.com"
-DOWNLOAD="UNSUPPORTED"
-MD5SUM=""
-DOWNLOAD_x86_64="http://downloads.lwks.com/v14/lwks-14.0.0-amd64.deb"
-MD5SUM_x86_64="17a60e8c2956f65dd578a14cf673b0d4"
-REQUIRES="nvidia-cg-toolkit"
-MAINTAINER="klaatu"
-EMAIL="klaatu@member.fsf.org"
diff --git a/multimedia/lwks/slack-desc b/multimedia/lwks/slack-desc
deleted file mode 100644
index 78799e7893..0000000000
--- a/multimedia/lwks/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------------------------------------------------------|
-lwks: lwks (professional NLE)
-lwks:
-lwks: Professional video editor used for films LA Confidential,
-lwks: Pulp Fiction, Heat, Road to Perdition, Hugo, The King's Speech,
-lwks: and many more. Features include reliable and efficient editing,
-lwks: titling, effects, basic compositing, colour correction, and much
-lwks: more.
-lwks:
-lwks: Purchase a Pro License from lwks.com for additional codec and
-lwks: technical support.
-lwks: