Skip to content

Commit

Permalink
games-emulation/mgba: fix unquoted variable BUILD_DIR
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Bracht Laumann Jespersen <[email protected]>
Signed-off-by: Sam James <[email protected]>
  • Loading branch information
laumann authored and thesamesam committed Jun 16, 2022
1 parent c9c31b3 commit 8a1ee8c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions games-emulation/mgba/mgba-0.9.2.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
Expand Down Expand Up @@ -94,7 +94,7 @@ src_compile() {

src_install() {
if use qt5 ; then
dobin ${BUILD_DIR}/qt/${PN}-qt
dobin "${BUILD_DIR}"/qt/${PN}-qt
doman doc/${PN}-qt.6
domenu res/${PN}-qt.desktop
for size in 16 24 32 48 64 96 128 256 ; do
Expand All @@ -103,10 +103,10 @@ src_install() {
fi
if use sdl ; then
doman doc/${PN}.6
newbin ${BUILD_DIR}/sdl/${PN} ${PN}-sdl
newbin "${BUILD_DIR}"/sdl/${PN} ${PN}-sdl
fi

dolib.so ${BUILD_DIR}/lib${PN}.so*
dolib.so "${BUILD_DIR}"/lib${PN}.so*
}

pkg_preinst() {
Expand Down
6 changes: 3 additions & 3 deletions games-emulation/mgba/mgba-0.9.3-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ src_compile() {

src_install() {
if use qt5 ; then
dobin ${BUILD_DIR}/qt/${PN}-qt
dobin "${BUILD_DIR}"/qt/${PN}-qt
doman doc/${PN}-qt.6
domenu res/${PN}-qt.desktop
for size in 16 24 32 48 64 96 128 256 ; do
Expand All @@ -107,10 +107,10 @@ src_install() {
fi
if use sdl ; then
doman doc/${PN}.6
newbin ${BUILD_DIR}/sdl/${PN} ${PN}-sdl
newbin "${BUILD_DIR}"/sdl/${PN} ${PN}-sdl
fi

dolib.so ${BUILD_DIR}/lib${PN}.so*
dolib.so "${BUILD_DIR}"/lib${PN}.so*
}

pkg_preinst() {
Expand Down
8 changes: 4 additions & 4 deletions games-emulation/mgba/mgba-0.9.3.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
Expand Down Expand Up @@ -94,7 +94,7 @@ src_compile() {

src_install() {
if use qt5 ; then
dobin ${BUILD_DIR}/qt/${PN}-qt
dobin "${BUILD_DIR}"/qt/${PN}-qt
doman doc/${PN}-qt.6
domenu res/${PN}-qt.desktop
for size in 16 24 32 48 64 96 128 256 ; do
Expand All @@ -103,10 +103,10 @@ src_install() {
fi
if use sdl ; then
doman doc/${PN}.6
newbin ${BUILD_DIR}/sdl/${PN} ${PN}-sdl
newbin "${BUILD_DIR}"/sdl/${PN} ${PN}-sdl
fi

dolib.so ${BUILD_DIR}/lib${PN}.so*
dolib.so "${BUILD_DIR}"/lib${PN}.so*
}

pkg_preinst() {
Expand Down
8 changes: 4 additions & 4 deletions games-emulation/mgba/mgba-9999.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
Expand Down Expand Up @@ -94,7 +94,7 @@ src_compile() {

src_install() {
if use qt5 ; then
dobin ${BUILD_DIR}/qt/${PN}-qt
dobin "${BUILD_DIR}"/qt/${PN}-qt
doman doc/${PN}-qt.6
domenu res/${PN}-qt.desktop
for size in 16 24 32 48 64 96 128 256 ; do
Expand All @@ -103,10 +103,10 @@ src_install() {
fi
if use sdl ; then
doman doc/${PN}.6
newbin ${BUILD_DIR}/sdl/${PN} ${PN}-sdl
newbin "${BUILD_DIR}"/sdl/${PN} ${PN}-sdl
fi

dolib.so ${BUILD_DIR}/lib${PN}.so*
dolib.so "${BUILD_DIR}"/lib${PN}.so*
}

pkg_preinst() {
Expand Down

0 comments on commit 8a1ee8c

Please sign in to comment.