OSDN Git Service

afd4e9dc08fdef073755f2e1ea81d9da6fe7f477
[alterlinux/alterlinux-pkgbuilds.git] / alter-stable / x86_64 / gconf / PKGBUILD
1 # Maintainer: Jan de Groot <jan@archlinux.org>
2
3 pkgname=gconf
4 pkgver=3.2.6+11+g07808097
5 pkgrel=6
6 pkgdesc="An obsolete configuration database system"
7 url="https://projects-old.gnome.org/gconf/"
8 arch=(x86_64)
9 license=(LGPL)
10 depends=(libxml2 polkit libldap dbus-glib python)
11 makedepends=(intltool gtk-doc gobject-introspection git gnome-common)
12 install=gconf.install
13 _commit=0780809731c8ab1c364202b1900d3df106b28626  # master
14 source=("git+https://gitlab.gnome.org/Archive/gconf.git#commit=$_commit"
15         01_xml-gettext-domain.patch gconf-reload.patch
16         gconf-merge-schema gconfpkg gconf-{install,remove}.hook)
17 sha256sums=('SKIP'
18             'c883dec2b96978874a53700cfe7f26f24f8296767203e970bc6402b4b9945eb8'
19             '567b78d8b4b4bbcb77c5f134d57bc503c34867fcc6341c0b01716bcaa4a21694'
20             'ee6b6e6f4975dad13a8c45f1c1f0547a99373bdecdcd6604bfc12965c328a028'
21             'bf1928718caa5df2b9e54a13cfd0f15a8fe0e09e86b84385ce023616a114e898'
22             '2732b2a6b187c5620105a036bde12edee99669605f70cbde56fe5f39619c3dc0'
23             '436a65ff290095bc3d35d7d6297cf4d647f61e9f9922cea7ef9f1e251b447ff7')
24
25 pkgver() {
26   cd $pkgname
27   git describe --tags | sed 's/-/+/g'
28 }
29
30 prepare() {
31   cd $pkgname
32
33   # Patch from fedora - reloads gconf after installing schemas
34   patch -Np1 -i ../gconf-reload.patch
35
36   # http://bugzilla.gnome.org/show_bug.cgi?id=568845
37   patch -Np1 -i ../01_xml-gettext-domain.patch
38
39   # The following line copied from Fedora
40   # https://src.fedoraproject.org/rpms/GConf2/blob/70ed26d67b563d858a84505622d11f41879a6b37/f/GConf2.spec#_90
41   2to3 --write --nobackup gsettings/gsettings-schema-convert
42
43   sed -i '1s|#!/usr/bin/env python$|#!/usr/bin/python|' gsettings/gsettings-schema-convert
44
45   NOCONFIGURE=1 ./autogen.sh
46 }
47
48 build() {
49   cd $pkgname
50   ./configure \
51     --prefix=/usr \
52     --sysconfdir=/etc \
53     --localstatedir=/var \
54     --libexecdir=/usr/lib \
55     --enable-defaults-service \
56     --disable-gtk-doc \
57     --disable-static \
58     --disable-orbit
59   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
60   make
61 }
62
63 check() {
64   cd $pkgname
65   make check
66 }
67
68 package() {
69   DESTDIR="$pkgdir" make -C $pkgname install
70
71   install -d "$pkgdir/etc/gconf/gconf.xml.system"
72   install -Dt "$pkgdir/usr/bin" gconf-merge-schema gconfpkg
73   install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
74
75   # fix dbus policy location - --with-dbusdir doens't work
76   install -dm755 ${pkgdir}/usr/share/dbus-1/system.d
77   mv ${pkgdir}/etc/dbus-1/system.d/* ${pkgdir}/usr/share/dbus-1/system.d
78   rm -rf ${pkgdir}/etc/dbus-1
79 }