aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
903 B
Makefile
25 lines
903 B
Makefile
################################################################################
|
|
#
|
|
# xapp_xdm
|
|
#
|
|
################################################################################
|
|
|
|
XAPP_XDM_VERSION = 1.1.11
|
|
XAPP_XDM_SOURCE = xdm-$(XAPP_XDM_VERSION).tar.bz2
|
|
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 xproto_xineramaproto xproto_xproto
|
|
XAPP_XDM_CONF_OPTS = --with-utmp-file=/var/adm/utmpx \
|
|
--with-wtmp-file=/var/adm/wtmpx
|
|
|
|
define XAPP_XDM_INSTALL_STARTUP_SCRIPT
|
|
$(INSTALL) -m 0755 -D package/x11r7/xapp_xdm/S99xdm \
|
|
$(TARGET_DIR)/etc/init.d/S99xdm
|
|
endef
|
|
|
|
XAPP_XDM_POST_INSTALL_TARGET_HOOKS += XAPP_XDM_INSTALL_STARTUP_SCRIPT
|
|
|
|
$(eval $(autotools-package))
|