diff options
author | 2006-02-04 17:19:45 +0000 | |
---|---|---|
committer | 2006-02-04 17:19:45 +0000 | |
commit | e28d71cf42c7d8cb32421c3c71038eb7fe8bf157 (patch) | |
tree | 2070d565f79450411e175846ac466a7ecddb365a /dev-lang/ocaml/ocaml-3.08.1.ebuild | |
parent | Mark 1.00 stable on ia64 (diff) | |
download | gentoo-2-e28d71cf42c7d8cb32421c3c71038eb7fe8bf157.tar.gz gentoo-2-e28d71cf42c7d8cb32421c3c71038eb7fe8bf157.tar.bz2 gentoo-2-e28d71cf42c7d8cb32421c3c71038eb7fe8bf157.zip |
Clean-up the dir of old versions, hope i don't break anything this time (used some help from repoman).
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-lang/ocaml/ocaml-3.08.1.ebuild')
-rw-r--r-- | dev-lang/ocaml/ocaml-3.08.1.ebuild | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/dev-lang/ocaml/ocaml-3.08.1.ebuild b/dev-lang/ocaml/ocaml-3.08.1.ebuild deleted file mode 100644 index 1cdd167cb836..000000000000 --- a/dev-lang/ocaml/ocaml-3.08.1.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.08.1.ebuild,v 1.14 2006/02/04 16:46:29 mattam Exp $ - -inherit flag-o-matic eutils - -DESCRIPTION="fast modern type-inferring functional programming language descended from the ML (Meta Language) family" -HOMEPAGE="http://www.ocaml.org/" - -SRC_URI="http://caml.inria.fr/distrib/ocaml-3.08/${P}.tar.bz2" - -LICENSE="QPL-1.0 LGPL-2" -SLOT="0" -KEYWORDS="x86 sparc ppc alpha ia64 amd64 hppa ppc-macos" -IUSE="tcltk latex" - -DEPEND="virtual/libc - tcltk? ( >=dev-lang/tk-3.3.3 )" - -pkg_setup() { - ewarn - ewarn "Building ocaml 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 - - local myconf - use tcltk || myconf="-no-tk" - - # Fix for bug #23767. - if [ "${ARCH}" = "sparc" ]; then - myconf="${myconf} -host sparc-unknown-linux-gnu" - fi - - # Fix for bug #46703 - export LC_ALL=C - - ./configure -prefix /usr \ - -bindir /usr/bin \ - -libdir /usr/lib/ocaml \ - -mandir /usr/share/man \ - --with-pthread ${myconf} || die - - sed -i -e "s/\(BYTECCCOMPOPTS=.*\)/\1 ${CFLAGS}/" config/Makefile - sed -i -e "s/\(NATIVECCCOMPOPTS=.*\)/\1 ${CFLAGS}/" config/Makefile - - make world || die - make opt || die - make opt.opt || die -} - -src_install() { - make BINDIR=${D}/usr/bin \ - LIBDIR=${D}/usr/lib/ocaml \ - MANDIR=${D}/usr/share/man \ - install || die - - # silly, silly makefiles - dosed "s:${D}::g" /usr/lib/ocaml/ld.conf - - # documentation - dodoc Changes INSTALL LICENSE README Upgrading -} - -pkg_postinst() { - if use latex; then - echo "TEXINPUTS=/usr/lib/ocaml/ocamldoc:" > /etc/env.d/99ocamldoc - fi - - echo - einfo "OCaml is not binary compatible from version to version," - einfo "so you (may) need to rebuild all packages depending on it that" - einfo "are actually installed on your system." - einfo "To do so, you can run: " - einfo "sh ${FILESDIR}/ocaml-rebuild.sh [-h | emerge options]" - einfo "Which will call emerge on all old packages with the given options" - echo -} |