450d8835d9
Release notes: https://lists.x.org/archives/xorg-announce/2022-April/003148.html Removed md5 and sha1 hashes, not provided by upstream anymore. Reformatted license hash. Switched tarball to upstream-provided .xz format. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
33 lines
875 B
Makefile
33 lines
875 B
Makefile
################################################################################
|
|
#
|
|
# xapp_xdm
|
|
#
|
|
################################################################################
|
|
|
|
XAPP_XDM_VERSION = 1.1.13
|
|
XAPP_XDM_SOURCE = xdm-$(XAPP_XDM_VERSION).tar.xz
|
|
XAPP_XDM_SITE = http://xorg.freedesktop.org/releases/individual/app
|
|
XAPP_XDM_LICENSE = MIT
|
|
XAPP_XDM_LICENSE_FILES = COPYING
|
|
XAPP_XDM_CONF_ENV = ac_cv_file__dev_urandom=yes
|
|
XAPP_XDM_DEPENDENCIES = \
|
|
xapp_sessreg \
|
|
xapp_xrdb \
|
|
xlib_libX11 \
|
|
xlib_libXaw \
|
|
xlib_libXdmcp \
|
|
xlib_libXinerama \
|
|
xlib_libXt \
|
|
xorgproto
|
|
XAPP_XDM_CONF_OPTS = \
|
|
--with-appdefaultdir=/usr/share/X11/app-defaults \
|
|
--with-utmp-file=/var/adm/utmpx \
|
|
--with-wtmp-file=/var/adm/wtmpx
|
|
|
|
define XAPP_XDM_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/x11r7/xapp_xdm/S99xdm \
|
|
$(TARGET_DIR)/etc/init.d/S99xdm
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|