summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-12-31 00:44:45 +0000
committerMike Frysinger <vapier@gentoo.org>2010-12-31 00:44:45 +0000
commit232a95c64d5c3eae3b4b70c17fbb80172477c9a5 (patch)
treea3cbd808ec3ff16a5298e1619f8f8527f5a0563f /app-text/htp
parentVersion bumped. (diff)
downloadgentoo-2-232a95c64d5c3eae3b4b70c17fbb80172477c9a5.tar.gz
gentoo-2-232a95c64d5c3eae3b4b70c17fbb80172477c9a5.tar.bz2
gentoo-2-232a95c64d5c3eae3b4b70c17fbb80172477c9a5.zip
old
Diffstat (limited to 'app-text/htp')
-rw-r--r--app-text/htp/files/easteregg.patch19
-rw-r--r--app-text/htp/htp-1.15.ebuild44
2 files changed, 0 insertions, 63 deletions
diff --git a/app-text/htp/files/easteregg.patch b/app-text/htp/files/easteregg.patch
deleted file mode 100644
index 958a0343d63f..000000000000
--- a/app-text/htp/files/easteregg.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/misc-proc.c 2007-08-31 13:46:01.000000000 +0200
-+++ ../new/src/misc-proc.c 2008-08-02 08:46:46.000000000 +0200
-@@ -21,16 +21,6 @@
- UNREF_PARAM(htmlMarkup);
- UNREF_PARAM(newPlaintext);
-
-- /* authors ego-gratifying easter egg */
-- /* put a generator meta-tag at the end of the HTML header */
-- StreamPrintF(task->outfile,
-- "<meta name=\"Generator\" content=\"%s %s\"",
-- PROGRAM_NAME, VER_STRING);
-- if(IsOptionEnabled(OPT_I_XML)) {
-- StreamPrintF(task->outfile, " />\n");
-- } else {
-- StreamPrintF(task->outfile, ">\n");
-- }
- return MARKUP_OKAY;
- }
-
diff --git a/app-text/htp/htp-1.15.ebuild b/app-text/htp/htp-1.15.ebuild
deleted file mode 100644
index c37f77fdf651..000000000000
--- a/app-text/htp/htp-1.15.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/htp/htp-1.15.ebuild,v 1.5 2009/09/23 16:36:34 patrick Exp $
-
-DESCRIPTION="An HTML preprocessor"
-HOMEPAGE="http://htp.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="Clarified-Artistic"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-# HTP does not use autoconf, have to set options defined in Makefile.config
-
-src_unpack() {
- unpack ${A} || die
- # Patch to remove meta-generator tag with "ego-gratifying Easter egg":
- patch -l "${S}/src/misc-proc.c" << EOF || die
- @@ -24,10 +23,0 @@
- - /* authors ego-gratifying easter egg */
- - /* put a generator meta-tag at the end of the HTML header */
- - StreamPrintF(task->outfile,
- - "<meta name=\"Generator\" content=\"%s %s\"",
- - PROGRAM_NAME, VER_STRING);
- - if(IsOptionEnabled(OPT_I_XML)) {
- - StreamPrintF(task->outfile, " />\n");
- - } else {
- - StreamPrintF(task->outfile, ">\n");
- - }
-EOF
-}
-
-src_compile() {
- emake CCOPT="-c ${CFLAGS}" || die
-}
-
-src_install() {
- make DESTDIR="${D}" prefix="${D}/usr" pkgdocdir="${D}/usr/share/doc/${PF}" \
- install || die
-}