View Raw Ebuild
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic toolchain-funcs
MY_P="rubiks-${PV}"
DESCRIPTION="Dik T. Winter's rubik's cube solver and related tools"
HOMEPAGE="https://www.sagemath.org"
SRC_URI="mirror://sageupstream/rubiks/${MY_P}.tar.bz2"
S="${WORKDIR}"/${MY_P}/dik
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x64-macos"
PATCHES=(
"${FILESDIR}"/${PN}-20070912_p10-fix-missing-includes.patch
"${FILESDIR}"/${PN}-20070912_p10-fix-LDFLAGS.patch
)
src_compile() {
append-cflags -DLARGE_MEM -DVERBOSE -Wno-error=implicit-function-declaration -Wno-error=implicit-int
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" all
}
src_install() {
dobin dikcube size222 size333c sizesquare sizedom sizekoc1 sizekoc2
dodoc README
}