Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_log_sql/
Date: Sun, 18 Apr 2021 17:55:22
Message-Id: 1618768505.0ea946729df78495c9bbe37c8e8cc96af39ba56c.asturm@gentoo
1 commit: 0ea946729df78495c9bbe37c8e8cc96af39ba56c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 11:16:45 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 17:55:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea94672
7
8 www-apache/mod_log_sql: Drop 1.101-r2
9
10 Closes: https://bugs.gentoo.org/666074
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 www-apache/mod_log_sql/mod_log_sql-1.101-r2.ebuild | 61 ----------------------
15 1 file changed, 61 deletions(-)
16
17 diff --git a/www-apache/mod_log_sql/mod_log_sql-1.101-r2.ebuild b/www-apache/mod_log_sql/mod_log_sql-1.101-r2.ebuild
18 deleted file mode 100644
19 index d64a1d825f6..00000000000
20 --- a/www-apache/mod_log_sql/mod_log_sql-1.101-r2.ebuild
21 +++ /dev/null
22 @@ -1,61 +0,0 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -inherit apache-module epatch
28 -
29 -DESCRIPTION="An Apache module for logging to an SQL (MySQL) database"
30 -HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_log_sql/"
31 -SRC_URI="http://www.outoforder.cc/downloads/${PN}/${P}.tar.bz2"
32 -
33 -LICENSE="Artistic"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ppc x86"
36 -IUSE="dbi ssl"
37 -
38 -DEPEND="virtual/mysql
39 - dbi? ( dev-db/libdbi )
40 - ssl? ( dev-libs/openssl:0 )"
41 -RDEPEND="${DEPEND}"
42 -
43 -APACHE2_MOD_CONF="1.101/42_${PN}"
44 -APACHE2_MOD_DEFINE="LOG_SQL"
45 -
46 -APACHE2_EXECFILES="
47 - .libs/${PN}_logio.so
48 - .libs/${PN}_mysql.so
49 - .libs/${PN}_ssl.so"
50 -
51 -DOCFILES="AUTHORS CHANGELOG docs/README docs/manual.html \
52 -contrib/create_tables.sql contrib/make_combined_log.pl contrib/mysql_import_combined_log.pl"
53 -
54 -need_apache2_4
55 -
56 -src_prepare() {
57 - epatch "${FILESDIR}"/${P}-apache-2.4.patch
58 -}
59 -
60 -src_configure() {
61 - local myconf="--with-apxs=${APXS}"
62 - use ssl && myconf="${myconf} --with-ssl-inc=/usr"
63 - use ssl || myconf="${myconf} --without-ssl-inc"
64 - use dbi && myconf="${myconf} --with-dbi=/usr"
65 - use dbi || myconf="${myconf} --without-dbi"
66 - econf ${myconf}
67 -}
68 -
69 -src_compile() {
70 - emake
71 -}
72 -
73 -src_install() {
74 - use dbi && APACHE2_EXECFILES="${APACHE2_EXECFILES} .libs/${PN}_dbi.so"
75 - apache-module_src_install
76 -}
77 -
78 -pkg_postinst() {
79 - use dbi && APACHE2_MOD_DEFINE="${APACHE2_MOD_DEFINE} DBI"
80 - apache-module_pkg_postinst
81 - einfo "Refer to /usr/share/doc/${PF}/ for scripts"
82 - einfo "on how to create logging tables."
83 -}