blob: bbef452f60000f5bafb656d0149eab55cf9d38d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
# Maintainer: Mantas M. <grawity@gmail.com>
pkgname=sssd-nosmb
_pkgname=sssd
pkgver=2.2.2
pkgrel=1
pkgdesc="System Security Services Daemon"
arch=('x86_64' 'i686')
url="https://pagure.io/SSSD/sssd"
license=('GPL3')
depends=(
'bind' # for nsupdate
'c-ares'
'cyrus-sasl-gssapi'
'ding-libs'
'libnl'
'libunistring'
'nss'
# 'smbclient' # for libndr-nbt
'ldb'
'cifs-utils'
'dbus'
'glib2'
'nfsidmap'
'jansson'
)
makedepends=(
'docbook-xsl'
'doxygen'
'python'
'python2'
# 'samba' # for libndr-nbt headers
# 'systemd'
)
source=("https://releases.pagure.org/SSSD/$_pkgname/$_pkgname-$pkgver.tar.gz")
sha512sums=('4cce8fdbcc05d1469dad5ba987cb0f9bc33702b37f85e8e248975461bb50b0740fec92ff213bdb640b506405be7ead936ff253ab02d4a27205ddf20cc0e54801')
provides=("$_pkgname=$pkgver-$pkgrel")
conflicts=($_pkgname)
prepare() {
cd "$srcdir/$_pkgname-$pkgver"
for f in "${source[@]}"; do
if [[ $f == *.patch ]]; then
msg2 "Applying $f"
patch -p1 < "$srcdir/$f"
fi
done
# dbus policy files in /usr/share/dbus-1
sed -i -e 's/^dbuspolicydir = $(sysconfdir)/dbuspolicydir = $(datadir)/' Makefile.in
}
build() {
cd "$srcdir/$_pkgname-$pkgver"
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--localstatedir=/var \
--libexecdir=/usr/lib/sssd \
--datadir=/usr/share \
--enable-pammoddir=/usr/lib/security \
--with-initscript=systemd \
--with-os=fedora \
--with-pid-path=/run \
--without-python2-bindings \
--without-python3-bindings \
--with-syslog=journald \
--without-samba \
--without-selinux \
--without-semanage \
--with-systemdunitdir=/usr/lib/systemd/system \
;
sed -i '/\<HAVE_KRB5_SET_TRACE_CALLBACK\>/d' config.h
make
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
make -j1 DESTDIR="$pkgdir/" install
rm -rf "$pkgdir"/etc/rc.d
rm -rf "$pkgdir"/lib
rm -rf "$pkgdir"/run
rm -f "$pkgdir"/usr/lib/ldb/modules/ldb/memberof.la
find "$pkgdir"/usr -depth -type d \
-exec rmdir --ignore-fail-on-non-empty {} \;
cd "$srcdir"
rm -rf "$pkgdir/etc/systemd" # remove the drop-in
# sed '1 s/python$/python2/' -i "$pkgdir"/usr/bin/sss_obfuscate
}
# vim: ts=2:sw=2:et:nowrap
|