summaryrefslogtreecommitdiff
path: root/www-apache/mod_xsendfile
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 /www-apache/mod_xsendfile
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'www-apache/mod_xsendfile')
-rw-r--r--www-apache/mod_xsendfile/Manifest1
-rw-r--r--www-apache/mod_xsendfile/files/50_mod_xsendfile.conf20
-rw-r--r--www-apache/mod_xsendfile/metadata.xml5
-rw-r--r--www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r3.ebuild28
4 files changed, 0 insertions, 54 deletions
diff --git a/www-apache/mod_xsendfile/Manifest b/www-apache/mod_xsendfile/Manifest
deleted file mode 100644
index e6a3d863f20a..000000000000
--- a/www-apache/mod_xsendfile/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mod_xsendfile-1.0b1.tar.gz 14883 BLAKE2B fe250070ae8b7f2f00b8b0616ad53803b0c2d5cbec897f98a9af45e3b2a4e5c598b93ce3f0ffe65d6ec083a0201e1f1c07a8d6109fc77dd761d2aa7e4d3caf10 SHA512 96745a5c753af329cabc10b1551e199425abf28c058222e118e67c604a53cfebb4fd8e27558caa58269ca8b4ca805ac6c4a71654c8414331c095bd600a4b3914
diff --git a/www-apache/mod_xsendfile/files/50_mod_xsendfile.conf b/www-apache/mod_xsendfile/files/50_mod_xsendfile.conf
deleted file mode 100644
index eda65879a6ff..000000000000
--- a/www-apache/mod_xsendfile/files/50_mod_xsendfile.conf
+++ /dev/null
@@ -1,20 +0,0 @@
-<IfDefine XSENDFILE>
-LoadModule xsendfile_module modules/mod_xsendfile.so
-
-# Enables or disables header processing
-# XSendFile on|off
-XSendFile on
-# Ignore script provided Etag headers
-# XSendFileIgnoreEtag on|off
-#
-# Ignore script provided LastModified headers
-# XSendFileIgnoreLastModified on|off
-#
-# White-list more paths
-# XSendFilePath absolute path
-#
-# XSendFilePath /var/infiniband_mount/shared/LUN1/
-#
-</IfDefine>
-
-# vim: ts=4 filetype=apache
diff --git a/www-apache/mod_xsendfile/metadata.xml b/www-apache/mod_xsendfile/metadata.xml
deleted file mode 100644
index bef24d2c2337..000000000000
--- a/www-apache/mod_xsendfile/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r3.ebuild b/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r3.ebuild
deleted file mode 100644
index a72d8dd1a7c2..000000000000
--- a/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit apache-module
-
-MY_PV="1.0b1"
-DESCRIPTION="Apache module that processes X-SENDFILE headers registered by the output handler"
-HOMEPAGE="https://tn123.org/mod_xsendfile/"
-SRC_URI="https://tn123.org/mod_xsendfile/beta/${PN}-${MY_PV}.tar.gz"
-S="${WORKDIR}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~sparc x86"
-
-need_apache2
-
-src_install() {
- APACHE2_MOD_CONF="50_${PN}"
- APACHE2_MOD_DEFINE="XSENDFILE"
- APACHE_MODULESDIR="/usr/$(get_libdir)/apache2/modules"
-
- apache-module_src_install
-
- dodoc docs/Readme.html
-}