forked from ports/contrib
45 lines
1009 B
Plaintext
45 lines
1009 B
Plaintext
# Description: A screen saver and locker daemon for xorg.
|
|
# URL: http://www.jwz.org/xscreensaver/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: bc fortune giflib glu libglade util-linux xorg-libxmu linux-pam
|
|
|
|
name=xscreensaver
|
|
version=5.42
|
|
release=1
|
|
source=(https://www.jwz.org/$name/$name-$version.tar.gz \
|
|
$name.pam)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
sed -e's|-std=c89||' -i configure.in
|
|
autoreconf -fiv
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--with-x-app-defaults='/etc/X11/app-defaults' \
|
|
--enable-locking \
|
|
--enable-root-passwd \
|
|
--with-dpms-ext \
|
|
--with-xinerama-ext \
|
|
--with-xshm-ext \
|
|
--with-proc-interrupts \
|
|
--with-shadow \
|
|
--with-pixbuf \
|
|
--with-jpeg \
|
|
--without-motif \
|
|
--without-gle \
|
|
--without-setuid-hacks
|
|
|
|
make
|
|
make install_prefix=$PKG install
|
|
|
|
install -d $PKG/usr/share/wallpapers
|
|
|
|
# PAM service file
|
|
install -D -m 0644 $SRC/$name.pam \
|
|
$PKG/etc/pam.d/$name
|
|
rm -r $PKG/usr/share/{locale,xscreensaver/config/README}
|
|
}
|