Magellan Linux

Contents of /trunk/extras/accountsservice/accountsservice-0.6.24-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13144 - (show annotations) (download)
Sun Aug 26 10:39:42 2012 UTC (11 years, 9 months ago) by niro
File size: 989 byte(s)
-create missing configure script
1 # $Id$
2
3 PNAME="accountsservice"
4 PVER="0.6.24"
5 PBUILD="r1"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="D-Bus interface for user account query and manipulation"
10 HOMEPAGE="http://www.freedesktop.org/wiki/Software/AccountsService"
11
12 DEPEND=">= dev-libs/glib2-2.32
13 >= sys-apps/polkit-0.107
14 >= sys-apps/systemd-188"
15
16 SDEPEND=">= dev-util/intltool-0.41
17 >= dev-libs/gobject-introspection-0.10
18 >= dev-lang/vala-0.16"
19
20 SRCFILE="${PNAME}-${PVER}.tar.xz"
21 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
22
23 sminclude mbuild
24
25 SRC_URI=(
26 http://www.freedesktop.org/software/${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${SRCFILE}
28 )
29
30 UP2DATE="updatecmd http://www.freedesktop.org/software/${PNAME} | lasttarballl xz"
31
32 src_prepare()
33 {
34 munpack ${SRCFILE} || die
35 cd ${SRCDIR}
36 # create missing configure
37 mautoreconf || die
38 }
39
40 src_compile()
41 {
42 mconfigure \
43 --localstatedir=/var \
44 --libexecdir=/usr/$(mlibdir)/accountsservice \
45 --with-systemdsystemunitdir=/usr/lib/systemd/system \
46 --enable-systemd \
47 || die
48
49 mmake || die
50 }