mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
multimedia/ProjectX: Removed (No SBo Maintainer).
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
f535b0688d
commit
35e3af563d
7 changed files with 0 additions and 155 deletions
|
@ -1,17 +0,0 @@
|
|||
Binary files Project-X_0.91.0.orig/ProjectX.jar and Project-X_0.91.0/ProjectX.jar differ
|
||||
Only in Project-X_0.91.0: build
|
||||
diff -ru Project-X_0.91.0.orig/build.sh Project-X_0.91.0/build.sh
|
||||
--- Project-X_0.91.0.orig/build.sh 2007-01-23 18:16:06.000000000 +0100
|
||||
+++ Project-X_0.91.0/build.sh 2012-12-05 09:47:17.502860392 +0100
|
||||
@@ -21,6 +21,11 @@
|
||||
mkdir -p build
|
||||
javac -encoding "ISO-8859-1" -deprecation -O -g:none -classpath lib/commons-net-1.3.0.jar:lib/jakarta-oro-2.0.8.jar -d build @sources.lst
|
||||
cp ./resources/* ./build
|
||||
+
|
||||
+cp -a htmls ReadMe.txt build
|
||||
+rm -f build/htmls/projectx_desc_de_pdf.zip
|
||||
+cp -a ReleaseNotes_0.91.0.txt build/ReleaseNotes.txt
|
||||
+
|
||||
jar cfvm ProjectX.jar MANIFEST.MF -C build .
|
||||
|
||||
######################################################
|
|
@ -1,94 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for ProjectX
|
||||
|
||||
# Copyright 2012 Roberto Neri, Palermo, 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=ProjectX
|
||||
VERSION=${VERSION:-0.91.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf Project-X_${VERSION}
|
||||
unzip $CWD/${PRGNAM}_${VERSION}.zip
|
||||
cd Project-X_${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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Fix directories permissions
|
||||
find . -type d -exec chmod 755 {} \;
|
||||
|
||||
# Patch the build script and rebuild the .jar file to include help files
|
||||
patch -p1 < $CWD/$PRGNAM-$VERSION.patch
|
||||
|
||||
sh build.sh
|
||||
|
||||
mkdir -p $PKG/opt/$PRGNAM/lib $PKG/usr/bin
|
||||
|
||||
cp -a MANIFEST.MF $PRGNAM.jar build.sh noguisources.lst sources.lst \
|
||||
resources src \
|
||||
$PKG/opt/$PRGNAM
|
||||
|
||||
cp -a lib/commons-net-1.3.0.jar \
|
||||
lib/jakarta-oro-2.0.8.jar \
|
||||
$PKG/opt/$PRGNAM/lib
|
||||
|
||||
cat > $PKG/usr/bin/$PRGNAM << EOF
|
||||
#!/bin/sh
|
||||
|
||||
java -Djava.library.path=/opt/$PRGNAM/lib -jar /opt/$PRGNAM/$PRGNAM.jar "\$@"
|
||||
|
||||
EOF
|
||||
|
||||
chmod 755 $PKG/usr/bin/$PRGNAM
|
||||
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
|
||||
install -m 644 $CWD/$PRGNAM.desktop \
|
||||
$PKG/usr/share/applications/$PRGNAM.desktop
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a Copying htmls/projectx_desc_de_pdf.zip \
|
||||
$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:-tgz}
|
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=ProjectX
|
||||
GenericName=ProjectX
|
||||
Comment=A video editing and demultiplexing tool
|
||||
Icon=package_multimedia
|
||||
Exec=ProjectX
|
||||
Terminal=false
|
||||
Categories=AudioVideo;
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="ProjectX"
|
||||
VERSION="0.91.0"
|
||||
HOMEPAGE="http://project-x.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/project-x/ProjectX_0.91.0.zip"
|
||||
MD5SUM="5cf7bb227abe2c16d34e8e9c84915291"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jdk"
|
||||
MAINTAINER="Roberto Neri"
|
||||
EMAIL="rneri@libero.it"
|
|
@ -1,2 +0,0 @@
|
|||
ProjectX is a video editing and demultiplexing tool, particularly
|
||||
useful for syncing and repairing captured DVB MPEG files.
|
|
@ -1,4 +0,0 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
|
@ -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------------------------------------------------------|
|
||||
ProjectX: ProjectX (DVB demux tool)
|
||||
ProjectX:
|
||||
ProjectX: ProjectX is a video editing and demultiplexing tool, particularly
|
||||
ProjectX: useful for syncing and repairing captured DVB MPEG files.
|
||||
ProjectX:
|
||||
ProjectX: Homepage: http://project-x.sourceforge.net/
|
||||
ProjectX:
|
||||
ProjectX:
|
||||
ProjectX:
|
||||
ProjectX:
|
||||
ProjectX:
|
Loading…
Reference in a new issue