diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /www-misc/wsmake | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'www-misc/wsmake')
-rw-r--r-- | www-misc/wsmake/Manifest | 1 | ||||
-rw-r--r-- | www-misc/wsmake/files/wsmake-0.6.4-bv.diff | 13 | ||||
-rw-r--r-- | www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch | 33 | ||||
-rw-r--r-- | www-misc/wsmake/metadata.xml | 8 | ||||
-rw-r--r-- | www-misc/wsmake/wsmake-0.6.4.ebuild | 34 |
5 files changed, 89 insertions, 0 deletions
diff --git a/www-misc/wsmake/Manifest b/www-misc/wsmake/Manifest new file mode 100644 index 000000000000..18c4f0e6d8e6 --- /dev/null +++ b/www-misc/wsmake/Manifest @@ -0,0 +1 @@ +DIST wsmake-0.6.4.tar.bz2 351688 RMD160 cfb48e73191b63cfb57fe318de8111d4feb11666 SHA1 7bd163c0f76f1ad768458964cebdf495a3fa18ce SHA256 884ca4e635d454776888526cf94f6af6639f76b317aa10f9f6d651d9208188d6 diff --git a/www-misc/wsmake/files/wsmake-0.6.4-bv.diff b/www-misc/wsmake/files/wsmake-0.6.4-bv.diff new file mode 100644 index 000000000000..d10aa5769c2d --- /dev/null +++ b/www-misc/wsmake/files/wsmake-0.6.4-bv.diff @@ -0,0 +1,13 @@ +--- libwsmake/wsUtil.cpp.orig Sat Sep 1 22:09:13 2001 ++++ libwsmake/wsUtil.cpp Tue Sep 3 20:19:04 2002 +@@ -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/files/wsmake-0.6.4-gcc43.patch b/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch new file mode 100644 index 000000000000..0ecfe62003f5 --- /dev/null +++ b/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch @@ -0,0 +1,33 @@ +https://bugs.gentoo.org/show_bug.cgi?id=251745 +https://sourceforge.net/tracker/index.php?func=detail&aid=2520894&group_id=5982&atid=105982 + +--- libwsmake/wsSubTag.cpp ++++ libwsmake/wsSubTag.cpp.new +@@ -22,6 +22,7 @@ + ***********************************************************************/ + #include <cstdio> + #include <cstring> ++#include <cstdlib> + + #include <unistd.h> + #ifdef HAVE_SYS_WAIT_H +--- libwsmake/wsWebPage.cpp ++++ libwsmake/wsWebPage.cpp.new +@@ -23,6 +23,7 @@ + #include <cassert> + #include <cerrno> + #include <ctime> ++#include <cstdlib> + + #include "wsmake.h" + +--- libwsmake/wsUtil.cpp ++++ libwsmake/wsUtil.cpp.new +@@ -28,6 +28,7 @@ + #include <cassert> + #include <cerrno> + #include <cstring> ++#include <cstdlib> + + #ifdef HAVE_UTIME_H + #include <utime.h> diff --git a/www-misc/wsmake/metadata.xml b/www-misc/wsmake/metadata.xml new file mode 100644 index 000000000000..59e2b8f78cb5 --- /dev/null +++ b/www-misc/wsmake/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + <name>Default assignee for orphaned packages</name> + </maintainer> +</pkgmetadata> diff --git a/www-misc/wsmake/wsmake-0.6.4.ebuild b/www-misc/wsmake/wsmake-0.6.4.ebuild new file mode 100644 index 000000000000..4036e741f61c --- /dev/null +++ b/www-misc/wsmake/wsmake-0.6.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils + +DESCRIPTION="Website Pre-processor" +HOMEPAGE="http://www.wsmake.org/" +SRC_URI="http://ftp.wsmake.org/pub/wsmake6/stable/wsmake-0.6.4.tar.bz2" + +KEYWORDS="x86" +LICENSE="GPL-2 Artistic" +SLOT="0" +IUSE="" + +src_unpack () { + unpack ${A} && cd "${S}" + epatch "${FILESDIR}"/${P}-bv.diff + epatch "${FILESDIR}"/${P}-gcc43.patch # 251745 +} + +src_compile () { + econf || die "econf failed" + emake || die "emake failed" + cd doc + tar -cf examples.tar examples || die +} + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS COPYING ChangeLog* DEVELOPERS LICENSE NEWS README TODO + cd doc + dodoc manual.txt examples.tar +} |