Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/huc/
Date: Sun, 05 Feb 2017 22:53:41
Message-Id: 1486335037.7047ee6b40c332571f820906a3bc4d126423a116.monsieurp@gentoo
1 commit: 7047ee6b40c332571f820906a3bc4d126423a116
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 5 21:34:45 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 5 22:50:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7047ee6b
7
8 dev-util/huc: EAPI 6 bump.
9
10 Package-Manager: portage-2.3.3
11
12 dev-util/huc/huc-0.1-r1.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/dev-util/huc/huc-0.1-r1.ebuild b/dev-util/huc/huc-0.1-r1.ebuild
16 new file mode 100644
17 index 00000000..a4d168a
18 --- /dev/null
19 +++ b/dev-util/huc/huc-0.1-r1.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="HTML umlaut conversion tool"
30 +SRC_URI="http://www.int21.de/huc/${P}.tar.bz2"
31 +HOMEPAGE="http://www.int21.de/huc"
32 +
33 +SLOT="0"
34 +LICENSE="GPL-2"
35 +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos"
36 +
37 +DOCS=( README )
38 +
39 +src_compile() {
40 + $(tc-getCXX) \
41 + ${LDFLAGS} ${CXXFLAGS} \
42 + -o ${PN} ${PN}.cpp || die "compile failed"
43 +}
44 +
45 +src_install () {
46 + dobin ${PN}
47 + einstalldocs
48 +}