blob: 9caddd3b2e44633b4ea7be0a9922b2e3c3171307 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/snobol/snobol-0.99.4.ebuild,v 1.1 2003/12/22 09:17:30 robbat2 Exp $
DESCRIPTION="Phil Budne's port of Macro SNOBOL4 in C, for modern machines"
HOMEPAGE="http://www.snobol4.org/csnobol4/"
SRC_URI="mirror://snobol4/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="sys-devel/gcc
sys-devel/m4"
RDEPEND=""
S=${WORKDIR}/${P}
src_unpack() {
unpack ${A}
sed '/autoconf/s:autoconf:./autoconf:g' -i ${S}/configure
echo "OPT=${CFLAGS}" >${S}/local-config
echo "ADD_CPPFLAGS(-DUSE_STDARG_H)" >>${S}/local-config
echo "BINDEST=/usr/bin/snobol4" >>${S}/local-config
echo "MANDEST=/usr/share/man/man4/snobol4.1" >>${S}/local-config
echo "SNOLIB_DIR=/usr/lib/snobol4" >>${S}/local-config
}
src_compile() {
# WARNING
# The configure script is NOT what you expect
emake || die "emake failed"
emake doc/snobol4.1 || die "emake doc/snobol4.1 failed"
}
src_install() {
into /usr
newbin xsnobol4 snobol4
dodir /usr/lib/snobol4
insinto /usr/lib/snobol4
doins snolib.a snolib/bq.sno
doman doc/*.1
dohtml doc/*.html
rm doc/*.html
dodoc doc/*.ps doc/*.doc
}
|