diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-06-29 23:49:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-06-30 00:22:05 +0200 |
commit | 5ef6b494299cb8305db058a9e029f909a34fabe2 (patch) | |
tree | 84e9dd740b237e56c8c86170411a2f8dc8d0a12e /x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild | |
parent | x11-libs/libtinynotify: Moved back to GitHub (diff) | |
download | gentoo-5ef6b494299cb8305db058a9e029f909a34fabe2.tar.gz gentoo-5ef6b494299cb8305db058a9e029f909a34fabe2.tar.bz2 gentoo-5ef6b494299cb8305db058a9e029f909a34fabe2.zip |
x11-libs/libtinynotify: Modernize to EAPI=6
Diffstat (limited to 'x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild')
-rw-r--r-- | x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild b/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild index e6530951b7dd..b87cfbb96ab0 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 } |