summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorQue Quotion2018-04-07 12:20:19 +0900
committerQue Quotion2018-04-07 12:20:19 +0900
commit15be4f39e4085537894e996c9ce05b4902b22ffb (patch)
tree8ec488c4f2b3ef39ee5aba123b16982ab18a1b37
parenta26192b8c370f826a2a66b77055b4bda1a2046b2 (diff)
downloadaur-15be4f39e4085537894e996c9ce05b4902b22ffb.tar.gz
Need to keep up to date with some dependency; could be anything; dconf for now
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD11
2 files changed, 11 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 309093164ac5..32994fca692e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,7 @@
-# Generated by mksrcinfo v8
-# Sun Mar 13 06:04:08 UTC 2016
pkgbase = gnome-settings-daemon-compat
pkgdesc = Compatibility package that provides the background, media keys and mount helpers from GNOME Settings Daemon 3.6
pkgver = 3.6.4
- pkgrel = 10
+ pkgrel = 11
url = http://www.gnome.org
arch = i686
arch = x86_64
@@ -12,6 +10,7 @@ pkgbase = gnome-settings-daemon-compat
makedepends = intltool
makedepends = xf86-input-wacom
makedepends = ibus
+ makedepends = dconf>=0.28.0-1
depends = gnome-settings-daemon
source = http://ftp.gnome.org/pub/gnome/sources/gnome-settings-daemon/3.6/gnome-settings-daemon-3.6.4.tar.xz
source = standalone-background-helper.patch
diff --git a/PKGBUILD b/PKGBUILD
index 85074acae71b..0f295aa906a7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,12 +6,12 @@
pkgname=gnome-settings-daemon-compat
_pkgname=gnome-settings-daemon
pkgver=3.6.4
-pkgrel=10
+pkgrel=11
pkgdesc='Compatibility package that provides the background, media keys and mount helpers from GNOME Settings Daemon 3.6'
arch=('i686' 'x86_64')
license=('GPL')
depends=('gnome-settings-daemon')
-makedepends=('docbook-xsl' 'intltool' 'xf86-input-wacom' 'ibus')
+makedepends=('docbook-xsl' 'intltool' 'xf86-input-wacom' 'ibus' 'dconf>=0.28.0-1')
url="http://www.gnome.org"
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.xz
standalone-background-helper.patch
@@ -37,26 +37,33 @@ sha256sums=('3db993f2dbabc0c9d06a309bb12c9a7104b9cdda414ac4b1c301f5114a441c15'
prepare() {
cd $_pkgname-$pkgver
+ msg2 "Patch BGMKH"
# Build background and media keys helpers as a stand alone binary
patch -Np1 < ../standalone-background-helper.patch
patch -Np1 < ../standalone-media-keys-helper.patch
+ msg2 "Patch ADB"
# Always draw background
patch -Np1 < ../draw-background-unconditionally.patch
+ msg2 "Patch SIA"
# Port to gnome-session's SessionIsActive property
patch -Np1 < ../sessionisactive-port.patch
+ msg2 "Patch MKCOMPAT"
# Add compatibility patches for media keys plugin
patch -Np1 < ../revert-input-sources.patch
patch -Np1 < ../xinput.patch
+ msg2 "Patch lgsd"
# Remove libgsd dependency
patch -Np1 < ../remove-libgsd-dependency.patch
+ msg2 "Patch desktpf"
# Move desktop files out of autostart, so they can be easily reusable in custom sessions
patch -Np1 < ../move-desktop-file.patch
+ msg2 "Patch lsysd"
# libsystemd-login is now just libsystemd.
patch -Np2 < ../libsystemd.patch
}