summaryrefslogtreecommitdiff
path: root/www-apps/wordpress/wordpress-6.7.8.ebuild
diff options
context:
space:
mode:
authorCrucible <crucible@localhost>2026-09-23 03:05:01 -0500
committerCrucible <crucible@localhost>2026-09-23 03:05:01 -0500
commitf02b743c6d8ce39c700b870dd8581fc1453db734 (patch)
treeaa93e182f20ab8b89d6187e113c558e22019460a /www-apps/wordpress/wordpress-6.7.8.ebuild
parent89638002224beb1b5cc8a81e8f7abb9c0943aaed (diff)
downloadsrcux-develop.tar.gz
srcux-develop.tar.xz
srcux-develop.zip
Publish srcux candidate 0000000364-20260923-030244HEADdevelop
Diffstat (limited to 'www-apps/wordpress/wordpress-6.7.8.ebuild')
-rw-r--r--www-apps/wordpress/wordpress-6.7.8.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/www-apps/wordpress/wordpress-6.7.8.ebuild b/www-apps/wordpress/wordpress-6.7.8.ebuild
deleted file mode 100644
index 15b15f314414..000000000000
--- a/www-apps/wordpress/wordpress-6.7.8.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit webapp
-
-DESCRIPTION="Wordpress PHP and MySQL based content management system (CMS)"
-HOMEPAGE="https://wordpress.org/"
-SRC_URI="https://wordpress.org/${P/_rc/-RC}.tar.gz"
-S=${WORKDIR}/${PN}
-
-LICENSE="GPL-2+"
-if [[ ${PV} != *_rc* ]]; then
- KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
-fi
-
-RDEPEND="virtual/httpd-php
- || ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
-
-need_httpd_cgi
-
-IUSE="+akismet examples +themes vhosts"
-
-src_install() {
- webapp_src_preinst
-
- dodoc readme.html
- rm readme.html license.txt || die
-
- if use !akismet ; then
- rm -R wp-content/plugins/akismet/ || die
- fi
- if use !examples ; then
- rm wp-content/plugins/hello.php || die
- fi
- if use !themes ; then
- rm -R wp-content/themes/*/ || die
- fi
-
- [[ -f wp-config.php ]] || cp wp-config-sample.php wp-config.php
-
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- webapp_serverowned "${MY_HTDOCSDIR}"/index.php
- webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/menu.php
- webapp_serverowned "${MY_HTDOCSDIR}"
- # allows plugins update if allowed within WP
- webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/includes/file.php
-
- webapp_configfile "${MY_HTDOCSDIR}"/wp-config.php
-
- webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
- webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
-
- webapp_src_install
-}