summaryrefslogtreecommitdiff
blob: 4513bd3abca9bb2a7fbeade587047beb8f220b7a (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
62
63
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.40.ebuild,v 1.3 2002/07/11 06:30:20 drobbins Exp $

S=${WORKDIR}/icon.v940src
SRC_URI="http://www.cs.arizona.edu/icon/ftp/packages/unix/icon.v940src.tgz"

HOMEPAGE="http://www.cs.arizona.edu/icon/"
DESCRIPTION="icon is a v. high level language"

DEPEND="X? ( virtual/x11 )
	sys-devel/gcc"

src_unpack() {
    
    cd ${WORKDIR}
    unpack ${A}
    cd ${S}/config/unix/intel_linux
    patch -p0 <${FILESDIR}/${P}-gentoo.diff
    
}

src_compile() {
    
    cd ${S}

    if [ "`use X`" ]; then
        try make X-Configure name=intel_linux
    else
	try make Configure name=intel_linux
    fi
    
    try make
    
    # small builtin test
    try make Samples
    # large builtin test
    try make Test

}

src_install () {
    
    #try make Install dest=${D}/opt/icon
    # fhs-problems, manual rectify
    
    into /usr
    
    cd ${S}/bin
    rm .placeholder libXpm.a rt.h
    dobin *
    
    cd ${S}/lib
    rm .placeholder
    dolib *
    
    cd ${S}/man/man1
    doman icont.1
    
    cd ${S}/doc
    dodoc * ../README
    
}