commit:     5ef6b494299cb8305db058a9e029f909a34fabe2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 29 21:49:17 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun 29 22:22:05 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef6b494

x11-libs/libtinynotify: Modernize to EAPI=6

 x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild | 16 +++++++----
 x11-libs/libtinynotify/libtinynotify-9999.ebuild  | 35 +++++++++++------------
 2 files changed, 27 insertions(+), 24 deletions(-)

diff --git a/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild 
b/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
index e6530951b7d..b87cfbb96ab 100644
--- a/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
+++ b/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
@@ -1,9 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-
-inherit autotools-utils
+EAPI=6
 
 DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
 HOMEPAGE="https://github.com/mgorny/libtinynotify/";
@@ -14,7 +12,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="debug doc static-libs"
 
-RDEPEND="sys-apps/dbus"
+RDEPEND="sys-apps/dbus:0="
 DEPEND="${RDEPEND}
        virtual/pkgconfig
        doc? ( >=dev-util/gtk-doc-1.18 )"
@@ -22,10 +20,16 @@ DEPEND="${RDEPEND}
 DOCS=( README )
 
 src_configure() {
-       myeconfargs=(
+       local myconf=(
                $(use_enable debug)
                $(use_enable doc gtk-doc)
+               $(use_enable static-libs static)
        )
 
-       autotools-utils_src_configure
+       econf "${myconf[@]}"
+}
+
+src_install() {
+       default
+       find "${D}" -name '*.la' -delete
 }

diff --git a/x11-libs/libtinynotify/libtinynotify-9999.ebuild 
b/x11-libs/libtinynotify/libtinynotify-9999.ebuild
index 6d11440f4c2..c2e029412ac 100644
--- a/x11-libs/libtinynotify/libtinynotify-9999.ebuild
+++ b/x11-libs/libtinynotify/libtinynotify-9999.ebuild
@@ -1,43 +1,42 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-#if LIVE
-AUTOTOOLS_AUTORECONF=yes
 EGIT_REPO_URI="https://github.com/mgorny/${PN}.git";
-
-inherit git-r3
-#endif
-
-inherit autotools-utils
+inherit autotools git-r3
 
 DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
 HOMEPAGE="https://github.com/mgorny/libtinynotify/";
-SRC_URI="https://github.com/mgorny/libtinynotify/releases/download/${P}/${P}.tar.bz2";
+SRC_URI=""
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE="debug doc static-libs"
 
 RDEPEND="sys-apps/dbus:0="
 DEPEND="${RDEPEND}
+       >=dev-util/gtk-doc-1.18
        virtual/pkgconfig
        doc? ( >=dev-util/gtk-doc-1.18 )"
 
-#if LIVE
-KEYWORDS=
-SRC_URI=
-DEPEND="${DEPEND}
-       >=dev-util/gtk-doc-1.18"
-#endif
+src_prepare() {
+       default
+       eautoreconf
+}
 
 src_configure() {
-       myeconfargs=(
+       local myconf=(
                $(use_enable debug)
                $(use_enable doc gtk-doc)
+               $(use_enable static-libs static)
        )
 
-       autotools-utils_src_configure
+       econf "${myconf[@]}"
+}
+
+src_install() {
+       default
+       find "${D}" -name '*.la' -delete
 }

Reply via email to