phpMyAdmin: remove

Closes: #6844 [via git-merge-pr]
This commit is contained in:
Nero 2017-06-25 13:54:57 +00:00 committed by Michael Aldridge
parent bfe079b129
commit e14c1b710e
5 changed files with 0 additions and 65 deletions

View File

@ -1,2 +0,0 @@
phpMyAdmin has been installed to:
/usr/share/webapps/phpmyadmin

View File

@ -1,11 +0,0 @@
# phpMyAdmin default Apache configuration
Alias /phpmyadmin "/usr/share/webapps/phpmyadmin"
<Directory "/usr/share/webapps/phpmyadmin">
AllowOverride All
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>

View File

@ -1,27 +0,0 @@
# Alias for phpMyAdmin directory
alias.url += (
"/phpmyadmin" => "/usr/share/webapps/phpmyadmin",
)
# Disallow access to libraries
$HTTP["url"] =~ "^/phpmyadmin/libraries" {
url.access-deny = ( "" )
}
$HTTP["url"] =~ "^/phpmyadmin/setup/lib" {
url.access-deny = ( "" )
}
# Limit access to setup script
$HTTP["url"] =~ "^/phpmyadmin/setup" {
auth.backend = "htpasswd"
auth.backend.htpasswd.userfile = "/etc/phpmyadmin/htpasswd.setup"
auth.require = (
"/" => (
"method" => "basic",
"realm" => "phpMyAdmin Setup",
"require" => "valid-user"
)
)
}

View File

@ -1,23 +0,0 @@
# Template file for 'phpMyAdmin'
pkgname=phpMyAdmin
version=4.6.5.2
revision=1
noarch=yes
build_style=fetch
depends="php php-mysql"
short_desc="Web-based MySQL database administration tool"
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
license="GPL-2"
homepage="http://www.phpmyadmin.net"
distfiles="https://files.phpmyadmin.net/phpMyAdmin/${version}/phpMyAdmin-${version}-all-languages.tar.gz>${pkgname}-${version}.tar.gz"
checksum=81c3f6c3648ceec68d901e674e3bf182e061ddb48f4e5664992d3e09187557c3
do_install() {
tar -zxvf ${pkgname}-${version}.tar.gz
vmkdir usr/share/webapps
vcopy ${pkgname}-${version}-all-languages usr/share/webapps/phpmyadmin
vinstall ${FILESDIR}/apache.conf 644 /etc/phpmyadmin/
vinstall ${FILESDIR}/lighttpd.conf 644 /etc/phpmyadmin/
}

View File

@ -1,2 +0,0 @@
site="https://www.phpmyadmin.net/downloads/"
pattern="${pkgname}-\K[\d.]+(?=-all-languages.tar.gz)"