mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
office/lyx_qt4: Removed from 13.0 repository
This commit is contained in:
parent
9028667011
commit
69803f5aa6
4 changed files with 0 additions and 109 deletions
|
@ -1,12 +0,0 @@
|
|||
LyX - A WYSIWYM document processor.
|
||||
|
||||
LyX is for people that write and want their writing to look great,
|
||||
right out of the box. No more endless tinkering with formatting
|
||||
details, 'finger painting' font attributes or futzing around with
|
||||
page boundaries. You just write. In the background, Prof. Knuth's
|
||||
legendary TeX typesetting engine makes you look good.
|
||||
|
||||
This version of lyx (1.5.x) requires qt4 (qt-4.x), for which a build
|
||||
script is also available at SlackBuilds.org. Note that this package
|
||||
conflicts with the lyx-1.4.x package that links qt3, so pick one or
|
||||
the other.
|
|
@ -1,70 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for lyx
|
||||
|
||||
# Written by core (eroc@linuxmail.org)
|
||||
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||
|
||||
PRGNAM=lyx_qt4
|
||||
SRCNAM=lyx
|
||||
VERSION=1.5.3
|
||||
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"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $SRCNAM-$VERSION
|
||||
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
|
||||
cd $SRCNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--enable-shared=yes \
|
||||
--with-aspell \
|
||||
--with-ispell
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a ABOUT-NLS ANNOUNCE ChangeLog COPYING INSTALL* NEWS \
|
||||
README* RELEASE-NOTES UPGRADING $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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -1,8 +0,0 @@
|
|||
PRGNAM="lyx_qt4"
|
||||
VERSION="1.5.3"
|
||||
HOMEPAGE="http://www.lyx.org"
|
||||
DOWNLOAD="ftp://ftp.lyx.org/pub/lyx/stable/1.5.x/lyx-1.5.3.tar.gz"
|
||||
MD5SUM="26d5dbe16b84d7d0e0d22fb3e04b153c"
|
||||
MAINTAINER="core"
|
||||
EMAIL="eroc@linuxmail.org"
|
||||
APPROVED="rworkman"
|
|
@ -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------------------------------------------------------|
|
||||
lyx_qt4: LyX (WYSIWYM document processor)
|
||||
lyx_qt4:
|
||||
lyx_qt4: LyX is for people that write and want their writing to look great,
|
||||
lyx_qt4: right out of the box. No more endless tinkering with formatting
|
||||
lyx_qt4: details, 'finger painting' font attributes or futzing around with
|
||||
lyx_qt4: page boundaries. You just write. In the background, Prof. Knuth's
|
||||
lyx_qt4: legendary TeX typesetting engine makes you look good.
|
||||
lyx_qt4:
|
||||
lyx_qt4: Homepage: http://www.lyx.org
|
||||
lyx_qt4:
|
||||
lyx_qt4:
|
Loading…
Reference in a new issue