mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
x11-libs/libtinynotify-cli: Modernize to EAPI=6
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit autotools-utils
|
||||
EAPI=6
|
||||
|
||||
MY_P=tinynotify-send-${PV}
|
||||
DESCRIPTION="Common CLI routines for tinynotify-send & sw-notify-send"
|
||||
@@ -15,20 +13,25 @@ SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc static-libs"
|
||||
|
||||
RDEPEND="x11-libs/libtinynotify"
|
||||
RDEPEND="x11-libs/libtinynotify:0="
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
doc? ( dev-util/gtk-doc )"
|
||||
|
||||
DOCS=( README )
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
local myconf=(
|
||||
$(use_enable doc gtk-doc)
|
||||
$(use_enable static-libs static)
|
||||
--disable-regular
|
||||
--disable-system-wide
|
||||
)
|
||||
|
||||
autotools-utils_src_configure
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
@@ -1,45 +1,44 @@
|
||||
# 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/tinynotify-send.git"
|
||||
|
||||
inherit git-r3
|
||||
#endif
|
||||
|
||||
inherit autotools-utils
|
||||
inherit autotools git-r3
|
||||
|
||||
MY_P=tinynotify-send-${PV}
|
||||
DESCRIPTION="Common CLI routines for tinynotify-send & sw-notify-send"
|
||||
HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
|
||||
SRC_URI="https://github.com/mgorny/tinynotify-send/releases/download/${MY_P}/${MY_P}.tar.bz2"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
KEYWORDS=""
|
||||
IUSE="doc static-libs"
|
||||
|
||||
RDEPEND="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() {
|
||||
local myeconfargs=(
|
||||
local myconf=(
|
||||
$(use_enable doc gtk-doc)
|
||||
$(use_enable static-libs static)
|
||||
--disable-regular
|
||||
--disable-system-wide
|
||||
)
|
||||
|
||||
autotools-utils_src_configure
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user