diff options
author | Steve Dibb <beandog@gentoo.org> | 2007-09-26 14:34:50 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2007-09-26 14:34:50 +0000 |
commit | 15b41488cff7a24eeaa2ae98521617948a6e3ff2 (patch) | |
tree | d07a49a774720400e030640592647cb034bf642a /www-apps | |
parent | alpha stable wrt #189732 (diff) | |
download | gentoo-2-15b41488cff7a24eeaa2ae98521617948a6e3ff2.tar.gz gentoo-2-15b41488cff7a24eeaa2ae98521617948a6e3ff2.tar.bz2 gentoo-2-15b41488cff7a24eeaa2ae98521617948a6e3ff2.zip |
drop myself as maintainer, remove old version
(Portage version: 2.1.3.9)
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/wordpress/files/digest-wordpress-2.0.11 | 3 | ||||
-rw-r--r-- | www-apps/wordpress/metadata.xml | 4 | ||||
-rw-r--r-- | www-apps/wordpress/wordpress-2.0.11.ebuild | 89 |
3 files changed, 0 insertions, 96 deletions
diff --git a/www-apps/wordpress/files/digest-wordpress-2.0.11 b/www-apps/wordpress/files/digest-wordpress-2.0.11 deleted file mode 100644 index f815767abe4f..000000000000 --- a/www-apps/wordpress/files/digest-wordpress-2.0.11 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 9f98be0f062a496f5648b81c5e25df40 wordpress-2.0.11.tar.gz 520667 -RMD160 c276b5572750acc6217afc1777a4ea99985e5932 wordpress-2.0.11.tar.gz 520667 -SHA256 e705d6658652d479b3b44a26c900b4243b2a86698b15d0681a1e1b8f2a8feaa1 wordpress-2.0.11.tar.gz 520667 diff --git a/www-apps/wordpress/metadata.xml b/www-apps/wordpress/metadata.xml index 9f71e584f8c7..95c06f0095bb 100644 --- a/www-apps/wordpress/metadata.xml +++ b/www-apps/wordpress/metadata.xml @@ -2,8 +2,4 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>web-apps</herd> -<maintainer> - <email>beandog@gentoo.org</email> - <name>Steve Dibb</name> -</maintainer> </pkgmetadata> diff --git a/www-apps/wordpress/wordpress-2.0.11.ebuild b/www-apps/wordpress/wordpress-2.0.11.ebuild deleted file mode 100644 index 736a34e6d5ac..000000000000 --- a/www-apps/wordpress/wordpress-2.0.11.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/wordpress/wordpress-2.0.11.ebuild,v 1.1 2007/08/11 22:17:01 beandog Exp $ - -inherit webapp eutils depend.php - -DESCRIPTION="Wordpress php and mysql based CMS system." -HOMEPAGE="http://wordpress.org/" -SRC_URI="http://www.wordpress.org/${P}.tar.gz" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" -IUSE="" - -S="${WORKDIR}/${PN}" - -need_php - -pkg_setup() { - webapp_pkg_setup - - require_php_with_any_use mysql mysqli - require_php_with_use pcre -} - -src_install() { - local docs="license.txt readme.html" - - webapp_src_preinst - - einfo "Installing main files" - cp wp-config-sample.php wp-config.php - cp -r * ${D}${MY_HTDOCSDIR} - einfo "Done" - - ewarn - ewarn Please make sure you have register_globals = off set in your /etc/apache2/php.ini file - ewarn If this is not an option for your web server and you NEED it set to on, then insert the following in your WordPress .htaccess file: - ewarn php_flag register_globals off - ewarn - - ewarn - ewarn You will need to create a table for your WordPress database. This - ewarn assumes you have some knowledge of MySQL, and already have it - ewarn installed and configured. If not, please refer to - ewarn the Gentoo MySQL guide at the following URL: - ewarn http://www.gentoo.org/doc/en/mysql-howto.xml - ewarn Log in to MySQL, and create a new database called - ewarn "wordpress". From this point, you will need to edit - ewarn your wp-config.php file in $DocumentRoot/wordpress/ - ewarn and point to your database. Once this is done, you can log in to - ewarn WordPress at http://localhost/wordpress - ewarn - - ewarn - ewarn If you are upgrading from a previous version BACK UP your - ewarn database. Once you are done with that, browse to - ewarn http://localhost/wordpress/wp-admin/upgrade.php and follow - ewarn the instructions on the screen. - ewarn - - # handle documentation files - # - # NOTE that doc files go into /usr/share/doc as normal; they do NOT - # get installed per vhost! - - dodoc ${docs} - for doc in ${docs} INSTALL; do - rm -f ${doc} - done - - # Identify the configuration files that this app uses - # User can want to make changes to these! - webapp_serverowned ${MY_HTDOCSDIR}/index.php - #webapp_serverowned ${MY_HTDOCSDIR}/wp-layout.css - webapp_serverowned ${MY_HTDOCSDIR}/wp-admin/menu.php - webapp_serverowned ${MY_HTDOCSDIR} - webapp_configfile ${MY_HTDOCSDIR}/wp-config.php - # Identify any script files that need #! headers adding to run under - # a CGI script (such as PHP/CGI) - # - # for wordpress, we *assume* that all .php files need to have CGI/BIN - # support added - - # post-install instructions - #webapp_postinst_txt en ${FILESDIR}/1.2/postinstall-en.txt - - # now strut stuff - webapp_src_install -} |