summaryrefslogtreecommitdiff
path: root/app-text/htp
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /app-text/htp
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'app-text/htp')
-rw-r--r--app-text/htp/Manifest1
-rw-r--r--app-text/htp/files/htp-1.19-fix-perl-5.26.patch12
-rw-r--r--app-text/htp/files/htp-1.19-no-prestrip.patch11
-rw-r--r--app-text/htp/files/htp-1.19-parallel-make.patch27
-rw-r--r--app-text/htp/htp-1.19-r1.ebuild36
-rw-r--r--app-text/htp/metadata.xml11
6 files changed, 0 insertions, 98 deletions
diff --git a/app-text/htp/Manifest b/app-text/htp/Manifest
deleted file mode 100644
index 4542df73951f..000000000000
--- a/app-text/htp/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST htp-1.19.tar.gz 208683 BLAKE2B 86837290a2f14b8a0337d9eb6a0fa4ad553c5c51074d5df903ee19aa7ba441898199f0649b39b93c35fa3707e4084a284e02d8802c014bf5c0277e3f18d02c98 SHA512 32d82bb42ef877bd815fe45fa81599a1428ad6d3269cbe53a4e686bcfe6d1c12ac2af280462768d488b1983ca67cc521da4ed78cc82d904575ffeff08c7eec1d
diff --git a/app-text/htp/files/htp-1.19-fix-perl-5.26.patch b/app-text/htp/files/htp-1.19-fix-perl-5.26.patch
deleted file mode 100644
index b3adff7db2be..000000000000
--- a/app-text/htp/files/htp-1.19-fix-perl-5.26.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-https://bugs.gentoo.org/668250
---- a/homepage/ref/pphtp.pl
-+++ b/homepage/ref/pphtp.pl
-@@ -6,7 +6,7 @@
- # -n include line numbers
- # -s include EBNF like syntax
-
--require "hlhtp.pl";
-+require "./hlhtp.pl";
-
-
- while ($ARGV[0] =~ /^-(.*)/) {
diff --git a/app-text/htp/files/htp-1.19-no-prestrip.patch b/app-text/htp/files/htp-1.19-no-prestrip.patch
deleted file mode 100644
index c47b9e4d4241..000000000000
--- a/app-text/htp/files/htp-1.19-no-prestrip.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/Makefile.sub
-+++ b/src/Makefile.sub
-@@ -46,7 +46,7 @@ install: install-bin
-
- install-bin: $(HTP)
- mkdir -p $(bindir)
-- $(INSTALL) -s $(HTP) $(bindir)
-+ $(INSTALL) $(HTP) $(bindir)
-
- #
- # explicit dependency: final executable
diff --git a/app-text/htp/files/htp-1.19-parallel-make.patch b/app-text/htp/files/htp-1.19-parallel-make.patch
deleted file mode 100644
index 850b1d18e330..000000000000
--- a/app-text/htp/files/htp-1.19-parallel-make.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-https://bugs.gentoo.org/827173
-https://sources.debian.org/patches/htp/1.19-8/0004-Parallel-ftbfs.patch/
-
-Description: Fix occasional parallel FTBFS
- Various source files indirectly include $(d)/version.inc,
- don't regenerate it in the middle of the build.
-Author: Adrian Bunk <bunk@debian.org>
-
---- htp-1.19.orig/src/Makefile.sub
-+++ htp-1.19/src/Makefile.sub
-@@ -57,14 +57,12 @@ $(HTP) : $(OBJ$(d))
- #
- # implicit dependencies for source code
- #
--$(OBJ$(d)) : %.$(OBJEXT) : %.c
-+$(OBJ$(d)) : %.$(OBJEXT) : %.c $(d)/version.inc
- ifdef WIN32DMC
- cd $(dir $<); $(CC) $(CCOPT) $(DEFINES) $(notdir $<)
- else
- $(CC) $(CCOPT) $(DEFINES) -o $*.$(OBJEXT) $<
- endif
-
--$(d)/htp.$(OBJEXT) $(d)/ver.$(OBJEXT): $(d)/version.inc
--
- # restore parent dir
- d := $(p$(d))
-
diff --git a/app-text/htp/htp-1.19-r1.ebuild b/app-text/htp/htp-1.19-r1.ebuild
deleted file mode 100644
index d3c122748ce8..000000000000
--- a/app-text/htp/htp-1.19-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="An HTML preprocessor"
-HOMEPAGE="http://htp.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
-
-LICENSE="Clarified-Artistic"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.19-no-prestrip.patch
- "${FILESDIR}"/${PN}-1.19-parallel-make.patch
- "${FILESDIR}"/${PN}-1.19-fix-perl-5.26.patch
-)
-
-src_compile() {
- # TODO: Tests are always run by the Makefile right now
- emake \
- CCOPT="-c ${CFLAGS} ${CPPFLAGS} -DHAVE_SNPRINTF -DHAVE_VASPRINTF -DHAVE_ASPRINTF" \
- CC="$(tc-getCC)" \
- LINK='$(CC) $(LDFLAGS)'
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- prefix='$(DESTDIR)/usr' \
- pkgdocdir='$(DESTDIR)/usr/share/doc/${PF}/html' \
- install
-}
diff --git a/app-text/htp/metadata.xml b/app-text/htp/metadata.xml
deleted file mode 100644
index c52150a31f29..000000000000
--- a/app-text/htp/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>web-apps@gentoo.org</email>
- <name>Gentoo Webapps</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">htp</remote-id>
- </upstream>
-</pkgmetadata>