Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/wsmake/
Date: Tue, 23 Apr 2019 09:23:19
Message-Id: 1556011387.f8bf34a250973038e1614c6bc0b0f4e5cf468ff8.soap@gentoo
1 commit: f8bf34a250973038e1614c6bc0b0f4e5cf468ff8
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Apr 22 09:04:31 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 23 09:23:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8bf34a2
7
8 www-misc/wsmake: EAPI=7, add amd64, fix calling g++ directly
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 www-misc/wsmake/wsmake-0.6.4-r1.ebuild | 44 ++++++++++++++++++++++++++++++++++
14 1 file changed, 44 insertions(+)
15
16 diff --git a/www-misc/wsmake/wsmake-0.6.4-r1.ebuild b/www-misc/wsmake/wsmake-0.6.4-r1.ebuild
17 new file mode 100644
18 index 00000000000..69070d30091
19 --- /dev/null
20 +++ b/www-misc/wsmake/wsmake-0.6.4-r1.ebuild
21 @@ -0,0 +1,44 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Website pre-processor features tag substitution and page ordering"
30 +HOMEPAGE="https://sourceforge.net/projects/wsmake/"
31 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
32 +
33 +LICENSE="GPL-2+ Artistic"
34 +SLOT="0"
35 +KEYWORDS="~x86 ~amd64"
36 +IUSE="examples"
37 +
38 +PATCHES=(
39 + "${FILESDIR}"/${P}-bv.diff
40 + "${FILESDIR}"/${P}-gcc43.patch # 251745
41 + "${FILESDIR}"/${P}-fix-const-va_list.patch
42 +)
43 +
44 +src_unpack() {
45 + default
46 +
47 + cd "${S}"/doc || die
48 + tar -cf examples.tar examples || die
49 +}
50 +
51 +src_configure() {
52 + tc-export CXX
53 + default
54 +}
55 +
56 +src_install() {
57 + default
58 + dodoc doc/manual.txt
59 +
60 + if use examples; then
61 + rm -r doc/examples/CVS || die
62 + dodoc -r doc/examples
63 + docompress -x /usr/share/doc/${PF}/examples
64 + fi
65 +}