mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
Closes: https://bugs.gentoo.org/937365 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
49 lines
841 B
Bash
49 lines
841 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
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
|
|
"
|
|
RDEPEND="
|
|
x11-libs/libX11
|
|
x11-libs/libXext
|
|
x11-libs/libXpm
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-include.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
|
|
IMAKECPP="${IMAKECPP:-${CHOST}-gcc -E}" xmkmf || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake \
|
|
CC="$(tc-getCC)" \
|
|
CDEBUGFLAGS="${CFLAGS}" \
|
|
LOCAL_LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
emake DESTDIR="${D}" install.man
|
|
}
|