diff options
author | Sam James <sam@gentoo.org> | 2021-03-15 03:16:00 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-15 04:01:59 +0000 |
commit | 5f94abf337d587ca1b72bd13bc10c6c255ba81e1 (patch) | |
tree | 85009352f900a51dadb88324e123ed4d8b62ca93 /dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild | |
parent | dev-ml/camomile: drop 0.8.5-r2 (diff) | |
download | gentoo-5f94abf337d587ca1b72bd13bc10c6c255ba81e1.tar.gz gentoo-5f94abf337d587ca1b72bd13bc10c6c255ba81e1.tar.bz2 gentoo-5f94abf337d587ca1b72bd13bc10c6c255ba81e1.zip |
dev-ml/ocaml-gettext: drop 0.3.7-r3
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild')
-rw-r--r-- | dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild b/dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild deleted file mode 100644 index 7af5b26e0ad4..000000000000 --- a/dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools findlib - -DESCRIPTION="Provides support for internationalization of OCaml program" -HOMEPAGE="https://github.com/gildor478/ocaml-gettext" -SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1-with-linking-exception" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -PATCHES=( "${FILESDIR}"/ocaml-unsafe-string.patch ) - -BDEPEND=" - doc? ( - app-text/docbook-xsl-stylesheets - dev-libs/libxslt - ) -" -# OCaml 4.10 does not support -unsafe-string by default -# bug #666149 -RDEPEND=" - >=dev-lang/ocaml-3.12.1:= - <dev-lang/ocaml-4.10.0:= - >=dev-ml/ocaml-fileutils-0.4.0:= - >=dev-ml/camomile-0.8.3:= - sys-devel/gettext - dev-ml/camlp4:= - !dev-ml/ocaml-gettext-stub -" -DEPEND=" - ${RDEPEND} - test? ( dev-ml/ounit2 ) -" - -src_prepare() { - default - - # Porting to dev-ml/ounit2 - sed -i \ - -e 's/OCAMLFIND_CHECK_MODULE(oUnit/OCAMLFIND_CHECK_MODULE(ounit2/' \ - configure.in || die - sed -i \ - -e 's/oUnit/ounit2/' \ - test/Makefile || die - - eautoreconf -} - -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 -} |