xlockmore: 5.53 -> 5.54

This commit is contained in:
Danny Rawlins 2017-06-18 17:57:32 +10:00
parent b056ec52c5
commit 49e3ea6bd4
4 changed files with 25 additions and 19 deletions

View File

@ -6,9 +6,9 @@ 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/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/xlock.1.gz
drwxr-xr-x root/root usr/share/
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
drwxr-xr-x root/root usr/share/xlock/
-rwxr-xr-x root/root usr/share/xlock/xglockrc

View File

@ -1 +1 @@
a0e2aeb7b8aa321e851ef89889821e8f xlockmore-5.53.tar.xz
9cc6961cc4b893cacb5063e189eb4d9e xlockmore-5.54.tar.xz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zEyVriRT0bUQJamGQZ+6SLXb1cx5Z52d4W6XP3LpQWmPoaiHjG3ONSmdyJ23kJaxweG5IXHQWYgV0i34GffxgQ=
SHA256 (Pkgfile) = 8212f49a771b7949857cdd3a831b7ce025d81d40b185a4d04e732b9f26bf7308
SHA256 (.footprint) = d2c21a61fbc6eb258ed0483e796ac0b26752e8380292787a653b9f89c327d4c6
SHA256 (xlockmore-5.53.tar.xz) = 4973659c3b1d9747e79e29f3e5a5d04f3a0cb36f35ba88507c69be2e04db4967
RWSagIOpLGJF3xqC67KnFFoNBS231AtyOcWqSnHaaYGRoc5/ZHhG8n100fhB8Eg1rECxnhWPIhpZmPXz+tPcQjHO767JO2rrDQc=
SHA256 (Pkgfile) = 7535a90858ed5879df051abe61189406b0ac99137a7ad95b1909e43a686756e0
SHA256 (.footprint) = 5f0f5aeabcfedf16968d25834d0d07c19290e924ed676c56be8289d10de85263
SHA256 (xlockmore-5.54.tar.xz) = 9f4facb9721cc01450db0c11ffecd26a739b046e425e02628831a66080a0af55

View File

@ -2,22 +2,28 @@
# 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
# Depends on: gtk fortune xorg-libxt xorg-libxdamage
name=xlockmore
version=5.53
version=5.54
release=1
source=(http://sillycycle.com/xlock/xlockmore-${version}.tar.xz)
build(){
build() {
cd $name-$version
./configure --prefix=/usr --enable-vtlock --enable-syslog \
--enable-multiple-user --enable-multiple-root \
--without-motif --with-opengl --without-esound
./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
make
make prefix=$PKG/usr xapploaddir=$PKG/etc/X11/app-defaults install
if [ -d $PKG/usr/lib ]; then
rm -rf $PKG/usr/lib
fi
mv $PKG/usr/share/man $PKG/usr
make DESTDIR=$PKG install
}