forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-db/phpmyadmin: Add 4.7.7 release. This release includes a securit…
…y fix (PMASA-2017-9). Package-Manager: Portage-2.3.19, Repoman-2.3.6
- Loading branch information
1 parent
86b0a8f
commit 449d4a8
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="5" | ||
|
||
inherit eutils webapp | ||
|
||
MY_PV=${PV/_/-} | ||
MY_PN="phpMyAdmin" | ||
MY_P="${MY_PN}-${MY_PV}-all-languages" | ||
|
||
DESCRIPTION="Web-based administration for MySQL database in PHP" | ||
HOMEPAGE="https://www.phpmyadmin.net/" | ||
SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.tar.xz" | ||
|
||
LICENSE="GPL-2" | ||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos" | ||
IUSE="setup" | ||
|
||
RDEPEND=" | ||
dev-lang/php[crypt,ctype,filter,json,session,unicode] | ||
|| ( | ||
dev-lang/php[mysqli] | ||
dev-lang/php[mysql] | ||
) | ||
virtual/httpd-php:* | ||
" | ||
|
||
need_httpd_cgi | ||
|
||
S="${WORKDIR}"/${MY_P} | ||
|
||
pkg_setup() { | ||
webapp_pkg_setup | ||
} | ||
|
||
src_install() { | ||
webapp_src_preinst | ||
|
||
dodoc README RELEASE-DATE-${MY_PV} ChangeLog || die | ||
rm -f LICENSE README* RELEASE-DATE-${MY_PV} | ||
|
||
if ! use setup; then | ||
rm -rf setup || die "Cannot remove setup utility" | ||
elog "The phpMyAdmin setup utility has been removed." | ||
elog "It is a regular target of various exploits. If you need it, set USE=setup." | ||
else | ||
elog "You should consider disabling the setup USE flag" | ||
elog "to exclude the setup utility if you don't use it." | ||
elog "It regularly is the target of various exploits." | ||
fi | ||
|
||
insinto "${MY_HTDOCSDIR#${EPREFIX}}" | ||
doins -r . | ||
|
||
webapp_configfile "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php | ||
webapp_serverowned "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php | ||
|
||
webapp_postinst_txt en "${FILESDIR}"/postinstall-en-3.1.txt | ||
webapp_src_install | ||
} |