mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
libraries/sexy-python: Added to 12.2 repository
This commit is contained in:
parent
95aaf7eae4
commit
59ee3d7fb3
5 changed files with 146 additions and 0 deletions
3
libraries/sexy-python/README
Normal file
3
libraries/sexy-python/README
Normal file
|
@ -0,0 +1,3 @@
|
|||
Sexy-python is a set of Python bindings around libsexy.
|
||||
|
||||
Requires libsexy available at SlackBuilds.org.
|
|
@ -0,0 +1,50 @@
|
|||
diff -Nur sexy-python-0.1.9/sexy/sexy.override sexy-python-0.1.9.new/sexy/sexy.override
|
||||
--- sexy-python-0.1.9/sexy/sexy.override 2006-03-18 22:48:12.000000000 +0100
|
||||
+++ sexy-python-0.1.9.new/sexy/sexy.override 2007-03-08 11:11:46.000000000 +0100
|
||||
@@ -163,5 +163,46 @@
|
||||
return 0;
|
||||
}
|
||||
%%
|
||||
+override sexy_tooltip_position_to_rect kwargs
|
||||
+
|
||||
+/* Stock pygdk_rectangle_from_pyobject crashes with (at least) PyGTK 2.6.8 */
|
||||
+static gboolean
|
||||
+_gimmie_pygdk_rectangle_from_pyobject(PyObject *object, GdkRectangle *rectangle)
|
||||
+{
|
||||
+ g_return_val_if_fail(rectangle != NULL, FALSE);
|
||||
+
|
||||
+ if (pyg_boxed_check(object, GDK_TYPE_RECTANGLE)) {
|
||||
+ *rectangle = *pyg_boxed_get(object, GdkRectangle);
|
||||
+ return TRUE;
|
||||
+ }
|
||||
+ if (PyArg_ParseTuple(object, "iiii", &rectangle->x, &rectangle->y,
|
||||
+ &rectangle->width, &rectangle->height)) {
|
||||
+ return TRUE;
|
||||
+ }
|
||||
+ PyErr_Clear();
|
||||
+ PyErr_SetString(PyExc_TypeError, "could not convert to GdkRectangle");
|
||||
+ return FALSE;
|
||||
+}
|
||||
+
|
||||
+static PyObject *
|
||||
+_wrap_sexy_tooltip_position_to_rect(PyGObject *self, PyObject *args, PyObject *kwargs)
|
||||
+{
|
||||
+ static char *kwlist[] = { "rect", "screen", NULL };
|
||||
+ PyObject *py_rect;
|
||||
+ PyGObject *screen;
|
||||
+ GdkRectangle rect = { 0, 0, 0, 0 };
|
||||
+
|
||||
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO!:SexyTooltip.position_to_rect", kwlist, &py_rect, &PyGdkScreen_Type, &screen))
|
||||
+ return NULL;
|
||||
+
|
||||
+ /* FIXME: Force the use of a newer version which does not crash */
|
||||
+ if (!_gimmie_pygdk_rectangle_from_pyobject(py_rect, &rect))
|
||||
+ return NULL;
|
||||
+
|
||||
+ sexy_tooltip_position_to_rect(SEXY_TOOLTIP(self->obj), &rect, GDK_SCREEN(screen->obj));
|
||||
+ Py_INCREF(Py_None);
|
||||
+ return Py_None;
|
||||
+}
|
||||
+%%
|
||||
init
|
||||
pyg_set_object_has_new_constructor(SEXY_TYPE_URL_LABEL);
|
66
libraries/sexy-python/sexy-python.SlackBuild
Normal file
66
libraries/sexy-python/sexy-python.SlackBuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for sexy-python
|
||||
|
||||
# Written by Larry Hajali <larryhaja[at]gmail[dot]com>
|
||||
|
||||
PRGNAM=sexy-python
|
||||
VERSION=${VERSION:-0.1.9}
|
||||
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"
|
||||
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
|
||||
|
||||
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 {} \;
|
||||
|
||||
patch -p1 < $CWD/fix-sexy_tooltip_position_to_rect.patch
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--disable-dependency-tracking \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS ChangeLog COPYING INSTALL 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.tgz
|
8
libraries/sexy-python/sexy-python.info
Normal file
8
libraries/sexy-python/sexy-python.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="sexy-python"
|
||||
VERSION="0.1.9"
|
||||
HOMEPAGE="http://www.chipx86.com/w/index.php/Libsexy"
|
||||
DOWNLOAD="http://releases.chipx86.com/libsexy/sexy-python/sexy-python-0.1.9.tar.gz"
|
||||
MD5SUM="313f11e98555b0e9eea28219564e5063"
|
||||
MAINTAINER="Larry Hajali"
|
||||
EMAIL="larryhaja[at]gmail[dot]com"
|
||||
APPROVED="dsomero"
|
19
libraries/sexy-python/slack-desc
Normal file
19
libraries/sexy-python/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------------------------------------------------------|
|
||||
sexy-python: sexy-python (Python bindings for libsexy)
|
||||
sexy-python:
|
||||
sexy-python: Sexy-python is a set of Python bindings around libsexy.
|
||||
sexy-python:
|
||||
sexy-python: Homepage: http://www.chipx86.com/w/index.php/Libsexy
|
||||
sexy-python:
|
||||
sexy-python:
|
||||
sexy-python:
|
||||
sexy-python:
|
||||
sexy-python:
|
||||
sexy-python:
|
Loading…
Reference in a new issue