aballier    14/10/27 08:40:50

  Modified:             ChangeLog
  Added:                findlib-1.5.5.ebuild
  Log:
  version bump
  
  Signed-off-by: aball...@gentoo.org
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  Changes    Path
1.118                dev-ml/findlib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.118&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.118&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.117&r2=1.118

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog   10 Aug 2014 20:42:55 -0000      1.117
+++ ChangeLog   27 Oct 2014 08:40:50 -0000      1.118
@@ -1,6 +1,11 @@
 # 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.117 2014/08/10 
20:42:55 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.118 2014/10/27 
08:40:50 aballier Exp $
+
+*findlib-1.5.5 (27 Oct 2014)
+
+  27 Oct 2014; Alexis Ballier <aball...@gentoo.org> +findlib-1.5.5.ebuild:
+  version bump
 
   10 Aug 2014; Sergei Trofimovich <sly...@gentoo.org> findlib-1.4.ebuild:
   QA: drop trailing '.' from DESCRIPTION



1.1                  dev-ml/findlib/findlib-1.5.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.5.5.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.5.5.ebuild?rev=1.1&content-type=text/plain

Index: findlib-1.5.5.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.ebuild,v 1.1 
2014/10/27 08:40:50 aballier Exp $

EAPI=5

inherit multilib

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-3.10:=[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"

ocamlfind_destdir="${EPREFIX}/usr/$(get_libdir)/ocaml"
stublibs="${ocamlfind_destdir}/stublibs"

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 all
        if use ocamlopt; then
                emake 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
}




Reply via email to