commit: 148609f464fc9b27262dd5f971ef31d0f0ab4417
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Thu Nov 12 19:51:48 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Nov 12 19:55:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=148609f4
net-misc/kristall: Fix building a second time in src_install
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
net-misc/kristall/kristall-0.3.ebuild | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/net-misc/kristall/kristall-0.3.ebuild
b/net-misc/kristall/kristall-0.3.ebuild
index c3b48ce2..77ffd42a 100644
--- a/net-misc/kristall/kristall-0.3.ebuild
+++ b/net-misc/kristall/kristall-0.3.ebuild
@@ -20,13 +20,10 @@ RDEPEND="
"
DEPEND="${RDEPEND}"
-src_configure() {
- # qmake overwrites Makefile but it is needed for installing.
- mv Makefile{,.tmp} || die
- eqmake5 src/kristall.pro
+src_compile() {
+ emake
}
src_install() {
- mv Makefile{.tmp,} || die
- INSTALL="install -D" PREFIX="${EPREFIX}/usr" default
+ emake DESTDIR="${D}" INSTALL="install -D" PREFIX="${EPREFIX}/usr"
install
}