diff options
author | 2019-03-25 21:09:31 +0100 | |
---|---|---|
committer | 2019-03-25 21:10:05 +0100 | |
commit | 1601fc818501e8e9ae4a410466bc60bb63819e6c (patch) | |
tree | 03a55ec1ad8710ceb64b37a08a3ee557b0719ece /dev-tex/rail/rail-1.2_p1-r1.ebuild | |
parent | mail-client/thunderbird-bin: bump to v60.6.1 (diff) | |
download | gentoo-1601fc818501e8e9ae4a410466bc60bb63819e6c.tar.gz gentoo-1601fc818501e8e9ae4a410466bc60bb63819e6c.tar.bz2 gentoo-1601fc818501e8e9ae4a410466bc60bb63819e6c.zip |
dev-tex/rail: Fix LICENSE, fix QA issues.
Update ebuild to EAPI 7.
Change LICENSE to public domain.
Fix dependencies.
Respect CC, CFLAGS, and LDFLAGS.
Build and install documentation properly.
Closes: https://bugs.gentoo.org/87542
Closes: https://bugs.gentoo.org/453148
Closes: https://bugs.gentoo.org/625904
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'dev-tex/rail/rail-1.2_p1-r1.ebuild')
-rw-r--r-- | dev-tex/rail/rail-1.2_p1-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-tex/rail/rail-1.2_p1-r1.ebuild b/dev-tex/rail/rail-1.2_p1-r1.ebuild new file mode 100644 index 000000000000..eb33e29088b4 --- /dev/null +++ b/dev-tex/rail/rail-1.2_p1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit latex-package toolchain-funcs + +DESCRIPTION="Offers syntax/railroad diagrams" +HOMEPAGE="http://www.ctan.org/tex-archive/support/rail/" +SRC_URI="http://mirror.ctan.org/support/${PN}.zip -> ${P}.zip" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="app-arch/unzip + sys-devel/bison + sys-devel/flex" + +S="${WORKDIR}/${PN}" + +src_compile() { + emake -j1 \ + CC="$(tc-getCC)" \ + CFLAGS="-DYYDEBUG ${CFLAGS} ${LDFLAGS}" \ + rail rail.dvi +} + +src_install() { + local LATEX_PACKAGE_SKIP="try.tex" + + latex-package_src_doinstall sty doc + dobin rail + newman rail.man rail.1 +} |