xorg-xdm: initial release.

This commit is contained in:
Tilman Sauerbeck 2007-09-30 14:25:41 +02:00
parent 4a511cd28a
commit c6180788d3
4 changed files with 81 additions and 0 deletions

35
xorg-xdm/.footprint Normal file
View File

@ -0,0 +1,35 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/xdm
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/xdm
-rwxr-xr-x root/root usr/bin/xdmshell
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/X11/
drwxr-xr-x root/root usr/lib/X11/xdm/
-rwxr-xr-x root/root usr/lib/X11/xdm/GiveConsole
-rwxr-xr-x root/root usr/lib/X11/xdm/TakeConsole
-rw-r--r-- root/root usr/lib/X11/xdm/Xaccess
-rwxr-xr-x root/root usr/lib/X11/xdm/Xreset
-rw-r--r-- root/root usr/lib/X11/xdm/Xresources
-rw-r--r-- root/root usr/lib/X11/xdm/Xservers
-rwxr-xr-x root/root usr/lib/X11/xdm/Xsession
-rwxr-xr-x root/root usr/lib/X11/xdm/Xsetup_0
-rwxr-xr-x root/root usr/lib/X11/xdm/Xstartup
-rwxr-xr-x root/root usr/lib/X11/xdm/Xwilling
-rwxr-xr-x root/root usr/lib/X11/xdm/chooser
-rw-r--r-- root/root usr/lib/X11/xdm/libXdmGreet.a
-rwxr-xr-x root/root usr/lib/X11/xdm/libXdmGreet.la
-rwxr-xr-x root/root usr/lib/X11/xdm/libXdmGreet.so
drwxr-xr-x root/root usr/lib/X11/xdm/pixmaps/
-rw-r--r-- root/root usr/lib/X11/xdm/pixmaps/xorg-bw.xpm
-rw-r--r-- root/root usr/lib/X11/xdm/pixmaps/xorg.xpm
-rw-r--r-- root/root usr/lib/X11/xdm/xdm-config
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/xdm.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/X11/
drwxr-xr-x root/root usr/share/X11/app-defaults/
-rw-r--r-- root/root usr/share/X11/app-defaults/Chooser

2
xorg-xdm/.md5sum Normal file
View File

@ -0,0 +1,2 @@
ab67db2b29e8f1dd8fa8751f9be88a70 xdm
c89f8bc74fda4d19e5f374f59c88810f xdm-1.1.6.tar.bz2

21
xorg-xdm/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: X display manager
# URL: http://xorg.freedesktop.org
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: xorg-server, xorg-xrdb
name=xorg-xdm
version=1.1.6
release=1
source=(http://xorg.freedesktop.org/releases/individual/app/xdm-$version.tar.bz2 \
xdm)
build() {
cd xdm-$version
./configure --prefix=/usr --mandir=/usr/man
make
make DESTDIR=$PKG install
install -D -m 755 $SRC/xdm $PKG/etc/rc.d/xdm
}

23
xorg-xdm/xdm Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# /etc/rc.d/xdm: start/stop xdm
#
case $1 in
start)
/usr/bin/xdm
;;
stop)
killall -q /usr/bin/xdm
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file