buildroot/package/rdesktop/rdesktop.mk
Fabrice Fontaine 89bc5e0f2a package/rdesktop: bump to version 1.9.0
- Retrieve official tarball and so remove autoreconf
- xlib_Xcursor is a mandatory dependency since
  6dd85edc6f
- libtasn1 is a mandatory dependency since
  673b267e66
- nettle is a mandatory dependency since
  00d9e0c4c8
- gnutls is a mandatory dependency instead of openssl since
  166d1bc14d
- pulseaudio is an optional dependency since
  9b98c3b229
- iconv is mandatory since
  2ea3f69873

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-03-14 15:06:46 +01:00

35 lines
947 B
Makefile

################################################################################
#
# rdesktop
#
################################################################################
RDESKTOP_VERSION = 1.9.0
RDESKTOP_SITE = \
https://github.com/rdesktop/rdesktop/releases/download/v$(RDESKTOP_VERSION)
RDESKTOP_DEPENDENCIES = \
host-pkgconf \
gnutls \
libtasn1 \
nettle \
xlib_libX11 \
xlib_libXcursor \
xlib_libXt \
$(if $(BR2_PACKAGE_ALSA_LIB_PCM),alsa-lib) \
$(if $(BR2_PACKAGE_LIBAO),libao) \
$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate) \
$(if $(BR2_PACKAGE_PULSEAUDIO),pulseaudio) \
$(if $(BR2_PACKAGE_XLIB_LIBXRANDR),xlib_libXrandr)
RDESKTOP_CONF_OPTS = --disable-credssp
RDESKTOP_LICENSE = GPL-3.0+
RDESKTOP_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_PCSC_LITE),y)
RDESKTOP_DEPENDENCIES += pcsc-lite
else
RDESKTOP_CONF_OPTS += --disable-smartcard
endif
$(eval $(autotools-package))