forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-libs/libaccounts-glib: version bump 1.23
Package-Manager: Portage-2.3.6, Repoman-2.3.3
- Loading branch information
Michael Palimaka
committed
Sep 9, 2017
1 parent
35f14bf
commit cf24b5b
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST libaccounts-glib-1.21.tar.gz 127061 SHA256 27cb75f3f2f0ce736b77f0fd0432f8d565297f0735846a2862577eadaec92488 SHA512 3eef882597392387a962dddbc49e4428f7e11e329fac1c3f4d39f3ef315118274b253e36095754d6392802cf298f2bfc0adf30b9a114b047082cda231bb10f60 WHIRLPOOL 46f8f04958199b4b1b91f1b03b66772e1a46440f390c30fef43c09f1171af28d41f57fb92d1303263d1771d21ff9e035729ff2396637894dd811dc0fd314f059 | ||
DIST libaccounts-glib-1.23.tar.gz 127931 SHA256 b4686af19b86cbedc0eb6a00aceee70f2c61254013d2cadd8aba15e9c540fff7 SHA512 88fec1fed7a135375516363e4b7f1330d45a6337bbfb45dd35dabce87097ee4e550e968870541e1b496c2ee3db1bd26e0665f4155f1e64d1cc7b6b74d5b71b5c WHIRLPOOL 90d200bec667dd1bd7666d040a432494e1ce703e54ba38ceecd1850059991c3927c638228b9287e19e9d5971fbe4d8197470934c1a6542f729d0fc450b7e0377 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit autotools eutils vcs-snapshot xdg-utils | ||
|
||
DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib applications" | ||
HOMEPAGE="https://01.org/gsso/" | ||
SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV} -> ${P}.tar.gz" | ||
|
||
LICENSE="LGPL-2.1" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~x86" | ||
IUSE="debug" | ||
|
||
RDEPEND=" | ||
dev-db/sqlite:3 | ||
dev-libs/glib:2 | ||
dev-libs/libxml2 | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-util/gtk-doc | ||
" | ||
|
||
DOCS=( AUTHORS NEWS ) | ||
|
||
pkg_setup() { | ||
xdg_environment_reset | ||
} | ||
|
||
src_prepare() { | ||
default | ||
eautoreconf | ||
} | ||
|
||
src_configure() { | ||
econf \ | ||
--disable-python \ | ||
--disable-tests \ | ||
$(use_enable debug) | ||
} | ||
|
||
src_install() { | ||
default | ||
prune_libtool_files | ||
} |