Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htp/
Date: Wed, 10 Oct 2018 06:41:25
Message-Id: 1539153588.86a8a61e9c28927f87628df73c2a45e0db5420fd.monsieurp@gentoo
1 commit: 86a8a61e9c28927f87628df73c2a45e0db5420fd
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 5 09:27:39 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 10 06:39:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a8a61e
7
8 app-text/htp: version bump.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.10
12
13 app-text/htp/Manifest | 1 +
14 app-text/htp/htp-1.19.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/app-text/htp/Manifest b/app-text/htp/Manifest
18 index 6f72c077b63..32554a498f6 100644
19 --- a/app-text/htp/Manifest
20 +++ b/app-text/htp/Manifest
21 @@ -1 +1,2 @@
22 DIST htp-1.16.tar.gz 141133 BLAKE2B 58f0ab7df1400d561ec1994a98ce4fa3acaa3299b51d9382f9baaecbd95a623795d72204617c153fd4e165910fdabd0328e737cccb242be2075edd2573af55c1 SHA512 f33a9497fc3a1d0b95d8e3ee2747583d58626b565644e7c8cc054570458907aac9db42c6fa816b176b0e10db98ec7d1cedb521406035a8e7173e1abd991533a0
23 +DIST htp-1.19.tar.gz 208683 BLAKE2B 86837290a2f14b8a0337d9eb6a0fa4ad553c5c51074d5df903ee19aa7ba441898199f0649b39b93c35fa3707e4084a284e02d8802c014bf5c0277e3f18d02c98 SHA512 32d82bb42ef877bd815fe45fa81599a1428ad6d3269cbe53a4e686bcfe6d1c12ac2af280462768d488b1983ca67cc521da4ed78cc82d904575ffeff08c7eec1d
24
25 diff --git a/app-text/htp/htp-1.19.ebuild b/app-text/htp/htp-1.19.ebuild
26 new file mode 100644
27 index 00000000000..962eb9f3752
28 --- /dev/null
29 +++ b/app-text/htp/htp-1.19.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit eutils toolchain-funcs
37 +
38 +DESCRIPTION="An HTML preprocessor"
39 +HOMEPAGE="http://htp.sourceforge.net/"
40 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="Clarified-Artistic"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
45 +
46 +RESTRICT="test"
47 +
48 +QA_PRESTRIPPED="/usr/bin/htp"
49 +
50 +src_compile() {
51 + emake \
52 + CCOPT="-c ${CFLAGS} ${CPPFLAGS} -DHAVE_SNPRINTF -DHAVE_VASPRINTF -DHAVE_ASPRINTF" \
53 + CC="$(tc-getCC)" \
54 + LINK='$(CC) $(LDFLAGS)'
55 +}
56 +
57 +src_install() {
58 + emake \
59 + DESTDIR="${D}" \
60 + prefix='$(DESTDIR)/usr' \
61 + pkgdocdir='$(DESTDIR)/usr/share/doc/${PF}/html' \
62 + install
63 +}