summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2021-11-14 14:54:56 +0100
committerJakov Smolić <jsmolic@gentoo.org>2021-11-14 14:58:50 +0100
commit6f3850f963aac4e116ef5787d66c2c4a8c2a1947 (patch)
tree52d9e1eb48d4e95eb3697ff38265f89f34bc2893 /app-text/htmlc/htmlc-2.60.0.ebuild
parentdev-ml/async_ssl: treeclean (diff)
downloadgentoo-6f3850f963aac4e116ef5787d66c2c4a8c2a1947.tar.gz
gentoo-6f3850f963aac4e116ef5787d66c2c4a8c2a1947.tar.bz2
gentoo-6f3850f963aac4e116ef5787d66c2c4a8c2a1947.zip
app-text/htmlc: treeclean
Closes: https://bugs.gentoo.org/704464 Closes: https://bugs.gentoo.org/780090 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'app-text/htmlc/htmlc-2.60.0.ebuild')
-rw-r--r--app-text/htmlc/htmlc-2.60.0.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/app-text/htmlc/htmlc-2.60.0.ebuild b/app-text/htmlc/htmlc-2.60.0.ebuild
deleted file mode 100644
index 38f7c831c39b..000000000000
--- a/app-text/htmlc/htmlc-2.60.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# Override version: 2.4.0 > 2.21.0 so we name it 2.40.0
-MY_P="${P/0[.]/.}"
-
-DESCRIPTION="HTML template files expander"
-HOMEPAGE="http://htmlc.inria.fr/"
-SRC_URI="http://htmlc.inria.fr/${MY_P%.0}.tgz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="htmlc"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="+ocamlopt"
-# Files for the tests are missing...
-#RESTRICT="test"
-
-DEPEND=">=dev-lang/ocaml-3.11.2:=[ocamlopt?]"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/werror.patch
-)
-
-src_configure() {
- ./configure \
- --install-root-dir "${ED}/usr" \
- || die
-}
-
-src_compile() {
- if use ocamlopt ; then
- emake bin
- else
- emake byt
- fi
-}
-
-src_install() {
- if use ocamlopt ; then
- emake installbin
- else
- emake installbyt
- fi
-
- emake MANDIR='$(PREFIXINSTALLDIR)/share/man/man$(MANEXT)' installman
- dodoc README Announce* CHANGES
-}