mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
28 lines
648 B
Bash
28 lines
648 B
Bash
# 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 ~amd64-linux"
|
|
|
|
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
|
|
}
|