blob: 85f25f4c1f32d320db61d9cfa7657e670a9abafe (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="Accounts and SSO (Single Sign-On) framework for Linux and POSIX based platforms."
HOMEPAGE="https://01.org/gsso/"
SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="debug"
RESTRICT="test"
DEPEND="
dev-db/sqlite:3
dev-libs/glib:2
dev-libs/libxml2"
RDEPEND="$DEPEND"
src_configure() {
export HAVE_GCOV_FALSE='#'
econf $(use_enable debug)
}
|