diff options
author | David Seifert <soap@gentoo.org> | 2019-12-24 18:40:14 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-24 18:40:14 +0100 |
commit | 81ce470c8ce8d8a04d089228a1bb0b7ef4df4493 (patch) | |
tree | cf3b668279baa1115800c3ddea07b9a18cb09cb9 /x11-misc/bbrun/bbrun-1.6-r1.ebuild | |
parent | x11-misc/bbppp: Port to EAPI 7 (diff) | |
download | gentoo-81ce470c8ce8d8a04d089228a1bb0b7ef4df4493.tar.gz gentoo-81ce470c8ce8d8a04d089228a1bb0b7ef4df4493.tar.bz2 gentoo-81ce470c8ce8d8a04d089228a1bb0b7ef4df4493.zip |
x11-misc/bbrun: Port to EAPI 7
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-misc/bbrun/bbrun-1.6-r1.ebuild')
-rw-r--r-- | x11-misc/bbrun/bbrun-1.6-r1.ebuild | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/x11-misc/bbrun/bbrun-1.6-r1.ebuild b/x11-misc/bbrun/bbrun-1.6-r1.ebuild index 07fa033e05dc..f9bd99cef70b 100644 --- a/x11-misc/bbrun/bbrun-1.6-r1.ebuild +++ b/x11-misc/bbrun/bbrun-1.6-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="blackbox program execution dialog box" HOMEPAGE="http://www.darkops.net/bbrun" @@ -12,17 +12,21 @@ SRC_URI="http://www.darkops.net/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="" -RDEPEND="x11-libs/gtk+:2" -DEPEND="${RDEPEND} - x11-libs/libXpm +RDEPEND=" + dev-libs/glib:2 + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig" -src_prepare() { - epatch "${FILESDIR}"/${P}-makefile.patch - epatch "${FILESDIR}"/${P}-list.patch -} +PATCHES=( + "${FILESDIR}"/${P}-makefile.patch + "${FILESDIR}"/${P}-list.patch +) src_compile() { emake -C ${PN} CC="$(tc-getCC)" |