diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-04-22 11:04:31 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-04-23 11:23:07 +0200 |
commit | f8bf34a250973038e1614c6bc0b0f4e5cf468ff8 (patch) | |
tree | 85c76d77e8686e24ab972a7cec554ccf8cc61b35 /www-misc | |
parent | www-misc/wsmake: fix HOMEPAGE, SRC_URI, LICENSE (diff) | |
download | gentoo-f8bf34a250973038e1614c6bc0b0f4e5cf468ff8.tar.gz gentoo-f8bf34a250973038e1614c6bc0b0f4e5cf468ff8.tar.bz2 gentoo-f8bf34a250973038e1614c6bc0b0f4e5cf468ff8.zip |
www-misc/wsmake: EAPI=7, add amd64, fix calling g++ directly
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'www-misc')
-rw-r--r-- | www-misc/wsmake/wsmake-0.6.4-r1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/www-misc/wsmake/wsmake-0.6.4-r1.ebuild b/www-misc/wsmake/wsmake-0.6.4-r1.ebuild new file mode 100644 index 000000000000..69070d300913 --- /dev/null +++ b/www-misc/wsmake/wsmake-0.6.4-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Website pre-processor features tag substitution and page ordering" +HOMEPAGE="https://sourceforge.net/projects/wsmake/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2+ Artistic" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="examples" + +PATCHES=( + "${FILESDIR}"/${P}-bv.diff + "${FILESDIR}"/${P}-gcc43.patch # 251745 + "${FILESDIR}"/${P}-fix-const-va_list.patch +) + +src_unpack() { + default + + cd "${S}"/doc || die + tar -cf examples.tar examples || die +} + +src_configure() { + tc-export CXX + default +} + +src_install() { + default + dodoc doc/manual.txt + + if use examples; then + rm -r doc/examples/CVS || die + dodoc -r doc/examples + docompress -x /usr/share/doc/${PF}/examples + fi +} |