summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-doc/halibut/Manifest1
-rw-r--r--app-doc/halibut/files/halibut-1.2-fno-common.patch22
-rw-r--r--app-doc/halibut/halibut-1.2.ebuild46
3 files changed, 0 insertions, 69 deletions
diff --git a/app-doc/halibut/Manifest b/app-doc/halibut/Manifest
index 20f9a931aeb7..f285e42d4109 100644
--- a/app-doc/halibut/Manifest
+++ b/app-doc/halibut/Manifest
@@ -1,2 +1 @@
-DIST halibut-1.2.tar.gz 991975 BLAKE2B e5751d2f90968240825e3ddadbc070de856f6a340e832bcf0977fb8d31f7b7c8eefa776f3bba4df58641d22cca7e9ac562eef236069e1d9a8e9cdb41324a7376 SHA512 b04cc5c52f2d7cd2bb9a36a1aa896c6a4fd11bcfc5fad3d9c74576bf2576ce237cd7ac3ceeff3bd10dfd5a229614d06d23323509d3a83ff74b4a1965e1d726fc
DIST halibut-1.3.tar.gz 995916 BLAKE2B 78a4409ff1f787134f7cd4eb307e77c81865a2591b55b359b0ef7a45b303cd361f85d344972714dfe8b3e823345de715d99ea542bf3cdf63d6d92548d027c27b SHA512 872f0cdb398002843d7e1b19f6eaf80ff848ce5ffee8653fa88da63c57e89efcbfaadc09b476280d25d38136f7d8af286fa98b9b36598515e0eb50f1945ee34a
diff --git a/app-doc/halibut/files/halibut-1.2-fno-common.patch b/app-doc/halibut/files/halibut-1.2-fno-common.patch
deleted file mode 100644
index e547e304d9c3..000000000000
--- a/app-doc/halibut/files/halibut-1.2-fno-common.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/bk_paper.c
-+++ b/bk_paper.c
-@@ -75,6 +75,8 @@
- #include "halibut.h"
- #include "paper.h"
-
-+font_info *all_fonts;
-+
- typedef struct paper_conf_Tag paper_conf;
- typedef struct paper_idx_Tag paper_idx;
-
---- a/paper.h
-+++ b/paper.h
-@@ -78,7 +78,7 @@ struct ligature_Tag {
- * metrics are read in.
- */
-
--font_info *all_fonts;
-+extern font_info *all_fonts;
-
- struct font_info_Tag {
- font_info *next;
diff --git a/app-doc/halibut/halibut-1.2.ebuild b/app-doc/halibut/halibut-1.2.ebuild
deleted file mode 100644
index 087a75224d41..000000000000
--- a/app-doc/halibut/halibut-1.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-DESCRIPTION="yet another free document preparation system"
-HOMEPAGE="https://www.chiark.greenend.org.uk/~sgtatham/halibut/"
-SRC_URI="https://www.chiark.greenend.org.uk/~sgtatham/${PN}/${P}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc ~riscv x86"
-
-PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
-
-src_compile() {
- tc-export CC
- CFLAGS="${CFLAGS}" \
- CPPFLAGS="${CPPFLAGS}" \
- LFLAGS="${LDFLAGS}" \
- BUILDDIR="${S}/build" \
- VERSION="${PV}" \
- emake
- emake -C doc
-}
-
-DOCS=( doc/halibut.txt )
-HTML_DOCS=(
- doc/index.html
- doc/IndexPage.html
- doc/input.html
- doc/intro.html
- doc/licence.html
- doc/manpage.html
- doc/output.html
- doc/running.html
-)
-
-src_install() {
- dobin build/halibut
- doman doc/halibut.1
- doinfo doc/halibut.info
- einstalldocs
-}