libraries/gtkglext: Updated for version 1.2.0
This commit is contained in:
parent
4d8909c721
commit
86817acae9
|
@ -35,8 +35,13 @@ OUTPUT=${OUTPUT:-/tmp}
|
|||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -59,16 +64,20 @@ CFLAGS="$SLKCFLAGS" \
|
|||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--disable-static \
|
||||
--enable-gtk-doc \
|
||||
--enable-debug=no
|
||||
--enable-debug=no \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
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
|
||||
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
|
||||
|
|
|
@ -1,11 +1,19 @@
|
|||
gtkglext: GtkGLExt is an OpenGL extension to GTK.
|
||||
# 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------------------------------------------------------|
|
||||
gtkglext: GtkGLExt (an OpenGL extension to GTK)
|
||||
gtkglext:
|
||||
gtkglext: This package is composed of GdkGLExt library and GtkGLExt library.
|
||||
gtkglext: GdkGLExt library provides the GDK objects which support OpenGL
|
||||
gtkglext: rendering in GTK. GtkGLExt library provides the GtkWidget API
|
||||
gtkglext: add-ons to make GTK+ widgets OpenGL-capable.
|
||||
gtkglext:
|
||||
gtkglext:
|
||||
gtkglext: http://www.k-3d.org/gtkglext/Main_Page
|
||||
gtkglext:
|
||||
gtkglext:
|
||||
gtkglext:
|
||||
gtkglext:
|
||||
gtkglext:
|
||||
gtkglext:
|
||||
|
|
Loading…
Reference in New Issue