summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-09-03 00:41:47 +1000
committerMichael Palimaka <kensington@gentoo.org>2017-09-03 00:46:04 +1000
commit86926e54106f071a9288095e1a20d47b7be62e5e (patch)
tree41767664556d85ec107242fabc50410966e0ae24
parentx11-plugins/astime: remove unused patch (diff)
downloadgentoo-86926e54106f071a9288095e1a20d47b7be62e5e.tar.gz
gentoo-86926e54106f071a9288095e1a20d47b7be62e5e.tar.bz2
gentoo-86926e54106f071a9288095e1a20d47b7be62e5e.zip
app-text/htmldoc: remove 1.8.29
Package-Manager: Portage-2.3.6, Repoman-2.3.3
-rw-r--r--app-text/htmldoc/Manifest1
-rw-r--r--app-text/htmldoc/htmldoc-1.8.29.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/app-text/htmldoc/Manifest b/app-text/htmldoc/Manifest
index 8df11ba658f2..d8ed8a5b3577 100644
--- a/app-text/htmldoc/Manifest
+++ b/app-text/htmldoc/Manifest
@@ -1,2 +1 @@
-DIST htmldoc-1.8.29-source.tar.bz2 4089227 SHA256 e8c96ad740d19169eab8305c8e2ee1c795c4afa59ba99d18786ad191a2853f31 SHA512 06c4367b84005624564dfb33d2cc632cbfc711268ffce9efe00c17760da17637949fc7415fd29fcd63edc26ba96ff18cf57d1e9d36e7205b92ac2095cf4acfc8 WHIRLPOOL 3efe016ce4e071d164e3ca44fe3c8cba9ba830eb0847215116fbccab45b7ae913bfe94c723d4c8ba952c48ce31c68e5c4a71bd7048030a03c8fb3dffe42ea6d3
DIST htmldoc-1.8.30-source.tar.gz 3901592 SHA256 7fb7a532f590f7ce1b7c8486d9fe30adaea3c7c32cb412ba7cf093d67cba5fc6 SHA512 713dc67622533dae896745ac8809e43a7f91696715aeb77df2628bd04c0d3e16c8402891499e8e0c10cab793b44114e600d5935b3c76a3cfa303c10897456804 WHIRLPOOL 873cc5785bc295197e8461214f02279b6225b9ea07345a86e855341abc5a827aeef0c715b4c77ed8a74028e2a5a61ae6b0412055c09cbe39a92be54764561d7f
diff --git a/app-text/htmldoc/htmldoc-1.8.29.ebuild b/app-text/htmldoc/htmldoc-1.8.29.ebuild
deleted file mode 100644
index 97ce52de2d98..000000000000
--- a/app-text/htmldoc/htmldoc-1.8.29.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Convert HTML pages into a PDF document"
-SRC_URI="http://www.msweet.org/files/project1/${P}-source.tar.bz2"
-HOMEPAGE="http://www.msweet.org/projects.php?Z1"
-
-IUSE="fltk"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
-
-DEPEND=">=media-libs/libpng-1.4:0=
- virtual/jpeg:0
- fltk? ( x11-libs/fltk:1 )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- # make sure not to use the libs htmldoc ships with
- mkdir foo ; mv jpeg foo/ ; mv png foo/ ; mv zlib foo/
-
- sed -i "s:^#define DOCUMENTATION \"\$prefix/share/doc/htmldoc\":#define DOCUMENTATION \"\$prefix/share/doc/${PF}/html\":" \
- configure || die
-
- eapply "${FILESDIR}/${PN}-destdir.patch" \
- "${FILESDIR}/${PN}-break.patch"
-
- default
-}
-
-src_configure() {
- local myconf="$(use_with fltk gui)"
-
- CC=$(tc-getCC) CXX=$(tc-getCXX) \
- econf ${myconf}
- # Add missing -lfltk_images to LIBS
- if use fltk; then
- sed -i 's:-lfltk :-lfltk -lfltk_images :g' Makedefs || die
- fi
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- # Minor cleanups
- mv "${D}/usr/share/doc/htmldoc" "${D}/usr/share/doc/${PF}"
- dodir /usr/share/doc/${PF}/html
- mv "${D}"/usr/share/doc/${PF}/*.html "${D}/usr/share/doc/${PF}/html"
-}