diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:06:40 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:06:40 +0200 |
commit | 6aa4ed7b9d16457385781a4698fb215779872006 (patch) | |
tree | 277ae1e0413b2ff410817de590091c8aec40ff69 /development | |
parent | 0037bb573e227f4158ee5d0b2fa5775393b4a9c5 (diff) | |
download | slackbuilds-6aa4ed7b9d16457385781a4698fb215779872006.tar.gz |
development/Amaya: Removed from 13.0 repository
Diffstat (limited to 'development')
-rw-r--r-- | development/Amaya/Amaya.SlackBuild | 114 | ||||
-rw-r--r-- | development/Amaya/Amaya.desktop | 10 | ||||
-rw-r--r-- | development/Amaya/Amaya.info | 8 | ||||
-rw-r--r-- | development/Amaya/Amaya.png | bin | 2561 -> 0 bytes | |||
-rw-r--r-- | development/Amaya/README | 22 | ||||
-rw-r--r-- | development/Amaya/doinst.sh | 8 | ||||
-rw-r--r-- | development/Amaya/slack-desc | 19 | ||||
-rw-r--r-- | development/Amaya/wrapper.amaya | 11 |
8 files changed, 0 insertions, 192 deletions
diff --git a/development/Amaya/Amaya.SlackBuild b/development/Amaya/Amaya.SlackBuild deleted file mode 100644 index 5093195aa2..0000000000 --- a/development/Amaya/Amaya.SlackBuild +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -# Slackware build script for Amaya -# Copyright (c) 2007 , Written by Alex Lysenka <me@alkos333.net> -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of the {company} nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "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 COPYRIGHT -# OWNER OR CONTRIBUTORS 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. -# -# -# Changed to version 11.0 by ks/22.01.2009 - -set -e - -PRGNAM=Amaya -VERSION=11.0 -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $TMP/$PRGNAM$VERSION -tar -xzvf $CWD/$(echo $PRGNAM |tr [A] [a])-sources-$VERSION.tgz -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -# Creating a subdirectory as specified in the README as we Have to run -# configure from within a subdir -mkdir -p $PRGNAM$VERSION/$PRGNAM/Slackware -cd $PRGNAM$VERSION/$PRGNAM/Slackware - -CFLAGS="$SLKFLAGS" \ -../configure \ - --prefix=$PKG/opt \ - --exec-prefix=$PKG/opt \ - --sysconfdir=$PKG/etc \ - --localstatedir=$PKG/var \ - --enable-system-raptor \ - --build=$ARCH-slackware-linux - -make -make install - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $TMP/$PRGNAM$VERSION/$PRGNAM/README* $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# Creating /usr/bin/amaya-wx symbolic link -mkdir -p $PKG/usr/bin -( cd $PKG/usr/bin - ln -sf ../../opt/$PRGNAM/wx/bin/amaya amaya -) - -# Deleting useless files -rm -rf $PKG/opt/bin - -# Fix the amaya wrapper script -install -m 0755 $CWD/wrapper.amaya $PKG/opt/$PRGNAM/wx/bin/amaya - -#desktop file -mkdir -p $PKG/usr/share/{pixmaps,applications} -cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop -cp $CWD/$PRGNAM.png $PKG/usr/share/pixmaps/ - -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.tgz - diff --git a/development/Amaya/Amaya.desktop b/development/Amaya/Amaya.desktop deleted file mode 100644 index 1805176ffb..0000000000 --- a/development/Amaya/Amaya.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Amaya -Comment=Edit the Web -Categories=Application;Development; -Exec=/opt/Amaya/wx/bin/amaya %u -Icon=/usr/share/pixmaps/Amaya.png -Terminal=false -Type=Application -MimeType=text/html;text/xml;application/xhtml+xml;application/xml diff --git a/development/Amaya/Amaya.info b/development/Amaya/Amaya.info deleted file mode 100644 index 848b1863d7..0000000000 --- a/development/Amaya/Amaya.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="Amaya" -VERSION="11.0" -HOMEPAGE="http://www.w3.org/Amaya" -DOWNLOAD="http://www.w3.org/Amaya/Distribution/amaya-sources-11.0.tgz" -MD5SUM="d5ebaf20528373effcea7978f8856b6d" -MAINTAINER="Kai Schreyer" -EMAIL="kabrus@go4more.de" -APPROVED="dsomero, michiel" diff --git a/development/Amaya/Amaya.png b/development/Amaya/Amaya.png Binary files differdeleted file mode 100644 index c77fa2f56b..0000000000 --- a/development/Amaya/Amaya.png +++ /dev/null diff --git a/development/Amaya/README b/development/Amaya/README deleted file mode 100644 index 144c7d7df1..0000000000 --- a/development/Amaya/README +++ /dev/null @@ -1,22 +0,0 @@ -Amaya is a Web editor, i.e. a tool used to create and update documents directly -on the Web. Browsing features are seamlessly integrated with the editing and -remote access features in a uniform environment. This follows the original -vision of the Web as a space for collaboration and not just a one-way -publishing medium. - -Work on Amaya started at W3C in 1996 to showcase Web technologies in a -fully-featured Web client. The main motivation for developing Amaya was to -provide a framework that can integrate as many W3C technologies as possible. -It is used to demonstrate these technologies in action while taking advantage -of their combination in a single, consistent environment. - -Amaya started as an HTML + CSS style sheets editor. Since that time it was -extended to support XML and an increasing number of XML applications such as -the XHTML family, MathML, and SVG. It allows all those vocabularies to be -edited simultaneously in compound document - -NOTE: Since Amaya 11.0 the --enable-system-raptor option is used to build -the package. Therefore the raptor library, also available at SlackBuilds.org, -is required to build this package. Without this option the build currently -exits with errors. Maybe this changes in the future, so that the dependency -will be then obsolete again. diff --git a/development/Amaya/doinst.sh b/development/Amaya/doinst.sh deleted file mode 100644 index caecc9996d..0000000000 --- a/development/Amaya/doinst.sh +++ /dev/null @@ -1,8 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications -fi - -if [ -x /usr/bin/update-mime-database ]; then - /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 -fi - diff --git a/development/Amaya/slack-desc b/development/Amaya/slack-desc deleted file mode 100644 index a28b39752c..0000000000 --- a/development/Amaya/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 ':'. - - |-----handy-ruler------------------------------------------------------| -Amaya: Amaya (W3C complete web browsing and authoring environment) -Amaya: -Amaya: Amaya is a Web editor, i.e. a tool used to create and update -Amaya: documents directly on the Web. Browsing features are seamlessly -Amaya: integrated with the editing and remote access features in a uniform -Amaya: environment. This follows the original vision of the Web as a space -Amaya: for collaboration and not just a one-way publishing medium. -Amaya: -Amaya: Homepage: http://www.w3.org/Amaya -Amaya: -Amaya: diff --git a/development/Amaya/wrapper.amaya b/development/Amaya/wrapper.amaya deleted file mode 100644 index 4f9c6f7ed2..0000000000 --- a/development/Amaya/wrapper.amaya +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Script to launchs amaya_bin -# Irene Vatton, 2007 -# - -AMAYA_INSTALLDIR="Amaya" -PREFIX=/opt -AMAYAGUI="wx" - -env XLIB_SKIP_ARGB_VISUALS=1 G_SLICE="always-malloc" $PREFIX/$AMAYA_INSTALLDIR/$AMAYAGUI/bin/amaya_bin ${1+$@} |