diff options
author | kernaltrap8 <kernaltrap@gmail.com> | 2024-07-03 00:02:34 -0500 |
---|---|---|
committer | kernaltrap8 <kernaltrap@gmail.com> | 2024-07-03 00:02:34 -0500 |
commit | 3a2442fc14862e69f4cc3df46f18384f09d816ed (patch) | |
tree | e868cd5953755dfc033d18f1e678ee8bd98f9c00 /games-puzzle | |
parent | gui-libs/xdg-desktop-portal-hyprland: Remove subproject, live (diff) | |
download | guru-3a2442fc14862e69f4cc3df46f18384f09d816ed.tar.gz guru-3a2442fc14862e69f4cc3df46f18384f09d816ed.tar.bz2 guru-3a2442fc14862e69f4cc3df46f18384f09d816ed.zip |
games-puzzle/xdemineur: fix DEPEND and src_configure issues
Signed-off-by: kernaltrap8 <kernaltrap@gmail.com>
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/xdemineur/xdemineur-2.1.1.ebuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/games-puzzle/xdemineur/xdemineur-2.1.1.ebuild b/games-puzzle/xdemineur/xdemineur-2.1.1.ebuild index f45fd50e0..0a7ca8f72 100644 --- a/games-puzzle/xdemineur/xdemineur-2.1.1.ebuild +++ b/games-puzzle/xdemineur/xdemineur-2.1.1.ebuild @@ -15,17 +15,22 @@ KEYWORDS="~amd64" BDEPEND=" x11-misc/imake " -DEPEND=" - ${BDEPEND} +RDEPEND=" x11-libs/libX11 x11-libs/libXpm " +DEPEND=" + ${RDEPEND} +" PATCHES=( "${FILESDIR}/${P}-include.patch" ) +src_configure() { + xmkmf || die +} + src_compile() { - xmkmf emake } |