summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-08-03 14:25:34 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-08-03 15:18:16 +0200
commite1ec4b00ab1bbc561067b3bb8fc49cc3d1f63a0d (patch)
treec510e0562e8b4b3b33bb9ec090646198bc515bd4 /www-misc/wsmake
parentsys-fs/lufis: Drop 0.3 (r0), EAPI6-- (diff)
downloadgentoo-e1ec4b00ab1bbc561067b3bb8fc49cc3d1f63a0d.tar.gz
gentoo-e1ec4b00ab1bbc561067b3bb8fc49cc3d1f63a0d.tar.bz2
gentoo-e1ec4b00ab1bbc561067b3bb8fc49cc3d1f63a0d.zip
www-misc/wsmake: Drop 0.6.4 (r0), EAPI6--
Closes: https://bugs.gentoo.org/799680 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'www-misc/wsmake')
-rw-r--r--www-misc/wsmake/files/wsmake-0.6.4-bv.diff13
-rw-r--r--www-misc/wsmake/wsmake-0.6.4.ebuild37
2 files changed, 0 insertions, 50 deletions
diff --git a/www-misc/wsmake/files/wsmake-0.6.4-bv.diff b/www-misc/wsmake/files/wsmake-0.6.4-bv.diff
deleted file mode 100644
index 15cdf05f5d25..000000000000
--- a/www-misc/wsmake/files/wsmake-0.6.4-bv.diff
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/libwsmake/wsUtil.cpp
-+++ b/libwsmake/wsUtil.cpp
-@@ -714,7 +714,8 @@
- if(__wsmake_quiet) return;
-
- vfprintf(out,output,*ap);
-- va_end((void*&)*ap);
-+ //BV: this does not compile: va_end((void*&)*ap);
-+ va_end((char*&)*ap);
- }
-
- #ifdef DEBUG
-
diff --git a/www-misc/wsmake/wsmake-0.6.4.ebuild b/www-misc/wsmake/wsmake-0.6.4.ebuild
deleted file mode 100644
index 42834c03580f..000000000000
--- a/www-misc/wsmake/wsmake-0.6.4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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"
-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_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
-}