diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-28 21:28:26 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-28 22:52:41 +0200 |
commit | 7882e73b161e091c098dcd2dbf8071df48020930 (patch) | |
tree | 1caa6302669d21fe15d567f5568fe0e6380e5e97 /net-libs/libsignon-glib | |
parent | app-emulation/qemu: Remove bundled copy of libfdt (diff) | |
download | gentoo-7882e73b161e091c098dcd2dbf8071df48020930.tar.gz gentoo-7882e73b161e091c098dcd2dbf8071df48020930.tar.bz2 gentoo-7882e73b161e091c098dcd2dbf8071df48020930.zip |
net-libs/libsignon-glib: epatch->eapply, drop eutils, fix REQUIRED_USE
Gentoo-bug: 635122
Package-Manager: Portage-2.3.13, Repoman-2.3.4
Diffstat (limited to 'net-libs/libsignon-glib')
-rw-r--r-- | net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild b/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild index 83bffcb79c46..7a39014192a5 100644 --- a/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild +++ b/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python{2_7,3_4,3_5} ) -inherit autotools eutils python-r1 vcs-snapshot xdg-utils +inherit autotools python-r1 vcs-snapshot xdg-utils DESCRIPTION="GLib binding for the D-Bus API provided by signond" HOMEPAGE="https://01.org/gsso/" @@ -15,7 +15,7 @@ LICENSE="LGPL-2.1" KEYWORDS="amd64 x86" IUSE="debug doc +introspection python test" -REQUIRED_USE="${PYTHON_REQUIRED_USE} python? ( introspection )" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} introspection )" RDEPEND=" dev-libs/glib:2 @@ -40,7 +40,7 @@ src_prepare() { default if ! use doc; then - epatch "${FILESDIR}/${PN}-1.12-doc-disable.patch" + eapply "${FILESDIR}/${PN}-1.12-doc-disable.patch" fi eautoreconf @@ -83,5 +83,5 @@ src_install() { if use python; then python_foreach_impl run_in_build_dir default fi - prune_libtool_files + find "${D}" -name '*.la' -delete || die } |