diff options
Diffstat (limited to 'games-puzzle/xdemineur/xdemineur-2.1.1-r1.ebuild')
-rw-r--r-- | games-puzzle/xdemineur/xdemineur-2.1.1-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/games-puzzle/xdemineur/xdemineur-2.1.1-r1.ebuild b/games-puzzle/xdemineur/xdemineur-2.1.1-r1.ebuild new file mode 100644 index 000000000..055c80701 --- /dev/null +++ b/games-puzzle/xdemineur/xdemineur-2.1.1-r1.ebuild @@ -0,0 +1,48 @@ +# 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 +} |