Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/htmlcxx/
Date: Sun, 13 Jan 2019 22:25:25
Message-Id: 1547418232.cdefa7d2502c86215a7fea4c0c5f16b717302ceb.chewi@gentoo
1 commit: cdefa7d2502c86215a7fea4c0c5f16b717302ceb
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 13 22:23:52 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 13 22:23:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdefa7d2
7
8 dev-cpp/htmlcxx: Version bump to 0.87, EAPI 7
9
10 I have dropped the flex and yacc dependencies. I think yacc was
11 required before but now a pregenerated file is included and the rule
12 to remake it is missing. I'm not sure whether flex was ever really
13 required.
14
15 Package-Manager: Portage-2.3.55, Repoman-2.3.12
16 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
17
18 dev-cpp/htmlcxx/Manifest | 1 +
19 dev-cpp/htmlcxx/htmlcxx-0.87.ebuild | 29 +++++++++++++++++++++++++++++
20 2 files changed, 30 insertions(+)
21
22 diff --git a/dev-cpp/htmlcxx/Manifest b/dev-cpp/htmlcxx/Manifest
23 index 8dd6bee776b..d686b34f837 100644
24 --- a/dev-cpp/htmlcxx/Manifest
25 +++ b/dev-cpp/htmlcxx/Manifest
26 @@ -1 +1,2 @@
27 DIST htmlcxx-0.86.tar.gz 469416 BLAKE2B 6edd4b7755db6d8911bc4ee6b1b61792b08d6a381971162a77cd3a6c7cb6cdb06e5a4a77b0a815589edab26aec04490a6b6c9edd80199f01304a506c707688b6 SHA512 dcff9c9946e1c3429af2230997c965b89a28a8ee219d8d594800106ff578bb21154e4680c38a09fb5f96cd4051c89cbf16f2151d30be93d4e3d291ff421aafcb
28 +DIST htmlcxx-0.87.tar.gz 477083 BLAKE2B 94977e758b4f2643f39a464094e315c11b78bc957a3eb054e6a7608828345704a82c3ca36c5ac2855054e7570daebb80d8a63639f3a7197344d25f2d16830702 SHA512 391b94c7ea2d17a04d46ac80f8146e6c2b14b289379c40f3d432ed9c0f36222ced6384d725cdecfc352e28c30f11976249b6a3f7133bbee3161a7883d197fca7
29
30 diff --git a/dev-cpp/htmlcxx/htmlcxx-0.87.ebuild b/dev-cpp/htmlcxx/htmlcxx-0.87.ebuild
31 new file mode 100644
32 index 00000000000..fdcb01bc5cf
33 --- /dev/null
34 +++ b/dev-cpp/htmlcxx/htmlcxx-0.87.ebuild
35 @@ -0,0 +1,29 @@
36 +# Copyright 1999-2019 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +inherit multilib-minimal
42 +
43 +DESCRIPTION="A simple non-validating CSS 1 and HTML parser for C++"
44 +HOMEPAGE="http://htmlcxx.sourceforge.net/"
45 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
46 +LICENSE="LGPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="static-libs"
50 +
51 +ECONF_SOURCE="${S}"
52 +
53 +multilib_src_configure() {
54 + econf \
55 + --enable-shared \
56 + $(use_enable static-libs static)
57 +}
58 +
59 +multilib_src_install_all() {
60 + # libtool archives covered by pkg-config.
61 + find "${D}" -name "*.la" -delete || die
62 +
63 + einstalldocs
64 +}