wok view wxWidgets28/receipt @ rev 22781

updated freetype and freetype-dev (2.6.4 -> 2.10.1)
author Hans-G?nter Theisgen
date Sun Jan 26 09:26:49 2020 +0100 (2020-01-26)
parents
children 0c04fc34847a
line source
1 # SliTaz package receipt.
3 PACKAGE="wxWidgets28"
4 VERSION="2.8.12.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Cross-platform GUI Library (oldstable version)"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL"
9 TARBALL="wxPython-src-$VERSION.tar.bz2"
10 WEB_SITE="http://www.wxwidgets.org/"
11 WGET_URL="$SF_MIRROR/wxwindows/$TARBALL"
13 DEPENDS="glib glibc-base gcc-lib-base libgio pkg-config expat zlib atk \
14 gtk+ cairo fontconfig freetype jpeg libpng tiff pango pixman util-linux-uuid \
15 xorg-libSM xorg-libICE xorg-libX11 xorg-libXau xorg-libXcomposite \
16 xorg-libXcursor xorg-libXdamage xorg-libXdmcp xorg-libXext libglu-mesa \
17 xorg-libXfixes xorg-libXinerama xorg-libXrender xorg-libXxf86vm mesa"
18 BUILD_DEPENDS="gtk+-dev expat-dev zlib-dev \
19 xorg-dev xorg-xineramaproto libglu-mesa mesa-dev libpng-dev tiff-dev \
20 jpeg-dev xorg-libXpm-dev patch"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 sed -i 's|/opt/wx/current/bin/||' wxPython/wx/build/build_options.py
26 ./configure \
27 --enable-shared \
28 --enable-unicode \
29 --with-opengl \
30 --with-libpng=sys \
31 --with-libxpm=sys \
32 --with-libjpeg=sys \
33 --with-libtiff=sys \
34 --enable-graphics_ctx \
35 --enable-unicode \
36 $CONFIGURE_ARGS &&
37 make &&
38 make DESTDIR=$DESTDIR install &&
39 cd $src/contrib &&
40 {
41 make &&
42 make DESTDIR=$DESTDIR install
43 } 2>&1 | sed 's/h: No such/h: no such/'
44 }
46 # Rules to gen a SliTaz package suitable for Tazpkg.
47 genpkg_rules()
48 {
49 mkdir -p $fs/usr
50 # Copy libs and contrib libs.
51 cp -a $install/usr/lib/ $fs/usr/
52 # Remove devel files.
53 rm -rf $fs/usr/lib/wx/include
54 }