app-doc/halibut: drop 1.2, EAPI-6--

Closes: https://bugs.gentoo.org/848528
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2022-08-16 22:56:13 +02:00
parent 4701a65d8d
commit 655ce4a88d
3 changed files with 0 additions and 69 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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
}