blob: e7c6819a13b6b2344f9c6cfc87553399a18feb6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/mediawiki/mediawiki-1.12.3.ebuild,v 1.2 2009/12/26 19:22:34 pva Exp $
EAPI="1"
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 ~sparc ~x86"
IUSE="imagemagick math mysql postgres restrict +ocamlopt"
DEPEND="math? ( >=dev-lang/ocaml-3.0.6 )"
RDEPEND="${DEPEND}
math? (
app-text/dvipng
virtual/tex-base
app-text/ghostscript-gpl
media-gfx/imagemagick
)
imagemagick? ( media-gfx/imagemagick )"
RESTRICT="test"
need_httpd_cgi
need_php_httpd
pkg_setup() {
webapp_pkg_setup
local flags="pcre session xml"
use mysql && flags="${flags} mysql"
use postgres && flags="${flags} postgres"
if ! PHPCHECKNODIE="yes" require_php_with_use ${flags} || \
! PHPCHECKNODIE="yes" require_php_with_any_use gd gd-external ; then
die "Re-install ${PHP_PKG} with ${flags} and either gd or gd-external"
fi
# see Bug 204812
if use ocamlopt && use math && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
eerror "In order to build ${PN} with native code support from ocaml"
eerror "You first need to have a native code ocaml compiler."
eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
die "Please install ocaml with ocamlopt useflag"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# XXX: besides, is/was this patch really that required? if so, why? (trapni)
# epatch ${FILESDIR}/jobindexlength-mysql.patch
if use restrict ; then
epatch "${FILESDIR}/access_restrict_1.12.0.patch"
fi
}
src_compile() {
if use math; then
einfo "Compiling math support"
cd math || die
if ! use ocamlopt; then
sed -i -e "s/ocamlopt/ocamlc/" Makefile
sed -i -e "s/cmxa/cma/" Makefile
sed -i -e "s/cmx/cmo/g" Makefile
fi
emake || die
else
einfo "No math support enabled. Skipping."
fi
# TODO: think about includes/zhtable/ support
}
src_install() {
webapp_src_preinst
# copy the app's main files excluding math support, docs, and tests
local DIRS=(
"bin"
"config"
"extensions"
"images"
"includes"
"includes/api"
"includes/cbt"
"includes/filerepo"
"includes/media"
"includes/normal"
"includes/templates"
"includes/zhtable"
"languages"
"languages/classes"
"languages/messages"
"locale"
"maintenance"
"maintenance/archives"
"maintenance/dtrace"
"maintenance/language"
"maintenance/ora"
"maintenance/postgres"
"maintenance/postgres/archives"
"maintenance/storage"
"serialized"
"skins"
"skins/chick"
"skins/common"
"skins/common/images"
"skins/common/images/icons"
"skins/disabled"
"skins/htmldump"
"skins/monobook"
"skins/myskin"
"skins/simple"
)
insinto ${MY_HTDOCSDIR}
doins *.php *.inc *.phtml
for DIR in ${DIRS[*]}; do
insinto ${MY_HTDOCSDIR}/${DIR}
doins ${DIR}/*
[[ -f ${DIR}/.htaccess ]] && doins ${DIR}/.htaccess
done
# installing some docs
local DOCS="AdminSettings.sample FAQ HISTORY INSTALL README RELEASE-NOTES UPGRADE"
dodoc ${DOCS} docs/*.txt
rm -f ${DOCS} COPYING docs/*.txt
docinto php-memcached
dodoc docs/php-memcached/*
# If imagemagick is enabled then setup for image upload.
# We ensure the directory is prepared for writing. The post-
# install instructions guide the user to enable the feature.
if use imagemagick; then
webapp_serverowned ${MY_HTDOCSDIR}/images
fi
# 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
# Docs
docinto math
dodoc math/{README,TODO}
# 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
webapp_postinst_txt en "${FILESDIR}/postinstall-1.11-en.txt"
webapp_src_install
}
|