libraries/lablgtk: Initial import
This commit is contained in:
parent
8f153419ee
commit
05e492f455
|
@ -0,0 +1,19 @@
|
||||||
|
LablGTK is an Objective Caml interface to gtk+/gtk+-2
|
||||||
|
|
||||||
|
It uses the rich type system of Objective Caml 3 to provide a strongly typed,
|
||||||
|
yet very comfortable, object-oriented interface to gtk+. This is not that easy
|
||||||
|
if you know the dynamic typing approach taken by gtk+.
|
||||||
|
|
||||||
|
It is still under development, but already fully functional. All widgets (but
|
||||||
|
one) are available, with almost all their methods. The GLArea widget is also
|
||||||
|
supported in combination with LablGL. LibGlade and GdkPixbuf support is also
|
||||||
|
included for both versions. LablGTK2 adds support for gnomecanvas, librsvg and
|
||||||
|
libpanel Many examples are provided.
|
||||||
|
|
||||||
|
Objective Caml threads are supported, including for the toplevel, which allows
|
||||||
|
for interactive use of the library. Since release 1.2.1, LablGTK contains
|
||||||
|
support for rapid development with glade, through an interface wrapper compiler,
|
||||||
|
and a libglade binding. You can also find code generators in the tools section.
|
||||||
|
|
||||||
|
You need an ocaml compiler (available on http://slackbuilds.org) to use and/or
|
||||||
|
to compile.
|
|
@ -0,0 +1,55 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for lablgtk
|
||||||
|
# Written by fdeak <ferenc.deak@gmail.com>
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
PRGNAM=lablgtk
|
||||||
|
VERSION=2.6.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"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar xzf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a-s .
|
||||||
|
|
||||||
|
./configure --prefix=/usr
|
||||||
|
sed -i -e "s/\\(CFLAGS = .*\\)/\\1 ${SLKCFLAGS}/" src/Makefile
|
||||||
|
sed -i -e "s/\\(CFLAGS += -O\\)/CFLAGS +=/" src/Makefile
|
||||||
|
make world
|
||||||
|
make DESTDIR=$PKG install
|
||||||
|
|
||||||
|
( 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
|
||||||
|
)
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a CHANGES CHANGES.API COPYING README \
|
||||||
|
$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
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
PRGNAM="lablgtk"
|
||||||
|
VERSION="2.6.0"
|
||||||
|
HOMEPAGE="http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgtk.html"
|
||||||
|
DOWNLOAD="http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/lablgtk-2.6.0.tar.gz"
|
||||||
|
MD5SUM="47319aacbbb761323bdfab67513829df"
|
||||||
|
MAINTAINER="fdeak"
|
||||||
|
EMAIL="ferenc.deak@gmail.com"
|
||||||
|
APPROVED="BP{k}"
|
|
@ -0,0 +1,11 @@
|
||||||
|
lablgtk: LablGTK (an Objective Caml interface to gtk+/gtk+-2)
|
||||||
|
lablgtk:
|
||||||
|
lablgtk: LablGTK uses the rich type system of Objective Caml 3 to provide a
|
||||||
|
lablgtk: strongly typed, yet very comfortable, object-oriented interface to
|
||||||
|
lablgtk: gtk+.
|
||||||
|
lablgtk:
|
||||||
|
lablgtk: It is still under development, but already fully functional. All
|
||||||
|
lablgtk: widgets (but one) are available, with almost all their methods. The
|
||||||
|
lablgtk: GLArea widget is also supported in combination with LablGL. LibGlade
|
||||||
|
lablgtk: and GdkPixbuf support is also included for both versions. LablGTK2
|
||||||
|
lablgtk: adds support for gnomecanvas, librsvg and libpanel.
|
Loading…
Reference in New Issue