blob: 9b89d5949658d61830fd1c039f4a1603124e787a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2024 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
app-alternatives/yacc
app-alternatives/lex"
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
}
|