2019-05-18 14:43:57 +02:00
|
|
|
# Description: Screensaver for Xfce
|
|
|
|
# URL: https://git.xfce.org/apps/xfce4-screensaver/
|
2019-06-05 11:42:13 +02:00
|
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
2019-06-12 01:32:22 +02:00
|
|
|
# Depends on: xfce4-dev-tools xorg-libxscrnsaver xfconf libxfce4ui libxfce4util garcon gtk3 libxklavier exo
|
2019-05-18 14:43:57 +02:00
|
|
|
|
|
|
|
name=xfce4-screensaver
|
2019-07-29 02:53:45 +02:00
|
|
|
version=0.1.7
|
|
|
|
release=1
|
2019-07-06 02:38:27 +02:00
|
|
|
source=(https://git.xfce.org/apps/$name/snapshot/$name-$version.tar.gz common_auth.patch)
|
2019-05-18 14:43:57 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
|
|
|
|
cd $name-$version
|
|
|
|
|
2019-06-30 22:26:49 +02:00
|
|
|
patch -p1 -i $SRC/common_auth.patch
|
|
|
|
|
2019-05-18 14:43:57 +02:00
|
|
|
./autogen.sh \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/$name \
|
2019-06-30 22:26:49 +02:00
|
|
|
--enable-pam \
|
|
|
|
--enable-authentication-scheme=pam \
|
|
|
|
--with-pam-prefix=/etc \
|
|
|
|
--with-pam-auth-type=common \
|
2019-05-18 14:43:57 +02:00
|
|
|
--disable-static \
|
|
|
|
--with-mit-ext \
|
2019-06-05 11:42:13 +02:00
|
|
|
--with-console-kit \
|
|
|
|
--without-systemd \
|
2019-06-30 22:26:49 +02:00
|
|
|
--without-elogind \
|
2019-06-05 11:42:13 +02:00
|
|
|
--with-libgl
|
2019-05-18 14:43:57 +02:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2019-07-19 01:31:37 +02:00
|
|
|
|
|
|
|
#rm -r $PKG/usr/share/locale
|
2019-07-13 16:01:02 +02:00
|
|
|
|
2019-05-18 14:43:57 +02:00
|
|
|
}
|