summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2017-03-07 16:40:19 -0500
committerAnthony G. Basile <blueness@gentoo.org>2017-03-07 16:40:46 -0500
commit8d9bb7b876cc62f29a414db4eef7d23c5b95b69b (patch)
tree52f47e2e60fb5ce6525453e2eb95f8b336787b4a /www-apps/wordpress/wordpress-4.7.2.ebuild
parentapp-emulation/docker-machine: fix SRC_URI for 0.10.0 (diff)
downloadgentoo-8d9bb7b876cc62f29a414db4eef7d23c5b95b69b.tar.gz
gentoo-8d9bb7b876cc62f29a414db4eef7d23c5b95b69b.tar.bz2
gentoo-8d9bb7b876cc62f29a414db4eef7d23c5b95b69b.zip
www-apps/wordpress: remove older version, bug #611956
Package-Manager: portage-2.3.3
Diffstat (limited to 'www-apps/wordpress/wordpress-4.7.2.ebuild')
-rw-r--r--www-apps/wordpress/wordpress-4.7.2.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/www-apps/wordpress/wordpress-4.7.2.ebuild b/www-apps/wordpress/wordpress-4.7.2.ebuild
deleted file mode 100644
index c7283f88735a..000000000000
--- a/www-apps/wordpress/wordpress-4.7.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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"
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="virtual/httpd-php
- || ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
-
-S=${WORKDIR}/${PN}
-
-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}"
-
- 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
-}