diff options
author | Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com> | 2022-04-16 09:19:19 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-16 12:12:53 +0700 |
commit | 6cf58714b33fda76c37285bd5e0b7141648f5878 (patch) | |
tree | fac6b0d204a190b9397c47c88b520ad7c063d8ea /libraries/cogl | |
parent | c512c10d871c040fa46f9d8c1b96444ce6db4fa2 (diff) |
libraries/cogl: Added (3D Graphics API).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/cogl')
-rw-r--r-- | libraries/cogl/README | 11 | ||||
-rw-r--r-- | libraries/cogl/cogl.SlackBuild | 133 | ||||
-rw-r--r-- | libraries/cogl/cogl.info | 10 | ||||
-rw-r--r-- | libraries/cogl/slack-desc | 19 |
4 files changed, 173 insertions, 0 deletions
diff --git a/libraries/cogl/README b/libraries/cogl/README new file mode 100644 index 000000000000..adfda78b2722 --- /dev/null +++ b/libraries/cogl/README @@ -0,0 +1,11 @@ +Cogl is a small open source library for using 3D graphics hardware for +rendering. The API departs from the flat state machine style of OpenGL +and is designed to make it easy to write orthogonal components that +can render without stepping on each others toes. + +Having other backends, besides OpenGL, such as drm, Gallium or D3D are +options we are interested in for the future. + +Below variables can be used to configure the build: + GTKDOC=yes : Use gtk-doc to build documentation + INTROSPECTION=yes : Enable introspection for this build diff --git a/libraries/cogl/cogl.SlackBuild b/libraries/cogl/cogl.SlackBuild new file mode 100644 index 000000000000..4d019dace6ab --- /dev/null +++ b/libraries/cogl/cogl.SlackBuild @@ -0,0 +1,133 @@ +#!/bin/bash + +# Slackware build script for cogl + +# Copyright 2022 Ozan Türkyılmaz +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=cogl +VERSION=${VERSION:-1.22.8} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +GTKDOC=${GTKDOC:-no} +INTROSPECTION=${INTROSPECTION:-no} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --disable-silent-rules \ + --disable-profile \ + --enable-glib \ + --enable-gdk-pixbuf \ + --enable-cogl-pango \ + --enable-cogl-gst \ + --enable-cogl-path \ + --enable-gles1 \ + --enable-gles2 \ + --enable-gl \ + --enable-cogl-gles2 \ + --enable-glx \ + --enable-sdl2 \ + --enable-gtk-doc="$GTKDOC" \ + --enable-introspection="$INTROSPECTION" \ + --enable-xlib-egl-platform \ + --enable-wayland-egl-server \ + --enable-wayland-egl-platform \ + --enable-kms-egl-platform \ + --enable-examples-install=no \ + --with-x \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + ABOUT-NLS COPYING ChangeLog NEWS 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.$PKGTYPE diff --git a/libraries/cogl/cogl.info b/libraries/cogl/cogl.info new file mode 100644 index 000000000000..597ba4ed6ac8 --- /dev/null +++ b/libraries/cogl/cogl.info @@ -0,0 +1,10 @@ +PRGNAM="cogl" +VERSION="1.22.8" +HOMEPAGE="https://www.gnome.org/" +DOWNLOAD="https://download.gnome.org/sources/cogl/1.22/cogl-1.22.8.tar.xz" +MD5SUM="7dd8b2e24171ef7399f851cea144b569" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Ozan Türkyılmaz" +EMAIL="ozan.turkyilmaz@gmail.com" diff --git a/libraries/cogl/slack-desc b/libraries/cogl/slack-desc new file mode 100644 index 000000000000..e1d719e17912 --- /dev/null +++ b/libraries/cogl/slack-desc @@ -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------------------------------------------------------| +cogl: cogl (3D graphics API) +cogl: +cogl: Cogl is a small open source library for using 3D graphics hardware for +cogl: rendering. The API departs from the flat state machine style of OpenGL +cogl: and is designed to make it easy to write orthogonal components that +cogl: can render without stepping on each others toes. +cogl: +cogl: Having other backends, besides OpenGL, such as drm, Gallium or D3D are +cogl: options we are interested in for the future. +cogl: +cogl: https://www.gnome.org/ |