blob: 483d95b6d97c75e754d8e3655f437fe4678cde72 (
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
36
37
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit latex-package
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="LPPL-1.2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="app-text/texlive"
DEPEND="${RDEPEND}
app-arch/unzip
sys-devel/bison
sys-devel/flex"
S=${WORKDIR}/${PN}
src_compile() {
emake || die "make failed"
}
src_install() {
latex-package_src_doinstall sty doc
dobin rail || die "Installing the rail tool failed"
newman rail.man rail.1 || die "Installing the manpage failed"
}
|