Merge pull request #1026 from nmeum/master

xdm: runit service and updated config path
This commit is contained in:
bougyman 2015-02-25 14:51:22 -06:00
commit a736d288fe
2 changed files with 9 additions and 2 deletions

2
srcpkgs/xdm/files/xdm/run Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
exec xdm -nodaemon 2>&1

View File

@ -1,11 +1,12 @@
# Template build file for 'xdm'. # Template build file for 'xdm'.
pkgname=xdm pkgname=xdm
version=1.1.11 version=1.1.11
revision=2 revision=4
build_style=gnu-configure build_style=gnu-configure
configure_args="--with-random-device=/dev/urandom configure_args="--with-random-device=/dev/urandom
--with-utmp-file=/var/run/utmp --with-utmp-file=/var/run/utmp
--with-wtmp-file=/var/log/wtmp" --with-wtmp-file=/var/log/wtmp
--with-xdmconfigdir=/etc/X11/xdm"
hostmakedepends="pkg-config" hostmakedepends="pkg-config"
makedepends="libXaw-devel" makedepends="libXaw-devel"
depends="sessreg xconsole" depends="sessreg xconsole"
@ -15,3 +16,7 @@ license="MIT"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>" maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
distfiles="${XORG_SITE}/app/$pkgname-$version.tar.bz2" distfiles="${XORG_SITE}/app/$pkgname-$version.tar.bz2"
checksum=d4da426ddea0124279a3f2e00a26db61944690628ee818a64df9d27352081c47 checksum=d4da426ddea0124279a3f2e00a26db61944690628ee818a64df9d27352081c47
post_install() {
vsv xdm
}