blob: 921f572698c6f24aff1b903f6bbd124e2b5be436 (
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-2004 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.3 2004/09/03 01:18:28 dholm 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 -a *.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
}
|