summaryrefslogtreecommitdiff
path: root/www-apache
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-07-24 12:46:26 +0200
committerMichał Górny <mgorny@gentoo.org>2016-07-24 12:52:44 +0200
commit9d9536eea5099f2f8b48876d0955251665003c7f (patch)
tree1acf0af663ca956ff9c387555c8261899c0ab082 /www-apache
parentabca5f5140d84bbd49cac384699cec91bb66f3d1 (diff)
downloadgentoo-9d9536eea5099f2f8b48876d0955251665003c7f.tar.gz
gentoo-9d9536eea5099f2f8b48876d0955251665003c7f.tar.xz
www-apache/mod-auth-mysql: Remove last-rited pkg, #382055
Diffstat (limited to 'www-apache')
-rw-r--r--www-apache/mod-auth-mysql/Manifest2
-rw-r--r--www-apache/mod-auth-mysql/files/12_mod_auth_mysql.conf132
-rw-r--r--www-apache/mod-auth-mysql/metadata.xml8
-rw-r--r--www-apache/mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild60
4 files changed, 0 insertions, 202 deletions
diff --git a/www-apache/mod-auth-mysql/Manifest b/www-apache/mod-auth-mysql/Manifest
deleted file mode 100644
index e056fbd1723..00000000000
--- a/www-apache/mod-auth-mysql/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST mod-auth-mysql_4.3.9-13.diff.gz 20317 SHA256 3c99e3e62dd147ecdc1fe01732bcfe46aac29838e6aadefdb896d6433e3bbc55 SHA512 d738e9996dfa6a8bc89c19fb472bb43521ee915599a0cccd0b3de5546b10951f7ad4ce7cf1a98a6fc078ab9ea66b37c6b9761ad20bd77a09fb97bcaca5d1f41c WHIRLPOOL cf1a5934da0ffb254337bdaec62d572291688a0cfce9e3a9da9ad5cb22c35c7c0f2b660382d54c2e7becb51c70c1ffe4d7cc44f9d5ad9f85a1d13c5e34c879a5
-DIST mod-auth-mysql_4.3.9.orig.tar.gz 48479 SHA256 ed0d42547808fe9a213cf62e93ffef65e518da774bb497138d126f2de4a54d2e SHA512 292c167706f31542c74f24e481a227a36dfdfea57fc51f471188e2fd5188dc785789bd060f9c9d90d94a67492dc7ec64331a1af83fade4f70549cb9ddfb32f16 WHIRLPOOL 51ff68311b82a46bf541d056770911e3b5ad310dac44ddf7f33a8b3a16d399b01a62bdafc6341af63d5a13e693529a8bcb1642c9b42b50205734010a466e60ac
diff --git a/www-apache/mod-auth-mysql/files/12_mod_auth_mysql.conf b/www-apache/mod-auth-mysql/files/12_mod_auth_mysql.conf
deleted file mode 100644
index e2d52c14efe..00000000000
--- a/www-apache/mod-auth-mysql/files/12_mod_auth_mysql.conf
+++ /dev/null
@@ -1,132 +0,0 @@
-<IfDefine AUTH_MYSQL>
-LoadModule auth_mysql_module modules/apache2_mod_auth_mysql.so
-
-# mod_auth_mysql can be used to limit access to documents by checking
-# data in a MySQL database.
-
-# This will enable user-based MySQL authentication of everything
-# within /home/httpd. You'll need to do the following as the MySQL
-# root user beforehand:
-#
-# CREATE DATABASE auth;
-# USE auth;
-# CREATE TABLE users (
-# user_name CHAR(30) NOT NULL,
-# user_passwd CHAR(20) NOT NULL,
-# PRIMARY KEY (user_name)
-# );
-# GRANT SELECT
-# ON auth.users
-# TO authuser@localhost
-# IDENTIFIED BY 'PaSsW0Rd';
-#
-# INSERT INTO users VALUES ('testuser', ENCRYPT('testpass'));
-#
-#<Directory /home/httpd>
-# # If you want tot make mod_auth_mysql work with apache-2.2, please uncomment
-# # the following line:
-# #AuthBasicAuthoritative Off
-# AuthName "MySQL authenticated zone"
-# AuthType Basic
-#
-# AuthMySQLUser authuser
-# AuthMySQLPassword PaSsW0Rd
-# AuthMySQLDB auth
-# AuthMySQLUserTable users
-# AuthMySQLNameField user_name
-# AuthMySQLPasswordField user_passwd
-#
-# require valid-user
-#</Directory>
-
-# This will enable group-based MySQL authentication of everything
-# within /home/httpd. You'll need to do the following as the MySQL
-# root user beforehand:
-#
-# CREATE DATABASE auth;
-# USE auth;
-# CREATE TABLE users (
-# user_name CHAR(30) NOT NULL,
-# user_passwd CHAR(20) NOT NULL,
-# user_group CHAR(20) NOT NULL,
-# PRIMARY KEY (user_name)
-# );
-# GRANT SELECT
-# ON auth.users
-# TO authuser@localhost
-# IDENTIFIED BY 'PaSsW0Rd';
-#
-# INSERT INTO users VALUES ('testuser', ENCRYPT('testpass'), 'user');
-# INSERT INTO users VALUES ('testadmin', ENCRYPT('testpass'), 'admin');
-#
-#<Directory /home/httpd>
-# # If you want tot make mod_auth_mysql work with apache-2.2, please uncomment
-# # the following line:
-# #AuthBasicAuthoritative Off
-# AuthName "MySQL group authenticated zone"
-# AuthType Basic
-#
-# AuthMySQLUser authuser
-# AuthMySQLPassword PaSsW0Rd
-# AuthMySQLDB auth
-# AuthMySQLUserTable users
-# AuthMySQLNameField user_name
-# AuthMySQLPasswordField user_passwd
-# AuthMySQLGroupField user_group
-#
-# require group admin
-#</Directory>
-
-# Like the above this enables group-based MySQL authentication of
-# everything within /home/httpd, but this configuration allows users to
-# belong to more than one group. You'll need to do the following as
-# the MySQL root user beforehand:
-#
-# CREATE DATABASE auth;
-# USE auth;
-# CREATE TABLE users (
-# user_name CHAR(30) NOT NULL,
-# user_passwd CHAR(20) NOT NULL,
-# PRIMARY KEY (user_name)
-# );
-# CREATE TABLE groups (
-# user_name CHAR(30) NOT NULL,
-# user_group CHAR(20) NOT NULL,
-# PRIMARY KEY (user_name, user_group)
-# );
-# GRANT SELECT
-# ON auth.users
-# TO authuser@localhost
-# IDENTIFIED BY 'PaSsW0Rd';
-# GRANT SELECT
-# ON auth.groups
-# TO authuser@localhost
-# IDENTIFIED BY 'PaSsW0Rd';
-#
-# INSERT INTO users VALUES ('testuser', ENCRYPT('testpass'));
-# INSERT INTO groups VALUES ('testuser', 'user');
-# INSERT INTO users VALUES ('testadmin', ENCRYPT('testpass'));
-# INSERT INTO groups VALUES ('testadmin', 'admin');
-# INSERT INTO groups VALUES ('testadmin', 'user');
-#
-#<Directory /home/httpd>
-# # If you want tot make mod_auth_mysql work with apache-2.2, please uncomment
-# # the following line:
-# #AuthBasicAuthoritative Off
-# AuthName "MySQL group authenticated zone"
-# AuthType Basic
-#
-# AuthMySQLUser authuser
-# AuthMySQLPassword PaSsW0Rd
-# AuthMySQLDB auth
-# AuthMySQLUserTable users
-# AuthMySQLNameField user_name
-# AuthMySQLPasswordField user_passwd
-# AuthMySQLGroupTable groups
-# AuthMySQLGroupField user_group
-#
-# require group user
-#</Directory>
-</IfDefine>
-
-# vim: ts=4 filetype=apache
diff --git a/www-apache/mod-auth-mysql/metadata.xml b/www-apache/mod-auth-mysql/metadata.xml
deleted file mode 100644
index 357d7d00f10..00000000000
--- a/www-apache/mod-auth-mysql/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>mysql-bugs@gentoo.org</email>
- <name>MySQL</name>
- </maintainer>
-</pkgmetadata>
diff --git a/www-apache/mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild b/www-apache/mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild
deleted file mode 100644
index 48d22083d85..00000000000
--- a/www-apache/mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit apache-module eutils
-
-DESCRIPTION="Apache 2 module enabling HTTP authentication against MySQL databases. "
-HOMEPAGE="http://packages.debian.org/source/mod-auth-mysql"
-DEBIAN_PV="13"
-MY_P="${PN}_${PV/-/_}"
-DEBIAN_URI="mirror://debian/pool/main/${PN:0:1}/${PN}"
-DEBIAN_PATCH="${MY_P}-${DEBIAN_PV}.diff.gz"
-DEBIAN_SRC="${MY_P}.orig.tar.gz"
-SRC_URI="${DEBIAN_URI}/${DEBIAN_SRC} ${DEBIAN_URI}/${DEBIAN_PATCH}"
-
-LICENSE="Apache-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="virtual/mysql"
-RDEPEND="${DEPEND}
- !www-apache/mod_auth_mysql"
-
-APACHE2_MOD_FILE="${S}/apache2_mod_auth_mysql.so"
-APACHE2_MOD_CONF="12_${PN//-/_}"
-APACHE2_MOD_DEFINE="AUTH_MYSQL"
-
-DOCFILES="USAGE DIRECTIVES"
-
-need_apache2_2
-
-src_unpack() {
- unpack "${DEBIAN_SRC}"
-}
-
-src_prepare() {
- EPATCH_OPTS="-p1" epatch "${DISTDIR}"/"${DEBIAN_PATCH}"
- for i in $(<"${S}"/debian/patches/00list) ; do
- epatch "${S}"/debian/patches/${i}*
- done
- epatch_user
-}
-
-src_configure() {
- econf \
- --enable-apache2 \
- --disable-apache13 \
- --with-apxs2=/usr/sbin/apxs2
-}
-
-src_compile() {
- default
-}
-
-src_install() {
- apache-module_src_install
-}