blob: 254e6227dbabd1c65cff1f379970180aff3cfde9 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/sr/sr-2.3.2.ebuild,v 1.8 2004/07/14 13:53:52 agriffis Exp $
inherit eutils
DESCRIPTION="SR (Synchronizing Resources) is a language for writing concurrent programs"
HOMEPAGE="http://www.cs.arizona.edu/sr"
SRC_URI="ftp://ftp.cs.arizona.edu/sr/sr.tar.Z"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="virtual/ssh"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}.patch
}
src_compile() {
emake || die "make failed"
}
src_install() {
# commands
dobin sr/sr
dobin srl/srl
dobin srm/srm
dobin srprof/srprof
dobin srtex/srtex
dobin srlatex/srlatex
dobin srgrind/srgrind
dobin preproc/*2sr
# library components
insinto /usr/lib/sr
doins sr.h
doins srmulti.h
doins rts/srlib.a
doins library/*.o
doins library/*.spec
doins library/*.impl
doins srmap
doins rts/srx
doins srlatex/srlatex.sty
doins preproc/*2sr.h
doins sr-mode.el
doman man/*.[135]
}
pkg_postinst() {
ranlib /usr/lib/sr/srlib.a
strip /usr/lib/sr/srx
}
|