Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/
Date: Sun, 28 Feb 2016 12:24:57
Message-Id: 1456662257.49cd59447e186ab1049d9d74c4bd70a3dffaaf2a.mrueg@gentoo
1 commit: 49cd59447e186ab1049d9d74c4bd70a3dffaaf2a
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 12:24:17 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 12:24:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49cd5944
7
8 net-libs/libaccounts-glib: Revbump to use correct tarball
9
10 Package-Manager: portage-2.2.27
11
12 .../libaccounts-glib-1.21-r2.ebuild | 45 ++++++++++++++++++++++
13 1 file changed, 45 insertions(+)
14
15 diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
16 new file mode 100644
17 index 0000000..66a39ef
18 --- /dev/null
19 +++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
20 @@ -0,0 +1,45 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +inherit autotools eutils vcs-snapshot
28 +
29 +DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib applications"
30 +HOMEPAGE="https://01.org/gsso/"
31 +SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV} -> ${P}.tar.gz"
32 +
33 +LICENSE="LGPL-2.1"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="debug"
37 +
38 +RDEPEND="
39 + dev-db/sqlite:3
40 + dev-libs/glib:2
41 + dev-libs/libxml2
42 +"
43 +DEPEND="${RDEPEND}
44 + dev-util/gtk-doc
45 +"
46 +
47 +RESTRICT="test"
48 +
49 +DOCS=( AUTHORS NEWS )
50 +
51 +src_prepare() {
52 + eautoreconf
53 +}
54 +
55 +src_configure() {
56 + econf \
57 + --disable-python \
58 + --disable-tests \
59 + $(use_enable debug)
60 +}
61 +
62 +src_install() {
63 + default
64 + prune_libtool_files
65 +}