Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
config BR2_PACKAGE_XAPP_XDM
bool "xdm"
depends on BR2_USE_MMU # fork()
# Runtime dependency: can't start an X server unless there is one
depends on BR2_PACKAGE_XSERVER_XORG_SERVER
select BR2_PACKAGE_XAPP_SESSREG
select BR2_PACKAGE_XAPP_XRDB
select BR2_PACKAGE_XLIB_LIBX11
select BR2_PACKAGE_XLIB_LIBXAW
select BR2_PACKAGE_XLIB_LIBXDMCP
select BR2_PACKAGE_XLIB_LIBXINERAMA
select BR2_PACKAGE_XLIB_LIBXT
select BR2_PACKAGE_XPROTO_XINERAMAPROTO
select BR2_PACKAGE_XPROTO_XPROTO
help
X.Org xdm application

View File

@@ -0,0 +1,25 @@
#!/bin/sh
XDM_BIN=/usr/bin/xdm
case "$1" in
start)
printf "Starting XDM: "
$XDM_BIN
echo "done"
;;
stop)
echo "Stopping XDM"
killall -q xdm
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
exit 0

View File

@@ -0,0 +1,2 @@
# From http://lists.x.org/archives/xorg-announce/2011-September/001737.html
sha256 d4da426ddea0124279a3f2e00a26db61944690628ee818a64df9d27352081c47 xdm-1.1.11.tar.bz2

View File

@@ -0,0 +1,23 @@
################################################################################
#
# 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_INIT_SYSV
$(INSTALL) -m 0755 -D package/x11r7/xapp_xdm/S99xdm \
$(TARGET_DIR)/etc/init.d/S99xdm
endef
$(eval $(autotools-package))