mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
libraries/wxX11: Added to 12.0 repository
This commit is contained in:
parent
0eca46f72b
commit
51f68d81fb
4 changed files with 98 additions and 0 deletions
9
libraries/wxX11/README
Normal file
9
libraries/wxX11/README
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
wxWidgets lets developers create applications for Win32, Mac OS X, GTK+, X11,
|
||||||
|
Motif, WinCE, and more using one codebase. It can be used from languages such
|
||||||
|
as C++, Python, Perl, and C#/.NET. Unlike other cross- platform toolkits,
|
||||||
|
wxWidgets applications look and feel native. This is because wxWidgets uses
|
||||||
|
the platform's own native controls rather than emulating them.
|
||||||
|
|
||||||
|
This package is built with the '--disable-gui' flag, which requires GTK1 or
|
||||||
|
GTK2. If you need it for that purpose, then you need to track down those gtk
|
||||||
|
dependencies.
|
19
libraries/wxX11/slack-desc
Normal file
19
libraries/wxX11/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# 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------------------------------------------------------|
|
||||||
|
wxX11: wxX11 (wxWidgets application framework)
|
||||||
|
wxX11:
|
||||||
|
wxX11: wxWidgets lets developers create applications for
|
||||||
|
wxX11: Win32, Mac OS X, GTK+, X11, Motif, WinCE, and more using
|
||||||
|
wxX11: one codebase. It can be used from languages such as
|
||||||
|
wxX11: C++, Python, Perl, and C#/.NET. Unlike other cross-
|
||||||
|
wxX11: platform toolkits, wxWidgets applications look and
|
||||||
|
wxX11: feel native. This is because wxWidgets uses the
|
||||||
|
wxX11: platform's own native controls rather than emulating them.
|
||||||
|
wxX11:
|
||||||
|
wxX11: http://www.wxwidgets.org
|
62
libraries/wxX11/wxX11.SlackBuild
Normal file
62
libraries/wxX11/wxX11.SlackBuild
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for wxX11
|
||||||
|
|
||||||
|
PRGNAM=wxX11
|
||||||
|
VERSION=2.8.7
|
||||||
|
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 # Exit on most errors
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
chown -R root:root .
|
||||||
|
find . \
|
||||||
|
\( -perm 777 -o -perm 775 -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 {} \;
|
||||||
|
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--disable-gui \
|
||||||
|
--mandir=/usr/man
|
||||||
|
|
||||||
|
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 || 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 docs/* $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
|
8
libraries/wxX11/wxX11.info
Normal file
8
libraries/wxX11/wxX11.info
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
PRGNAM="wxX11"
|
||||||
|
VERSION="2.8.7"
|
||||||
|
HOMEPAGE="http://www.wxwidgets.org"
|
||||||
|
DOWNLOAD="http://downloads.sourceforge.net/wxwindows/wxX11-2.8.7.tar.gz"
|
||||||
|
MD5SUM="df82508b4cfbff6c81eb5539ef6a0932"
|
||||||
|
MAINTAINER="Vincent Batts"
|
||||||
|
EMAIL="vbatts@batts.mine.nu"
|
||||||
|
APPROVED="David Somero"
|
Loading…
Reference in a new issue