summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-03-23 05:17:24 +0000
committerTim Harder <radhermit@gentoo.org>2012-03-23 05:17:24 +0000
commit6d72e0652894697487e9b8fa302d057a1f026e91 (patch)
tree1de86ff01232bde9c4d1f47082ee85863d7c86e2 /www-apps
parentVersion bump. (diff)
downloadgentoo-2-6d72e0652894697487e9b8fa302d057a1f026e91.tar.gz
gentoo-2-6d72e0652894697487e9b8fa302d057a1f026e91.tar.bz2
gentoo-2-6d72e0652894697487e9b8fa302d057a1f026e91.zip
Remove old.
(Portage version: 2.2.0_alpha92/cvs/Linux x86_64)
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/mediawiki/ChangeLog6
-rw-r--r--www-apps/mediawiki/files/postinstall-1.13-en.txt88
-rw-r--r--www-apps/mediawiki/mediawiki-1.16.5.ebuild127
-rw-r--r--www-apps/mediawiki/metadata.xml3
4 files changed, 5 insertions, 219 deletions
diff --git a/www-apps/mediawiki/ChangeLog b/www-apps/mediawiki/ChangeLog
index c11324a57a2b..0a9647f58642 100644
--- a/www-apps/mediawiki/ChangeLog
+++ b/www-apps/mediawiki/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-apps/mediawiki
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/mediawiki/ChangeLog,v 1.180 2012/03/23 05:15:58 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/mediawiki/ChangeLog,v 1.181 2012/03/23 05:17:24 radhermit Exp $
+
+ 23 Mar 2012; Tim Harder <radhermit@gentoo.org>
+ -files/postinstall-1.13-en.txt, -mediawiki-1.16.5.ebuild, metadata.xml:
+ Remove old.
*mediawiki-1.19.0_beta2 (23 Mar 2012)
diff --git a/www-apps/mediawiki/files/postinstall-1.13-en.txt b/www-apps/mediawiki/files/postinstall-1.13-en.txt
deleted file mode 100644
index 4fbc24755714..000000000000
--- a/www-apps/mediawiki/files/postinstall-1.13-en.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-To complete installation you need to proceed the following steps:
-=================================================================
-
-1. Temporarily make the MediaWiki config/ directory writable to the user the
-web server is running as. The quickest way is to make the directory world
-writable. For example:
-
-$ cd ${MY_INSTALLDIR}
-$ chmod a+w config
-
-
-2. Configure database.
-a.) If you know the root password on your database, the MediaWiki installation
-script can create a new database for you.
-
-b.) If you don't know the root password, MediaWiki still needs database to
-work with. So, please, read the following link and find solution which suits
-your needs best:
-
-http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki#Create_a_database
-
-
-3. Now continue the installation through web browser by accessing the
-following page:
-
-lynx http://${VHOST_HOSTNAME}${VHOST_APPDIR}/config/
-
-
-4. After the setup script has finished running successfully, a file called
-LocalSettings.php is created in the "config" directory. Move this file to the
-root wiki directory (${MY_INSTALLDIR}):
-
-$ mv config/LocalSettings.php .
-
-Set stringent permissions on the LocalSettings.php file:
-
-$ chown <webserver-user>:root LocalSettings.php
-$ chmod 600 LocalSettings.php
-
-And delete the "config" directory:
-
-$ rm -rf config
-
-
-5. Once you have done the above, your wiki should be ready to use!
-
-http://${VHOST_HOSTNAME}${VHOST_APPDIR}/
-
-
-Enabling Optional Features and other configuration
-==================================================
-
-Allow images and other files to be uploaded through the wiki
-------------------------------------------------------------
-
-If you wish to enable images and other files to be uploaded through wiki then
-edit the LocalSettings.php file and set \$wgEnableUploads to 'true':
-
-\$wgEnableUploads = true;
-
-Now if MediaWiki was built with the imagemagick USE-flag the directory
-permissions are correct, otherwise install ImageMagick and adjust permissions
-on the images directory to allow the web server to write. For example:
-
-$ chown <webserver-user>:<webserver-group> ${MY_INSTALLDIR}/images
-
-IMPORTANT: Uploads need to be set up properly in order to be secure! For more
-details take a look at the following page:
-
-http://www.mediawiki.org/wiki/Manual:$wgEnableUploads
-
-
-Math Support
-------------
-
-If you wish to enable the math support then you need to build MediaWiki with
-'math' USE-flag enabled or required support executable will no be present.
-After you've installed MediaWiki with math USE-flag enabled edit
-LocalSettings.php file to set the \$wgUseTeX to 'true':
-
-\$wgUseTeX = true;
-
-
-Other
------
-
-For other tweaks, continue with the following:
-http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki#See_also
diff --git a/www-apps/mediawiki/mediawiki-1.16.5.ebuild b/www-apps/mediawiki/mediawiki-1.16.5.ebuild
deleted file mode 100644
index 307da4975a03..000000000000
--- a/www-apps/mediawiki/mediawiki-1.16.5.ebuild
+++ /dev/null
@@ -1,127 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/mediawiki/mediawiki-1.16.5.ebuild,v 1.6 2012/01/28 18:38:05 armin76 Exp $
-
-EAPI="3"
-inherit webapp depend.php versionator eutils
-
-MY_BRANCH=$(get_version_component_range 1-2)
-
-DESCRIPTION="The MediaWiki wiki web application (as used on wikipedia.org)"
-HOMEPAGE="http://www.mediawiki.org"
-SRC_URI="http://download.wikimedia.org/mediawiki/${MY_BRANCH}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ppc x86"
-IUSE="imagemagick math mysql postgres +ocamlopt sqlite"
-
-DEPEND="math? ( >=dev-lang/ocaml-3.0.6[ocamlopt?] )"
-RDEPEND="${DEPEND}
- math? (
- app-text/dvipng
- virtual/tex-base
- app-text/ghostscript-gpl
- || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )
- )
- imagemagick? ( || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) )
- !imagemagick? ( || ( dev-lang/php[gd] dev-lang/php[gd-external] ) )
- || ( >=dev-lang/php-5.3[mysql?,postgres?,session,xml]
- <dev-lang/php-5.3[mysql?,pcre,postgres?,session,spl,xml] )
- sqlite? ( dev-db/sqlite:3[fts3]
- || ( >=dev-lang/php-5.3[sqlite3,pdo] <dev-lang/php-5.3[sqlite,pdo] ) )"
-
-RESTRICT="test"
-
-need_httpd_cgi
-need_php_httpd
-
-src_compile() {
- if use math; then
- einfo "Compiling math support"
- cd math || die
- if ! use ocamlopt; then
- sed -e "s/ocamlopt/ocamlc/" \
- -e "s/cmxa/cma/" \
- -e "s/cmx/cmo/g" -i Makefile || die
- fi
- emake || die
- else
- einfo "Math support not enabled. Skipping."
- fi
-
- # TODO: 1. think about includes/zhtable/ support
- # 2. generate docs (?): echo '0' | php mwdocgen.php
-}
-
-src_install() {
- webapp_src_preinst
-
- # First we install math, docs and then copy everything left into htdocs dir
- # to avoid bugs like #236411.
-
- # If we've enabled math USE-flag, install math support.
- # We ensure the directories are prepared for writing. The post-
- # install instructions guide the user to enable the feature.
- if use math; then
- einfo "Installing math support"
- exeinto "${MY_HTDOCSDIR}"/math
- doexe math/texvc || die "Failed to create math support executable."
-
- docinto math
- dodoc math/{README,TODO}
- docinto ""
-
- # Working directories. Server writeable.
- dodir "${MY_HTDOCSDIR}"/images/math
- webapp_serverowned "${MY_HTDOCSDIR}"/images/math
- dodir "${MY_HTDOCSDIR}"/images/tmp
- webapp_serverowned "${MY_HTDOCSDIR}"/images/tmp
- fi
-
- local DOCS="FAQ HISTORY INSTALL README RELEASE-NOTES UPGRADE"
- dodoc ${DOCS} docs/*.txt
- docinto php-memcached
- dodoc docs/php-memcached/*
-
- # Clean everything not used at the site...
- rm -rf ${DOCS} COPYING tests math t docs
- find . -name Makefile -delete
- # and install
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- # If imagemagick is enabled then setup for image upload.
- # We ensure the directory is prepared for writing.
- if use imagemagick; then
- webapp_serverowned "${MY_HTDOCSDIR}"/images
- fi
-
- webapp_postinst_txt en "${FILESDIR}/postinstall-1.13-en.txt"
- webapp_postupgrade_txt en "${FILESDIR}/postupgrade-1.16-en.txt"
- webapp_src_install
-}
-
-pkg_preinst() {
- prev_instal="false"
- if has_version ${CATEGORY}/${PN}; then
- prev_instal="true"
- fi
-}
-
-pkg_postinst() {
- webapp_pkg_postinst
- if ${prev_instal}; then
- einfo
- elog "=== Consult the release notes ==="
- elog "Before doing anything, stop and consult the release notes"
- elog "/usr/share/doc/${PF}/RELEASE-NOTES.bz2"
- elog
- elog "These detail bug fixes, new features and functionality, and any"
- elog "particular points that may need to be noted during the upgrade procedure."
- einfo
- ewarn "Back up existing files and the database before upgrade."
- ewarn "http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki"
- ewarn "provides an overview of the backup process."
- einfo
- fi
-}
diff --git a/www-apps/mediawiki/metadata.xml b/www-apps/mediawiki/metadata.xml
index 7098f39d4e08..756d7b20a6a2 100644
--- a/www-apps/mediawiki/metadata.xml
+++ b/www-apps/mediawiki/metadata.xml
@@ -5,7 +5,4 @@
<maintainer>
<email>trapni@gentoo.org</email>
</maintainer>
- <use>
- <flag name='math'>Ads math rendering support</flag>
- </use>
</pkgmetadata>