forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snobol-1.1.ebuild
59 lines (49 loc) · 1.38 KB
/
snobol-1.1.ebuild
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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
DESCRIPTION="Phil Budne's port of Macro SNOBOL4 in C, for modern machines"
HOMEPAGE="http://www.snobol4.org/csnobol4/"
MY_PN="snobol4"
MY_P="${MY_PN}-${PV}"
#SRC_URI="ftp://ftp.snobol4.org/snobol4/${MY_P}.tar.gz ftp://ftp.ultimate.com/snobol/${MY_P}.tar.gz"
SRC_URI="mirror://snobol4/${MY_P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="sys-devel/gcc
sys-devel/m4"
RDEPEND=""
S=${WORKDIR}/${MY_P}
src_prepare() {
#export CFLAGS="-O0 -pipe"
sed -i.orig -e '/autoconf/s:autoconf:./autoconf:g' \
-e '/ADD_LDFLAGS/s/-ldb/-lndbm/' \
"${S}"/configure
echo "ADD_OPT([${CFLAGS}])" >>${S}/local-config
echo "ADD_CPPFLAGS([-DUSE_STDARG_H])" >>${S}/local-config
echo "ADD_CPPFLAGS([-DHAVE_STDARG_H])" >>${S}/local-config
echo "BINDEST=${EPREFIX}/usr/bin/snobol4" >>${S}/local-config
echo "MANDEST=${EPREFIX}/usr/share/man/man4/snobol4.1" >>${S}/local-config
echo "SNOLIB_DIR=${EPREFIX}/usr/lib/snobol4" >>${S}/local-config
}
src_configure() {
# WARNING
# The configure script is NOT what you expect
:
}
src_compile() {
emake
emake doc/snobol4.1
}
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/*.txt doc/*.pdf
}