wok view rdpdesk/receipt @ rev 18521

Add wxWidgets28 for oldstable version of wxWidgets. Move old packages to use it.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Oct 26 02:54:52 2015 +0200 (2015-10-26)
parents 17e313b5b9c1
children abe6b9e04ee5
line source
1 # SliTaz package receipt.
3 PACKAGE="rdpdesk"
4 VERSION="3.2"
5 CATEGORY="network"
6 SHORT_DESC="RDP, VNC & ICA client."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://rdpdesk.com/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="wxWidgets28 xorg-libXp xorg-libXaw libssl"
14 BUILD_DEPENDS="wxWidgets28-dev xorg-imake jpeg-dev zlib-dev \
15 openssl-dev xorg-libXp autoconf"
16 SUGGESTED="wfica rdesktop"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # Binutils 2.22 break many packages build without LDFLAGS set correctly.
22 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
24 cd $src
25 sed -i 's|glib/.*h|glib.h|' src/proto/*Connection_nix.hpp
26 ./configure --prefix=/usr $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/usr $fs
35 }