xlockmore: move app-defaults and fix dependencies

This commit is contained in:
Danny Rawlins 2017-06-18 18:26:52 +10:00
parent 49e3ea6bd4
commit 039e48758b
3 changed files with 21 additions and 22 deletions

View File

@ -1,12 +1,11 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/X11/
drwxr-xr-x root/root etc/X11/app-defaults/
-rw-r--r-- root/root etc/X11/app-defaults/XLock
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/xglock
---s--x--x root/bin usr/bin/xlock
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/XLock
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/xlock.1.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3xqC67KnFFoNBS231AtyOcWqSnHaaYGRoc5/ZHhG8n100fhB8Eg1rECxnhWPIhpZmPXz+tPcQjHO767JO2rrDQc=
SHA256 (Pkgfile) = 7535a90858ed5879df051abe61189406b0ac99137a7ad95b1909e43a686756e0
SHA256 (.footprint) = 5f0f5aeabcfedf16968d25834d0d07c19290e924ed676c56be8289d10de85263
RWSagIOpLGJF37mY4LrBtqmKee9XyLZynIxxuUynBOvyYkC3uGct4Y8Uy5zJcn7VI4guxUmVt5lkdgTzj/vexAyhAczJBtfaLAw=
SHA256 (Pkgfile) = 69a078a6fc6833469feb63529a75b668bea23a11eacc07e51982da4638487953
SHA256 (.footprint) = 70ad59cfdb2281c7814519bf5e46981199fcdd0c648fd2e393e012cc4451eec2
SHA256 (xlockmore-5.54.tar.xz) = 9f4facb9721cc01450db0c11ffecd26a739b046e425e02628831a66080a0af55

View File

@ -2,7 +2,7 @@
# URL: http://sillycycle.com/xlockmore.html
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Daniel Mueller, daniel at danm dot de
# Depends on: gtk fortune xorg-libxt xorg-libxdamage
# Depends on: fortune glu gtk util-linux xorg-libxmu xorg-libxpm
name=xlockmore
version=5.54
@ -10,20 +10,20 @@ release=1
source=(http://sillycycle.com/xlock/xlockmore-${version}.tar.xz)
build() {
cd $name-$version
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--enable-appdefaultdir=/etc/X11/app-defaults \
--enable-vtlock \
--enable-syslog \
--enable-multiple-user \
--enable-multiple-root \
--without-motif \
--with-opengl \
--without-esound
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--enable-appdefaultdir=/usr/share/X11/app-defaults \
--enable-vtlock \
--enable-syslog \
--enable-multiple-user \
--enable-multiple-root \
--with-opengl \
--without-motif \
--without-esound
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
}