graphite-tutorial-0_p20241112racket-overlay
download
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MAIN_PH=6155173645965ad5a102b2d96f1bef79f82c6b6f
AUX_PH=6155173645965ad5a102b2d96f1bef79f82c6b6f
inherit racket
DESCRIPTION="A guided tour for Graphite"
HOMEPAGE="https://pkgs.racket-lang.org/package/graphite-tutorial"
SRC_URI="https://github.com/ralsei/graphite/archive/${MAIN_PH}.tar.gz -> ${P}.tar.gz
https://github.com/ralsei/graphite/archive/${AUX_PH}.tar.gz -> ${PN}_aux_graphite-doc-${PV}.tar.gz"
S="${WORKDIR}/graphite-${MAIN_PH}/graphite-tutorial"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
RESTRICT="mirror"
RDEPEND="dev-racket/data-frame
dev-racket/graphite-lib
dev-racket/sawzall-doc
dev-racket/sawzall-lib
dev-racket/threading-doc
dev-racket/threading-lib"
BDEPEND="${RDEPEND}"
PDEPEND="dev-racket/graphite-doc"
src_compile() {
pushd "${WORKDIR}/graphite-${AUX_PH}/graphite-doc" >/dev/null || die
raco_bare_install user graphite-doc
popd >/dev/null || die
racket_src_compile
}
pkg_prerm() {
if [[ -z "${REPLACED_BY_VERSION}" ]] && racket-where graphite-doc ; then
raco_remove "${RACKET_PN}" graphite-doc
fi
}
pkg_postinst() {
! racket-where "${RACKET_PN}" && raco_system_install
has_version dev-racket/graphite-doc &&
raco_system_setup "${RACKET_PN}" graphite-doc
}