diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2017-11-19 19:42:48 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2017-11-19 19:43:11 -0500 |
commit | fde17a7571f6ddd3ecdfc7f6e2650d8762fbc49a (patch) | |
tree | 5bef11ad2863c81a1bcf567ffc1b0fa41f81f1cd /www-apps/wordpress/wordpress-4.9.ebuild | |
parent | media-libs/libgltf: Drop old (diff) | |
download | gentoo-fde17a7571f6ddd3ecdfc7f6e2650d8762fbc49a.tar.gz gentoo-fde17a7571f6ddd3ecdfc7f6e2650d8762fbc49a.tar.bz2 gentoo-fde17a7571f6ddd3ecdfc7f6e2650d8762fbc49a.zip |
www-apps/wordpress: version bump to 4.9
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'www-apps/wordpress/wordpress-4.9.ebuild')
-rw-r--r-- | www-apps/wordpress/wordpress-4.9.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/www-apps/wordpress/wordpress-4.9.ebuild b/www-apps/wordpress/wordpress-4.9.ebuild new file mode 100644 index 000000000000..c7283f88735a --- /dev/null +++ b/www-apps/wordpress/wordpress-4.9.ebuild @@ -0,0 +1,55 @@ +# 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 +} |