blob: 4620813921eb3e6ada4029a38caa0715787631ec (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Synthesize Petri nets into asynchronous circuits"
HOMEPAGE="http://www.lsi.upc.edu/~jordicf/petrify/"
SRC_URI="http://www.lsi.upc.edu/~jordicf/petrify/distrib/petrify-4.2-linux.tgz"
S="${WORKDIR}"/${PN}
LICENSE="Old-MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="media-gfx/graphviz"
RESTRICT="strip"
QA_PREBUILT="opt/petrify/petrify"
src_install() {
exeinto /opt/petrify
doexe bin/petrify lib/petrify.lib
dosym petrify /opt/petrify/draw_astg
dosym petrify /opt/petrify/write_sg
dodoc -r doc/.
doman man/man1/*
dodir /etc/env.d
newenvd - 00petrify <<- _EOF_
PATH="${EPREFIX}/opt/petrify"
_EOF_
}
|