summaryrefslogtreecommitdiff
blob: adeb31507eda23a93ba76411fca754b74493409d (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/caml-light/caml-light-0.75.ebuild,v 1.2 2005/02/18 10:29:29 mattam Exp $

inherit flag-o-matic eutils

DESCRIPTION="Caml-type language used in the french Computer Science lessons of the Preparatory Classes"
HOMEPAGE="http://pauillac.inria.fr/caml/distrib-caml-light-fra.html"

SRC_URI="ftp://ftp.inria.fr/INRIA/caml-light/cl75unix.tar.gz"

LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="tcltk"

DEPEND="virtual/libc
	tcltk? ( >=dev-lang/tk-3.3.3 )"

src_unpack() {
	unpack ${A}
	cd ${WORKDIR}/cl75/src
}

pkg_setup() {
	ewarn
	ewarn "Building caml-light with unsafe CFLAGS can have unexpected results"
	ewarn "Please retry building with safer CFLAGS before reporting bugs"
	ewarn
}

src_compile() {
	filter-flags "-fstack-protector"
	replace-flags "-O?" -O2
	cd ${WORKDIR}/cl75/src
	make BINDIR=/usr/bin \
		LIBDIR=/usr/lib/caml-light \
		MANDIR=/usr/share/man \
		configure || die

	make BINDIR=/usr/bin \
		LIBDIR=/usr/lib/caml-light \
		MANDIR=/usr/share/man \
		world || die
}

src_install() {
	cd ${WORKDIR}/cl75/src
	mkdir -p ${D}usr/bin
	mkdir -p ${D}usr/lib/caml-light
	mkdir -p ${D}usr/share/man
	make BINDIR=${D}usr/bin \
		LIBDIR=${D}usr/lib/caml-light \
		MANDIR=${D}usr/share/man \
		install || die

}