Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htmldoc/
Date: Sat, 02 Sep 2017 14:46:23
Message-Id: 1504363564.86926e54106f071a9288095e1a20d47b7be62e5e.kensington@gentoo
1 commit: 86926e54106f071a9288095e1a20d47b7be62e5e
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 2 14:41:47 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 2 14:46:04 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86926e54
7
8 app-text/htmldoc: remove 1.8.29
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 app-text/htmldoc/Manifest | 1 -
13 app-text/htmldoc/htmldoc-1.8.29.ebuild | 57 ----------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/app-text/htmldoc/Manifest b/app-text/htmldoc/Manifest
17 index 8df11ba658f..d8ed8a5b357 100644
18 --- a/app-text/htmldoc/Manifest
19 +++ b/app-text/htmldoc/Manifest
20 @@ -1,2 +1 @@
21 -DIST htmldoc-1.8.29-source.tar.bz2 4089227 SHA256 e8c96ad740d19169eab8305c8e2ee1c795c4afa59ba99d18786ad191a2853f31 SHA512 06c4367b84005624564dfb33d2cc632cbfc711268ffce9efe00c17760da17637949fc7415fd29fcd63edc26ba96ff18cf57d1e9d36e7205b92ac2095cf4acfc8 WHIRLPOOL 3efe016ce4e071d164e3ca44fe3c8cba9ba830eb0847215116fbccab45b7ae913bfe94c723d4c8ba952c48ce31c68e5c4a71bd7048030a03c8fb3dffe42ea6d3
22 DIST htmldoc-1.8.30-source.tar.gz 3901592 SHA256 7fb7a532f590f7ce1b7c8486d9fe30adaea3c7c32cb412ba7cf093d67cba5fc6 SHA512 713dc67622533dae896745ac8809e43a7f91696715aeb77df2628bd04c0d3e16c8402891499e8e0c10cab793b44114e600d5935b3c76a3cfa303c10897456804 WHIRLPOOL 873cc5785bc295197e8461214f02279b6225b9ea07345a86e855341abc5a827aeef0c715b4c77ed8a74028e2a5a61ae6b0412055c09cbe39a92be54764561d7f
23
24 diff --git a/app-text/htmldoc/htmldoc-1.8.29.ebuild b/app-text/htmldoc/htmldoc-1.8.29.ebuild
25 deleted file mode 100644
26 index 97ce52de2d9..00000000000
27 --- a/app-text/htmldoc/htmldoc-1.8.29.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -inherit eutils toolchain-funcs
35 -
36 -DESCRIPTION="Convert HTML pages into a PDF document"
37 -SRC_URI="http://www.msweet.org/files/project1/${P}-source.tar.bz2"
38 -HOMEPAGE="http://www.msweet.org/projects.php?Z1"
39 -
40 -IUSE="fltk"
41 -SLOT="0"
42 -LICENSE="GPL-2"
43 -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
44 -
45 -DEPEND=">=media-libs/libpng-1.4:0=
46 - virtual/jpeg:0
47 - fltk? ( x11-libs/fltk:1 )
48 -"
49 -RDEPEND="${DEPEND}"
50 -
51 -src_prepare() {
52 - # make sure not to use the libs htmldoc ships with
53 - mkdir foo ; mv jpeg foo/ ; mv png foo/ ; mv zlib foo/
54 -
55 - sed -i "s:^#define DOCUMENTATION \"\$prefix/share/doc/htmldoc\":#define DOCUMENTATION \"\$prefix/share/doc/${PF}/html\":" \
56 - configure || die
57 -
58 - eapply "${FILESDIR}/${PN}-destdir.patch" \
59 - "${FILESDIR}/${PN}-break.patch"
60 -
61 - default
62 -}
63 -
64 -src_configure() {
65 - local myconf="$(use_with fltk gui)"
66 -
67 - CC=$(tc-getCC) CXX=$(tc-getCXX) \
68 - econf ${myconf}
69 - # Add missing -lfltk_images to LIBS
70 - if use fltk; then
71 - sed -i 's:-lfltk :-lfltk -lfltk_images :g' Makedefs || die
72 - fi
73 -}
74 -
75 -src_compile() {
76 - emake
77 -}
78 -
79 -src_install() {
80 - emake DESTDIR="${D}" install
81 -
82 - # Minor cleanups
83 - mv "${D}/usr/share/doc/htmldoc" "${D}/usr/share/doc/${PF}"
84 - dodir /usr/share/doc/${PF}/html
85 - mv "${D}"/usr/share/doc/${PF}/*.html "${D}/usr/share/doc/${PF}/html"
86 -}