diff options
author | Alexis Ballier <aballier@gentoo.org> | 2014-10-29 14:26:39 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2014-10-29 14:26:39 +0000 |
commit | e142c3221730e3e630bee5c13378c80dc022df33 (patch) | |
tree | bb132270cab720d172747cd947161e68de0c9f82 /dev-ml | |
parent | version bump (diff) | |
download | gentoo-2-e142c3221730e3e630bee5c13378c80dc022df33.tar.gz gentoo-2-e142c3221730e3e630bee5c13378c80dc022df33.tar.bz2 gentoo-2-e142c3221730e3e630bee5c13378c80dc022df33.zip |
version bump
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/ocaml-gettext/ChangeLog | 10 | ||||
-rw-r--r-- | dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild | 47 |
2 files changed, 55 insertions, 2 deletions
diff --git a/dev-ml/ocaml-gettext/ChangeLog b/dev-ml/ocaml-gettext/ChangeLog index 573d1277b75d..b21e6a24de8d 100644 --- a/dev-ml/ocaml-gettext/ChangeLog +++ b/dev-ml/ocaml-gettext/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ml/ocaml-gettext -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog,v 1.4 2013/08/24 13:19:29 maekke Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog,v 1.5 2014/10/29 14:26:39 aballier Exp $ + +*ocaml-gettext-0.3.5 (29 Oct 2014) + + 29 Oct 2014; Alexis Ballier <aballier@gentoo.org> + +ocaml-gettext-0.3.5.ebuild: + version bump 24 Aug 2013; Markus Meier <maekke@gentoo.org> ocaml-gettext-0.3.4.ebuild: add ~x86, bug #462360 diff --git a/dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild b/dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild new file mode 100644 index 000000000000..8419f7454282 --- /dev/null +++ b/dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild,v 1.1 2014/10/29 14:26:39 aballier Exp $ + +EAPI=5 + +inherit findlib + +DESCRIPTION="Provides support for internationalization of OCaml program" +HOMEPAGE="http://forge.ocamlcore.org/projects/ocaml-gettext" +SRC_URI="http://forge.ocamlcore.org/frs/download.php/1433/${P}.tar.gz" + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND=">=dev-lang/ocaml-3.12.1:= + >=dev-ml/ocaml-fileutils-0.4.0:= + >=dev-ml/camomile-0.8.3:= + sys-devel/gettext + " +DEPEND="${RDEPEND} + doc? ( app-text/docbook-xsl-stylesheets dev-libs/libxslt ) + test? ( dev-ml/ounit )" + +src_configure() { + econf \ + --with-docbook-stylesheet="${EPREFIX}/usr/share/sgml/docbook/xsl-stylesheets/" \ + $(use_enable doc) \ + $(use_enable test) +} + +src_compile() { + emake -j1 +} + +src_install() { + findlib_src_preinst + emake -j1 DESTDIR="${D}" \ + BINDIR="${ED}/usr/bin" \ + PODIR="${ED}/usr/share/locale/" \ + DOCDIR="${ED}/usr/share/doc/${PF}" \ + MANDIR="${ED}/usr/share/man" \ + install + dodoc CHANGELOG README THANKS TODO +} |