aballier 14/11/28 16:40:15 Modified: ChangeLog Added: findlib-1.5.5-r1.ebuild Log: add version for ocaml 4.02 Signed-off-by: [email protected] (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path 1.119 dev-ml/findlib/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.119&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.119&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.118&r2=1.119 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v retrieving revision 1.118 retrieving revision 1.119 diff -u -r1.118 -r1.119 --- ChangeLog 27 Oct 2014 08:40:50 -0000 1.118 +++ ChangeLog 28 Nov 2014 16:40:15 -0000 1.119 @@ -1,6 +1,12 @@ # ChangeLog for dev-ml/findlib # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.118 2014/10/27 08:40:50 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.119 2014/11/28 16:40:15 aballier Exp $ + +*findlib-1.5.5-r1 (28 Nov 2014) + + 28 Nov 2014; Alexis Ballier <[email protected]> +findlib-1.5.5-r1.ebuild, + +files/externalmeta.patch: + add version for ocaml 4.02 *findlib-1.5.5 (27 Oct 2014) 1.1 dev-ml/findlib/findlib-1.5.5-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.5.5-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.5.5-r1.ebuild?rev=1.1&content-type=text/plain Index: findlib-1.5.5-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.5.5-r1.ebuild,v 1.1 2014/11/28 16:40:15 aballier Exp $ EAPI=5 inherit multilib eutils DESCRIPTION="OCaml tool to find/use non-standard packages" HOMEPAGE="http://projects.camlcity.org/projects/findlib.html" SRC_URI="http://download.camlcity.org/download/${P}.tar.gz" IUSE="doc +ocamlopt tk" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" DEPEND=">=dev-lang/ocaml-4.02.1:=[ocamlopt?] tk? ( dev-ml/labltk:= )" RDEPEND="${DEPEND}" ocamlfind_destdir="${EPREFIX}/usr/$(get_libdir)/ocaml" stublibs="${ocamlfind_destdir}/stublibs" src_prepare() { epatch "${FILESDIR}/externalmeta.patch" } src_configure() { local myconf use tk && myconf="-with-toolbox" ./configure -bindir "${EPREFIX}"/usr/bin -mandir "${EPREFIX}"/usr/share/man \ -sitelib ${ocamlfind_destdir} \ -config ${ocamlfind_destdir}/findlib/findlib.conf \ -no-custom \ ${myconf} || die "configure failed" } src_compile() { emake -j1 all if use ocamlopt; then emake -j1 opt # optimized code fi } src_install() { emake prefix="${D}" install dodir "${stublibs#${EPREFIX}}" cd "${S}/doc" dodoc QUICKSTART README DOCINFO use doc && dohtml -r ref-html guide-html } check_stublibs() { local ocaml_stdlib=`ocamlc -where` local ldconf="${ocaml_stdlib}/ld.conf" if [ ! -e ${ldconf} ] then echo "${ocaml_stdlib}" > ${ldconf} echo "${ocaml_stdlib}/stublibs" >> ${ldconf} fi if [ -z `grep -e ${stublibs} ${ldconf}` ] then echo ${stublibs} >> ${ldconf} fi } pkg_postinst() { check_stublibs }
