summaryrefslogtreecommitdiff
path: root/app-text/htmldoc
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-19 07:47:44 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-19 07:47:44 +0000
commitfcefa9aa213e0ff26901b351fccd47393113ae5d (patch)
tree16ff06e1d47c8dc06b954f726f24cd6f941e3596 /app-text/htmldoc
parent8bb75334c4b9f91e9f95784e986ed31b4bc11f92 (diff)
gentoo auto-resync : 19:12:2022 - 07:47:44
Diffstat (limited to 'app-text/htmldoc')
-rw-r--r--app-text/htmldoc/Manifest2
-rw-r--r--app-text/htmldoc/htmldoc-1.9.11-r1.ebuild58
2 files changed, 0 insertions, 60 deletions
diff --git a/app-text/htmldoc/Manifest b/app-text/htmldoc/Manifest
index d76429c1e212..61f42a8fd0da 100644
--- a/app-text/htmldoc/Manifest
+++ b/app-text/htmldoc/Manifest
@@ -1,5 +1,3 @@
-DIST htmldoc-1.9.11-source.tar.gz 4471815 BLAKE2B a76da0f5129d8d637c440ee1880bdc4c314db02294f8e7387abe28ab7f76a81b47c4670a27d34759f89b82e9b1d7c259d154fac7cb8c2b7caa6e1f99f3a35ebf SHA512 5ee6a61f129be9a7d26c554f1acb533f1edfbf34eefd8f4924e07bcead2680407c68b4e2c9840203d7bb07daf51ea18c422d7c04e33c4b346dd207531f330678
DIST htmldoc-1.9.16-source.tar.gz 3389563 BLAKE2B 1c83e37313fb0a1196d4db3ddca47d4a418ab7aeb8f910c9a27178312a1b0239beddaf81f322b24dcf75dff7e838278fcfa0eed17b5aa493790de2393bcddebf SHA512 c901ed259ef8c0520ed03e314149e7a2fc3b5bffa9c8e9c6c3b023a8c9de1e37b7fa72d224fa7d072f3a5d4b379635d7cfaa016df672da296be8395b49fa935b
-EBUILD htmldoc-1.9.11-r1.ebuild 1360 BLAKE2B f63c196fd6df2bc869e266d2d356c5ca1a56b45a7d1e07e479855e13a915a8fdc82ec7ad1b5270250823c7b4364a24020c507e4a27511dd3debf67a29f2f1f43 SHA512 cfd9f740c0c973bd933b1c0235b3271e84e8c4b6923e1ecf9a509dbff78472ad4d5bb09d9a6f9ced6eda952f08258e400f52a2aa01b9bcbf6b6ecccdb484334c
EBUILD htmldoc-1.9.16.ebuild 1187 BLAKE2B 41ff9692103e3afd2af92e860c497022b336e8f5d2735e0c3798acea1b3c0cf9a7e60b784655ac3270fd05e30a3f6b2abb997918f4be3446926cfadade6b0c3e SHA512 4e82727262dda0584e9c89d2789cb04dbdf89a86d8c4343b7d90ad8efaa96a1c45d859f4769c1684b81247ce3551dcd73b35f8634628c1fa134257e73f5bd833
MISC metadata.xml 254 BLAKE2B 149f11a69823369fb86bd87780bac2b15b2b4da48b793ba085a35280b415a731a4d6f722e5dbf8171a53fda094f16d12445d38b281293f076e171e9e5c36b474 SHA512 cad3377b826d8335228b5b299ffe2ff461d90f6b0693cd0af475ec7f37fa75b437a6ad13d244294d8f0c14f3e93ae7bb0762408f6d9ff3655476d558d0af1c8f
diff --git a/app-text/htmldoc/htmldoc-1.9.11-r1.ebuild b/app-text/htmldoc/htmldoc-1.9.11-r1.ebuild
deleted file mode 100644
index de7e4f8afa89..000000000000
--- a/app-text/htmldoc/htmldoc-1.9.11-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools toolchain-funcs xdg
-
-DESCRIPTION="Convert HTML pages into a PDF document"
-HOMEPAGE="https://www.msweet.org/htmldoc/"
-SRC_URI="https://github.com/michaelrsweet/${PN}/releases/download/v${PV}/${P}-source.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
-IUSE="fltk ssl"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="
- >=media-libs/libpng-1.4:0=
- sys-libs/zlib
- virtual/jpeg:0
- ssl? ( net-libs/gnutls )
- fltk? ( x11-libs/fltk:1 )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- default
- eautoreconf
-
- # Make sure not to use the libs htmldoc ships with
- rm -r jpeg png zlib || die "failed to unbundle jpeg, png, and zlib"
-
- # Fix the documentation path in a few places. Some Makefiles aren't
- # autotoolized =(
- for file in configure doc/Makefile doc/htmldoc.man; do
- sed -i "${file}" \
- -e "s:/doc/htmldoc:/doc/${PF}/html:g" \
- || die "failed to fix documentation path in ${file}"
- done
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with fltk gui)
- $(use_enable ssl)
- $(use_enable ssl gnutls)
- --disable-localjpeg
- --disable-localpng
- --disable-localzlib
- )
-
- CC="$(tc-getCC)" CXX="$(tc-getCXX)" econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake STRIPPROG="true" DSTROOT="${ED}" install
-}