wok view wxpython/receipt @ rev 9544

tiff: Patched overflows that could lead to aribitrary code execution when parsing a malformed image file. Thanks slackware for having this.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Apr 09 07:21:58 2011 +0000 (2011-04-09)
parents 49e501a55595
children d36e3f34f5c0
line source
1 # SliTaz package receipt.
3 PACKAGE="wxpython"
4 VERSION="2.8.11.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GUI toolkit for the Python programming language."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="python wxWidgets"
9 BUILD_DEPENDS="python-dev wxWidgets-dev"
10 SOURCE="wxPython-src"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.wxpython.org/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/wxPython/$VERSION/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --with-gtk=2 \
21 --with-libpng=sys \
22 --with-libjpeg=sys \
23 --with-libtiff=sys &&
24 cd wxPython &&
25 python setup.py WXPORT=gtk2 UNICODE=1 build &&
26 python setup.py WXPORT=gtk2 UNICODE=1 install --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin $fs/usr/lib
34 cp -a $_pkg/usr/bin/wxrc* $fs/usr/bin
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 }