diff options
author | Vance M. Allen <vma_gentoo@vmacs.us> | 2023-04-08 08:50:15 -0600 |
---|---|---|
committer | Vance M. Allen <vma_gentoo@vmacs.us> | 2023-04-08 08:50:15 -0600 |
commit | 561c15c28a8222dfeba106ee20eb4d1b66efa070 (patch) | |
tree | b3b4b68d9db9f0e6898cf173b8c02cb7910984db /www-apps/joomla/joomla-4.2.9.ebuild | |
parent | Removed webmin support, added updates to TeamSpeak Server and Joomla, cleaned... (diff) | |
download | vmacs-561c15c28a8222dfeba106ee20eb4d1b66efa070.tar.gz vmacs-561c15c28a8222dfeba106ee20eb4d1b66efa070.tar.bz2 vmacs-561c15c28a8222dfeba106ee20eb4d1b66efa070.zip |
Add support for Webmin 2.021 and Joomla 4.2.9
Removed phpMyAdmin from overlay; core Gentoo Portage tree now has current version
Signed-off-by: Vance M. Allen <vma_gentoo@vmacs.us>
Diffstat (limited to 'www-apps/joomla/joomla-4.2.9.ebuild')
-rw-r--r-- | www-apps/joomla/joomla-4.2.9.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/www-apps/joomla/joomla-4.2.9.ebuild b/www-apps/joomla/joomla-4.2.9.ebuild new file mode 100644 index 0000000..165502a --- /dev/null +++ b/www-apps/joomla/joomla-4.2.9.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=7 +inherit webapp + +#MY_PV=$(replace_version_separator '_' '-') +MY_PV=${PV//_/-} + +DESCRIPTION="A powerful Open Source Content Management System" +HOMEPAGE="http://www.joomla.org/" +M_PN="Joomla_${MY_PV}-Stable-Full_Package" +RESTRICT="mirror" +SRC_URI="https://github.com/${PN}/${PN}-cms/releases/download/${MY_PV}/${M_PN}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +S="${WORKDIR}" +need_httpd_cgi + +RDEPEND=">=dev-lang/php-8[zlib,xml] + virtual/httpd-php + || ( dev-lang/php[mysql] dev-lang/php[postgres] )" + +src_install () { + webapp_src_preinst + + touch configuration.php + insinto "${MY_HTDOCSDIR}" + doins -r . + + local files=" administrator/cache administrator/components + administrator/language administrator/language/en-GB + administrator/manifests/packages + administrator/modules administrator/templates cache components images installation + images/banners language language/en-GB media modules plugins + plugins/authentication plugins/content plugins/editors plugins/editors-xtd + plugins/search plugins/system plugins/user plugins tmp templates" + + for file in ${files}; do + webapp_serverowned -R "${MY_HTDOCSDIR}"/${file} + done + + webapp_configfile "${MY_HTDOCSDIR}"/configuration.php + webapp_serverowned "${MY_HTDOCSDIR}"/configuration.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_postinst_txt sv "${FILESDIR}"/postinstall-sv.txt + webapp_src_install +} |