blob: 447c50517f1876c25a5401a6f78d72c7fab4cc7c (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit autotools eutils
SRC_URI="https://accounts-sso.googlecode.com/files/${PN}-1.16.tar.gz"
SLOT=0
DESCRIPTION="Accounts and SSO (Single Sign-On) framework for Linux and POSIX based platforms."
HOMEPAGE="https://01.org/gsso/"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~amd64"
IUSE="debug"
DEPEND="
dev-db/sqlite
dev-libs/glib:2
dev-libs/libxml2"
RDEPEND="$DEPEND"
S="${WORKDIR}/${PN}-1.16"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.16-to-1.18.patch
eautoreconf
}
src_configure() {
export HAVE_GCOV_FALSE='#'
econf $(use_enable debug)
}
|