mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sci-mathematics/coq: bump to 8.5
Package-Manager: portage-2.2.27 Signed-off-by: Alexis Ballier <aballier@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST coq-8.4pl5.tar.gz 4070062 SHA256 35815ab78a58d72799eacaab155427620ab071677882ca6c98d7bfec97d25245 SHA512 0965ff409933d601a5c96963ea805ce20dd22f1fd9a9473898de1b376403b4e7a9a86b36b58eb1480cfb3a25970626e1dcd225899c089f5a301f4809e7f8f242 WHIRLPOOL 6dea97e7fe655a33757e8f031b28f91f98558e53205890d6b9d928d5641c05814f8d743cb02c39b26dcf93aa4076c5bbd9710a7dfd9f6a3456e38039b0cb8220
|
||||
DIST coq-8.4pl6.tar.gz 4099815 SHA256 a540a231a9970a49353ca039f3544616ff86a208966ab1c593779ae13c91ebd6 SHA512 238bc6e28348f40f5619aa28d2e871179d9edeb6eb3f2521af6f407e24a889c8c68fa11c8b12e026f016f0fb7d5006447c3ab7eeae0804fc082d65774aefe0ef WHIRLPOOL 2120dcddce773d90ba024e97fc00df3d563edf398eaf0bbb3dc1df1265b5e657cb4044d334f598898c30a88f0579b35b38f1d6bad4ea5e373a0a30826b245e99
|
||||
DIST coq-8.5.tar.gz 5346653 SHA256 89a92fb8b91e7cb0797d41c87cd13e4b63bee76c32a6dcc3d7c8055ca6a9ae3d SHA512 28835a9dc4c926f97b14d23fe746e45e17942003e29807ec59f301eb0b697d704f05afc4cccd31b83bc27e9877d079d00e94a2101ba16ae32f4134e90ad011fb WHIRLPOOL 30925b92f71ba606e43f1b46368822e8d6f6e6c1ae500c8fe1fc912c4ef0608c6db3c070d37ffabbd0e054eac0ff7d1b1e46eae33b73149bf238101b20a0f6d2
|
||||
|
||||
96
sci-mathematics/coq/coq-8.5.ebuild
Normal file
96
sci-mathematics/coq/coq-8.5.ebuild
Normal file
@@ -0,0 +1,96 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit eutils multilib
|
||||
|
||||
MY_PV=${PV/_p/pl}
|
||||
MY_P=${PN}-${MY_PV}
|
||||
|
||||
DESCRIPTION="Proof assistant written in O'Caml"
|
||||
HOMEPAGE="http://coq.inria.fr/"
|
||||
SRC_URI="http://${PN}.inria.fr/distrib/V${MY_PV}/files/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE="gtk debug +ocamlopt doc camlp5"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-lang/ocaml-3.11.2:=[ocamlopt?]
|
||||
camlp5? ( >=dev-ml/camlp5-6.02.3:=[ocamlopt?] )
|
||||
!camlp5? ( dev-ml/camlp4:= )
|
||||
gtk? ( >=dev-ml/lablgtk-2.10.1:=[sourceview,ocamlopt?] )"
|
||||
DEPEND="${RDEPEND}
|
||||
doc? (
|
||||
media-libs/netpbm[png,zlib]
|
||||
virtual/latex-base
|
||||
dev-tex/hevea
|
||||
dev-tex/xcolor
|
||||
dev-texlive/texlive-pictures
|
||||
dev-texlive/texlive-mathextra
|
||||
dev-texlive/texlive-latexextra
|
||||
)"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}-8.5-do-not-install-revision.patch"
|
||||
epatch "${FILESDIR}/${PN}-8.4_p5-no-clean-before-test.patch"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
ocaml_lib=$(ocamlc -where)
|
||||
local myconf=(
|
||||
-prefix /usr
|
||||
-bindir /usr/bin
|
||||
-libdir /usr/$(get_libdir)/coq
|
||||
-mandir /usr/share/man
|
||||
-emacslib /usr/share/emacs/site-lisp
|
||||
-coqdocdir /usr/$(get_libdir)/coq/coqdoc
|
||||
-docdir /usr/share/doc/${PF}
|
||||
-configdir /etc/xdg/${PN}
|
||||
-lablgtkdir ${ocaml_lib}/lablgtk2
|
||||
)
|
||||
|
||||
use debug && myconf+=( -debug )
|
||||
use doc || myconf+=( -with-doc no )
|
||||
|
||||
if use gtk; then
|
||||
if use ocamlopt; then
|
||||
myconf+=( -coqide opt )
|
||||
else
|
||||
myconf+=( -coqide byte )
|
||||
fi
|
||||
else
|
||||
myconf+=( -coqide no )
|
||||
fi
|
||||
|
||||
use ocamlopt || myconf+=( -byte-only )
|
||||
|
||||
if use camlp5; then
|
||||
myconf+=( -usecamlp5 -camlp5dir ${ocaml_lib}/camlp5 )
|
||||
else
|
||||
myconf+=( -usecamlp4 )
|
||||
fi
|
||||
|
||||
export CAML_LD_LIBRARY_PATH="${S}/kernel/byterun/"
|
||||
./configure ${myconf[@]} || die "configure failed"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake STRIP="true" -j1 world VERBOSE=1
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake STRIP="true" check VERBOSE=1
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake STRIP="true" COQINSTALLPREFIX="${D}" install VERBOSE=1
|
||||
dodoc README CREDITS CHANGES
|
||||
|
||||
use gtk && make_desktop_entry "coqide" "Coq IDE" "${EPREFIX}/usr/share/coq/coq.png"
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
Index: coq-8.5/Makefile.build
|
||||
===================================================================
|
||||
--- coq-8.5.orig/Makefile.build
|
||||
+++ coq-8.5/Makefile.build
|
||||
@@ -787,14 +787,10 @@ endif
|
||||
# it with libraries
|
||||
-$(MKDIR) $(FULLCOQLIB)/plugins/micromega
|
||||
$(INSTALLBIN) $(CSDPCERT) $(FULLCOQLIB)/plugins/micromega
|
||||
- rm -f $(FULLCOQLIB)/revision
|
||||
- -$(INSTALLLIB) revision $(FULLCOQLIB)
|
||||
|
||||
install-library-light:
|
||||
$(MKDIR) $(FULLCOQLIB)
|
||||
$(INSTALLSH) $(FULLCOQLIB) $(LIBFILESLIGHT) $(INITPLUGINS)
|
||||
- rm -f $(FULLCOQLIB)/revision
|
||||
- -$(INSTALLLIB) revision $(FULLCOQLIB)
|
||||
ifndef CUSTOM
|
||||
$(INSTALLLIB) $(DLLCOQRUN) $(FULLCOQLIB)
|
||||
endif
|
||||
Reference in New Issue
Block a user