blob: c962b45554fe754c3b72cb5f417eba957e12a313 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/phpwiki-1.2.4.ebuild,v 1.6 2005/08/23 19:38:19 rl03 Exp $
inherit webapp
DESCRIPTION="PhpWiki is a WikiWikiWeb clone in PHP"
HOMEPAGE="http://phpwiki.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ppc"
IUSE=""
RDEPEND="virtual/php
net-www/apache"
src_install() {
webapp_src_preinst
cp -pPR *.php admin images lib locale pgsrc templates \
"${D}/${MY_HTDOCSDIR}"
dodoc DBLIB.txt CREDITS ChangeLog LICENSE README INSTALL.*
UPGRADING.readme schemas/*
webapp_serverowned ${MY_HTDOCSDIR}/lib/dbalib.php
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|