blob: 553ebc25cadfe7b93709fd7485998afcaccb4a07 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/mediawiki/mediawiki-1.4.3.ebuild,v 1.1 2005/05/04 22:13:51 trapni Exp $
inherit webapp
DESCRIPTION="The MediaWiki wiki web application (as used on wikipedia.org)"
HOMEPAGE="http://www.mediawiki.org"
SRC_URI="mirror://sourceforge/wikipedia/${P/.0_/}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="imagemagick math"
S="${WORKDIR}/${P/.0_/}"
DEPEND="math? ( >=dev-lang/ocaml-3.0.6 )"
RDEPEND="virtual/php
>=dev-db/mysql-4
math? ( virtual/tetex
app-text/ghostscript
media-gfx/imagemagick )
imagemagick? ( media-gfx/imagemagick )"
src_compile() {
if use math; then
einfo "Compiling math support"
cd math || die
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="
config
extensions
images
includes
includes/normal
includes/templates
includes/zhtable
irc
languages
maintenance
maintenance/archives
maintenance/postgresql
skins
skins/amethyst
skins/chick
skins/common
skins/common/images
skins/disabled
skins/monobook
skins/myskin
"
insinto ${MY_HTDOCSDIR}
doins *.php *.inc *.phtml
for DIR in ${DIRS}; do
dodir ${MY_HTDOCSDIR}/${DIR}
insinto ${MY_HTDOCSDIR}/${DIR}
doins ${DIR}/*
test -f ${DIR}/.htaccess && doins ${DIR}/.htaccess
done
# installing some docs
local DOCS="AdminSettings.sample COPYING FAQ HISTORY INSTALL README RELEASE-NOTES UPGRADE"
for DOC in ${DOCS}; do
dodoc "${DOC}"
rm -f "${DOC}"
done
dodoc docs/*.doc
rm -f docs/*.doc
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"
dodir ${MY_HTDOCSDIR}/math
exeinto ${MY_HTDOCSDIR}/math
doexe math/texvc
# Docs
docinto math
dodoc math/README math/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.4-en.txt
webapp_src_install
}
|