diff options
author | Michael Palimaka <kensington@gentoo.org> | 2015-12-21 04:49:02 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2015-12-21 04:51:04 +1100 |
commit | 75caaaec250847217d65060697b9a707c91a1502 (patch) | |
tree | 6d475e9e8cfcfe29d1ce2efb6cce070575f07e34 /net-libs/libaccounts-glib | |
parent | sys-process/iotop: Add python3.5 support (diff) | |
download | gentoo-75caaaec250847217d65060697b9a707c91a1502.tar.gz gentoo-75caaaec250847217d65060697b9a707c91a1502.tar.bz2 gentoo-75caaaec250847217d65060697b9a707c91a1502.zip |
net-libs/libaccounts-glib: version bump
Package-Manager: portage-2.2.26
Diffstat (limited to 'net-libs/libaccounts-glib')
-rw-r--r-- | net-libs/libaccounts-glib/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/net-libs/libaccounts-glib/Manifest b/net-libs/libaccounts-glib/Manifest index b6f057c78168..8b5f871f34c3 100644 --- a/net-libs/libaccounts-glib/Manifest +++ b/net-libs/libaccounts-glib/Manifest @@ -1 +1,2 @@ DIST libaccounts-glib-1.18.tar.gz 579435 SHA256 7aab9ec2ba3ae2548125f4bb330ed433e8066c672e32101a339cbb7f4657ff56 SHA512 133b336cd000f302f14d4285d5a3c6d032a2b5497bf8ce5cd22175e6c847b54e4f8919a6c37786c9b39bac874146683a1bc0547db3f2563e3fe7a3d686d82b85 WHIRLPOOL 102cdd1261bff9980c14f6563bcc41fc561b1751cc6adcc5ed7f6045800c8974443a99512f18352d2ebecd58ee9f69bebd30b52a8106fb15d59095705afaefe9 +DIST libaccounts-glib-1.19.tar.gz 126032 SHA256 098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76 WHIRLPOOL 36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2 diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild b/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild new file mode 100644 index 000000000000..62eefee92da2 --- /dev/null +++ b/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools eutils vcs-snapshot + +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_1.19 -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND=" + dev-db/sqlite:3 + dev-libs/glib:2 + dev-libs/libxml2 +" + +RDEPEND="${DEPEND}" + +RESTRICT="test" + +DOCS=( AUTHORS NEWS ) + +src_prepare() { + eautoreconf +} + +src_configure() { + econf \ + --disable-python \ + --disable-tests \ + $(use_enable debug) +} + +src_install() { + default + prune_libtool_files +} |