blob: f45fd50e03f7cb14008401588e9f5eef78baa191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Minesweeper clone for the X11 windowing system"
HOMEPAGE="https://salsa.debian.org/debian/xdemineur"
SRC_URI="https://deb.debian.org/debian/pool/main/x/${PN}/xdemineur_${PV}.orig.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
x11-misc/imake
"
DEPEND="
${BDEPEND}
x11-libs/libX11
x11-libs/libXpm
"
PATCHES=(
"${FILESDIR}/${P}-include.patch"
)
src_compile() {
xmkmf
emake
}
|