You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lang/inform/inform-6.35_p4.ebuild

52 lines
1.2 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
MY_P="${P/_p/-r}"
DESCRIPTION="Design system for interactive fiction"
HOMEPAGE="https://www.inform-fiction.org/"
SRC_URI="https://ifarchive.org/if-archive/infocom/compilers/inform6/source/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="Artistic-2 Inform"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="emacs tools"
# non-interactive tests use ruby, seem broken, and return true even on failure
RESTRICT="test"
RDEPEND="
tools? (
dev-lang/perl
dev-perl/DateTime
)"
PDEPEND="emacs? ( app-emacs/inform-mode )"
src_compile() {
tc-export CC
emake PREFIX="${EPREFIX}"/usr OPTS="${CFLAGS} ${CPPFLAGS}"
}
src_install() {
local emakeargs=(
PREFIX="${ED}"/usr
REAL_PREFIX="${EPREFIX}"/usr
MANDIR="${ED}"/usr/share/man/man1
PUNYDOCS="${ED}"/usr/share/doc/${PF}/punyinform
PUNYTESTS="${T}" # don't install tests
)
emake -j1 "${emakeargs[@]}" install
dodoc AUTHORS NEWS README.md VERSION docs/README*
use tools || rm "${ED}"/usr/bin/*blorb* || die
find "${ED}"/usr/share/doc \( -name Makefile -o -name 'custom.*' \) -delete || die
}