Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/apache-tools/
Date: Tue, 13 Aug 2019 12:31:52
Message-Id: 1565699205.230f50b7febb88d8ed4821a5167e2afa0ddf747f.whissi@gentoo
1 commit: 230f50b7febb88d8ed4821a5167e2afa0ddf747f
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 13 12:26:45 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 13 12:26:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=230f50b7
7
8 app-admin/apache-tools: bump to v2.4.41
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 app-admin/apache-tools/Manifest | 1 +
14 app-admin/apache-tools/apache-tools-2.4.41.ebuild | 105 ++++++++++++++++++++++
15 2 files changed, 106 insertions(+)
16
17 diff --git a/app-admin/apache-tools/Manifest b/app-admin/apache-tools/Manifest
18 index f418462be35..06cb59c139f 100644
19 --- a/app-admin/apache-tools/Manifest
20 +++ b/app-admin/apache-tools/Manifest
21 @@ -1,2 +1,3 @@
22 DIST httpd-2.2.34.tar.bz2 5779739 BLAKE2B 8cdd41fb5d1880da4a1cfef252b4682f613b938594057ea4c9665d3881a50b298fb7339c1ceb3dafc215aa927048f99d500f2d29c125016d5766954be9b632b4 SHA512 e6dac5865a48533c025fe17523ee74d68c3a23f9512c9441b78a140e33cfb6835573eb049b0ad424eb5c5ca78a1915778c54e8a409da95fbdd3890cb99e08240
23 DIST httpd-2.4.39.tar.bz2 7030539 BLAKE2B 1e378833efb9bbdd6fdc277a779620a08752d064524489f9ad747cf85350fbb6ad65f57b30c81d57273cd6693d8a2c4e988f5a2c42bd5c9c538b305b9b7719e8 SHA512 9742202040b3dc6344b301540f54b2d3f8e36898410d24206a7f8dcecb1bea7d7230fabc7256752724558af249facf64bffe2cf678b8f7cccb64076737abfda7
24 +DIST httpd-2.4.41.tar.bz2 7072373 BLAKE2B 88a2390736209d5ef04bffcb867bc8d6019302885e6f3cc63d18123336d4d0657252105a3bfebf4e91b8daa02119d4a61f4c0a9702244858a3193ec6cf681c0f SHA512 350cc7dcd2c439e0590338fa6da3f44df44f9bb885c381e91f91b14c2f48597f6f0bbac0ea118a8a67eaa70ae7edbb769beace368643ed73f6daee44c307b335
25
26 diff --git a/app-admin/apache-tools/apache-tools-2.4.41.ebuild b/app-admin/apache-tools/apache-tools-2.4.41.ebuild
27 new file mode 100644
28 index 00000000000..1e8bdec7c80
29 --- /dev/null
30 +++ b/app-admin/apache-tools/apache-tools-2.4.41.ebuild
31 @@ -0,0 +1,105 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit flag-o-matic eutils multilib toolchain-funcs
37 +
38 +DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm"
39 +HOMEPAGE="https://httpd.apache.org/"
40 +SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
45 +IUSE="libressl ssl"
46 +RESTRICT="test"
47 +
48 +RDEPEND=">=dev-libs/apr-1.5.0:1=
49 + dev-libs/apr-util:1=
50 + dev-libs/expat
51 + dev-libs/libpcre
52 + kernel_linux? ( sys-apps/util-linux )
53 + ssl? (
54 + !libressl? ( dev-libs/openssl:0= )
55 + libressl? ( dev-libs/libressl:0= )
56 + )"
57 +
58 +DEPEND="${RDEPEND}
59 + sys-devel/libtool"
60 +
61 +S="${WORKDIR}/httpd-${PV}"
62 +
63 +PATCHES=(
64 + "${FILESDIR}/${PN}-2.4.7-Makefile.patch" #459446
65 +)
66 +
67 +src_prepare() {
68 + default
69 +
70 + # This package really should upgrade to using pcre's .pc file.
71 + cat <<-\EOF >"${T}"/pcre-config
72 + #!/bin/bash
73 + flags=()
74 + for flag; do
75 + if [[ ${flag} == "--version" ]]; then
76 + flags+=( --modversion )
77 + else
78 + flags+=( "${flag}" )
79 + fi
80 + done
81 + exec ${PKG_CONFIG} libpcre "${flags[@]}"
82 + EOF
83 + chmod a+x "${T}"/pcre-config || die
84 +}
85 +
86 +src_configure() {
87 + # Brain dead check.
88 + tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no"
89 +
90 + tc-export PKG_CONFIG
91 +
92 + local myeconfargs=(
93 + --libexecdir="${EPREFIX}"/usr/$(get_libdir)/apache2/modules
94 + --sbindir="${EPREFIX}"/usr/sbin
95 + --with-perl="${EPREFIX}"/usr/bin/perl
96 + --with-expat="${EPREFIX}"/usr
97 + --with-z="${EPREFIX}"/usr
98 + --with-apr="${SYSROOT}${EPREFIX}"/usr
99 + --with-apr-util="${SYSROOT}${EPREFIX}"/usr
100 + --with-pcre="${T}"/pcre-config
101 + $(use_enable ssl)
102 + $(usex ssl '--with-ssl="${EPREFIX}"/usr' '')
103 + )
104 + # econf overwrites the stuff from config.layout.
105 + ac_cv_path_PKGCONFIG=${PKG_CONFIG} \
106 + econf "${myeconfargs[@]}"
107 + sed -i \
108 + -e '/^LTFLAGS/s:--silent::' \
109 + build/rules.mk build/config_vars.mk || die
110 +}
111 +
112 +src_compile() {
113 + emake -C support
114 +}
115 +
116 +src_install() {
117 + emake -C support DESTDIR="${D}" install
118 + dodoc CHANGES
119 + doman docs/man/{dbmmanage,htdigest,htpasswd,htdbm,ab,logresolve}.1 \
120 + docs/man/{htcacheclean,rotatelogs}.8
121 +
122 + # Providing compatiblity symlinks for #177697 (which we'll stop to install
123 + # at some point).
124 + pushd "${ED%/}"/usr/sbin >/dev/null || die
125 + local i
126 + for i in *; do
127 + dosym ${i} /usr/sbin/${i}2
128 + done
129 + popd >/dev/null || die
130 +
131 + # Provide a symlink for ab-ssl
132 + if use ssl ; then
133 + dosym ab /usr/bin/ab-ssl
134 + dosym ab /usr/bin/ab2-ssl
135 + fi
136 +}