x11-libs/libtinynotify-systemwide: Modernize to EAPI=6

This commit is contained in:
Michał Górny
2017-06-29 23:56:49 +02:00
parent c0eb2fec6e
commit 016a6451f4
2 changed files with 28 additions and 25 deletions

View File

@@ -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 system-wide notifications module for libtinynotify"
HOMEPAGE="https://github.com/mgorny/libtinynotify-systemwide/"
@@ -14,16 +12,22 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc static-libs"
RDEPEND="sys-process/procps
x11-libs/libtinynotify"
RDEPEND="sys-process/procps:0=
x11-libs/libtinynotify:0="
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( dev-util/gtk-doc )"
src_configure() {
myeconfargs=(
local myconf=(
$(use_enable doc gtk-doc)
$(use_enable static-libs static)
)
autotools-utils_src_configure
econf "${myconf[@]}"
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}

View File

@@ -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 system-wide notifications module for libtinynotify"
HOMEPAGE="https://github.com/mgorny/libtinynotify-systemwide/"
SRC_URI="https://github.com/mgorny/libtinynotify-systemwide/releases/download/${P}/${P}.tar.bz2"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS=""
IUSE="doc static-libs"
RDEPEND="sys-process/procps:0=
x11-libs/libtinynotify:0="
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-1.18
virtual/pkgconfig
doc? ( dev-util/gtk-doc )"
#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 doc gtk-doc)
$(use_enable static-libs static)
)
autotools-utils_src_configure
econf "${myconf[@]}"
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}