diff options
author | Matthieu Sozeau <mattam@gentoo.org> | 2005-02-06 16:09:57 +0000 |
---|---|---|
committer | Matthieu Sozeau <mattam@gentoo.org> | 2005-02-06 16:09:57 +0000 |
commit | 7f6da5520049635578d4ef6c7db698f825839f7f (patch) | |
tree | f2c4e096a6464db75c58624737362879ff06b699 /dev-lang/caml-light/caml-light-0.75.ebuild | |
parent | fix use of DESTDIR (bug #80941) (diff) | |
download | gentoo-2-7f6da5520049635578d4ef6c7db698f825839f7f.tar.gz gentoo-2-7f6da5520049635578d4ef6c7db698f825839f7f.tar.bz2 gentoo-2-7f6da5520049635578d4ef6c7db698f825839f7f.zip |
New package for the caml-light language.
Diffstat (limited to 'dev-lang/caml-light/caml-light-0.75.ebuild')
-rw-r--r-- | dev-lang/caml-light/caml-light-0.75.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-lang/caml-light/caml-light-0.75.ebuild b/dev-lang/caml-light/caml-light-0.75.ebuild new file mode 100644 index 000000000000..295660896267 --- /dev/null +++ b/dev-lang/caml-light/caml-light-0.75.ebuild @@ -0,0 +1,54 @@ +# 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.1 2005/02/06 16:09:57 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 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 + +} |