diff options
author | Amy Liffey <amynka@gentoo.org> | 2017-08-22 11:18:38 +0200 |
---|---|---|
committer | Amy Liffey <amynka@gentoo.org> | 2017-08-22 11:18:38 +0200 |
commit | 12bd4d81ceaec941ebc64fd292413f0c5ef6da8e (patch) | |
tree | 07a489a6cc2546980b0eb9739fed1e4606627c16 /dev-libs | |
parent | dev-libs/elfio: EAPI 6 bump (diff) | |
download | gentoo-12bd4d81ceaec941ebc64fd292413f0c5ef6da8e.tar.gz gentoo-12bd4d81ceaec941ebc64fd292413f0c5ef6da8e.tar.bz2 gentoo-12bd4d81ceaec941ebc64fd292413f0c5ef6da8e.zip |
dev-libs/liblazy: EAPI 6 bump
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/liblazy/liblazy-0.2-r1.ebuild (renamed from dev-libs/liblazy/liblazy-0.2.ebuild) | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dev-libs/liblazy/liblazy-0.2.ebuild b/dev-libs/liblazy/liblazy-0.2-r1.ebuild index 4a05b3554127..d6d1a51748ef 100644 --- a/dev-libs/liblazy/liblazy-0.2.ebuild +++ b/dev-libs/liblazy/liblazy-0.2-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + DESCRIPTION="lib for D-Bus daemon messages, querying HAL or PolicyKit privileges" HOMEPAGE="https://freedesktop.org/wiki/Software/liblazy" SRC_URI="https://people.freedesktop.org/~homac/${PN}/${P}.tar.bz2" @@ -14,12 +16,11 @@ RDEPEND="sys-apps/dbus" DEPEND="${RDEPEND} virtual/pkgconfig" -src_compile() { +src_configure() { econf --disable-dependency-tracking - emake || die "emake failed." } src_install() { - emake DESTDIR="${D}" install || die "emake install failed." + emake DESTDIR="${D}" install dodoc AUTHORS NEWS README } |