diff options
author | 2003-05-24 13:18:58 +0000 | |
---|---|---|
committer | 2003-05-24 13:18:58 +0000 | |
commit | 0a53f3304949e29154c5eaa161dfbcdbe090792d (patch) | |
tree | 3d50d51a979441c4923afe0e07f821a4335bb27d /dev-lang/ocaml | |
parent | cleanup (diff) | |
download | historical-0a53f3304949e29154c5eaa161dfbcdbe090792d.tar.gz historical-0a53f3304949e29154c5eaa161dfbcdbe090792d.tar.bz2 historical-0a53f3304949e29154c5eaa161dfbcdbe090792d.zip |
cleanup
Diffstat (limited to 'dev-lang/ocaml')
-rw-r--r-- | dev-lang/ocaml/Manifest | 3 | ||||
-rw-r--r-- | dev-lang/ocaml/files/digest-ocaml-3.04-r1 | 3 | ||||
-rw-r--r-- | dev-lang/ocaml/files/ocaml-3.04-ppc.diff.tgz | bin | 2967 -> 0 bytes | |||
-rw-r--r-- | dev-lang/ocaml/ocaml-3.04-r1.ebuild | 65 |
4 files changed, 0 insertions, 71 deletions
diff --git a/dev-lang/ocaml/Manifest b/dev-lang/ocaml/Manifest index 7d5c153f6e9d..b75a2ebe7902 100644 --- a/dev-lang/ocaml/Manifest +++ b/dev-lang/ocaml/Manifest @@ -1,9 +1,6 @@ MD5 44738768a9de3beed1e8944054a23578 ChangeLog 2683 -MD5 828cbf42cae99b11c6b6fdd1ce69175c ocaml-3.04-r1.ebuild 1429 MD5 d570fb6230e480252908dedd8b5a8faf ocaml-3.06-r1.ebuild 1239 MD5 71516833e12927d7935f31937866dbdb ocaml-3.06.ebuild 1176 -MD5 16e3ae70d2c90d821a9419e685105a44 files/digest-ocaml-3.04-r1 200 MD5 30ac0d14e37ff0be57927d84e4e7e1c6 files/digest-ocaml-3.06 197 -MD5 e8120e097a0f40c921bcf811cb355d46 files/ocaml-3.04-ppc.diff.tgz 2967 MD5 13c4abf06e236e8835011a387f90ecc9 files/digest-ocaml-3.06-r1 63 MD5 4df214d6cd74b3c5955d868879dd6cc7 files/ocaml-3.06-tcltk-8.4compat-patch.bz2 639 diff --git a/dev-lang/ocaml/files/digest-ocaml-3.04-r1 b/dev-lang/ocaml/files/digest-ocaml-3.04-r1 deleted file mode 100644 index ebdd2d0377de..000000000000 --- a/dev-lang/ocaml/files/digest-ocaml-3.04-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 e8120e097a0f40c921bcf811cb355d46 /files/ocaml-3.04-ppc.diff.tgz 2967 -MD5 828cbf42cae99b11c6b6fdd1ce69175c /ocaml-3.04-r1.ebuild 1429 -MD5 7f2fbb849fccb33308188aa19aa9b0ee ocaml-3.04.tar.gz 1968138 diff --git a/dev-lang/ocaml/files/ocaml-3.04-ppc.diff.tgz b/dev-lang/ocaml/files/ocaml-3.04-ppc.diff.tgz Binary files differdeleted file mode 100644 index 478078305c69..000000000000 --- a/dev-lang/ocaml/files/ocaml-3.04-ppc.diff.tgz +++ /dev/null diff --git a/dev-lang/ocaml/ocaml-3.04-r1.ebuild b/dev-lang/ocaml/ocaml-3.04-r1.ebuild deleted file mode 100644 index c99b66f6e731..000000000000 --- a/dev-lang/ocaml/ocaml-3.04-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.04-r1.ebuild,v 1.11 2003/04/11 18:32:16 method Exp $ - -IUSE="tcltk" - -inherit flag-o-matic -filter-flags "-fstack-protector" - -S=${WORKDIR}/${P} -DESCRIPTION="Objective Caml is a fast modern type-inferring functional programming language descended from the ML (Meta Language) family." -SRC_URI="ftp://ftp.inria.fr/lang/caml-light/${P}.tar.gz" -HOMEPAGE="http://www.ocaml.org/" - -DEPEND="virtual/glibc - tcltk? ( >=dev-lang/tk-3.3.3 )" - -SLOT="0" -LICENSE="QPL-1.0 LGPL-2" -KEYWORDS="x86 sparc " - -# The unpack function is needed only so that we can apply a ppc patch from cvs. -# This should be fixed in v.>3.04, so the function can be removed then. - -src_unpack() -{ - unpack ${A} - cd ${S} - if [ ${ARCH} == "ppc" ] - then - tar -zxf ${FILESDIR}/${P}-ppc.diff.tgz - patch -l -p1 < ${P}-ppc.diff - fi -} - -src_compile() -{ - ./configure -prefix /usr \ - -bindir /usr/bin \ - -libdir /usr/lib/ocaml \ - -mandir /usr/man/man1 \ - -with-pthread \ - - 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/man/man1 \ - install || die - - dodir /etc/env.d - echo LDPATH=/usr/lib/ocaml:/usr/lib/ocaml/labltk \ - > ${D}/etc/env.d/30ocaml - dodoc Changes INSTALL LICENSE README Upgrading - -} - - - - |