summaryrefslogtreecommitdiff
blob: c692f1ae744459137c183b10cc1475bbf3729e42 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/knowledgetree/knowledgetree-2.0.7.ebuild,v 1.2 2005/08/09 13:20:13 swegener Exp $

inherit webapp

MY_PN=${PN/tree/Tree}
MY_P=${MY_PN}-${PV}
DESCRIPTION="KnowledgeTree is a document management system providing a content repository, workflow and routing of content, content publication and content metrics definition and analysis."
HOMEPAGE="http://www.ktdms.com/"
SRC_URI="mirror://sourceforge/kt-dms/${MY_P}.tgz"

LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""

DEPEND="
		virtual/php
		dev-db/mysql
		>=dev-php/PEAR-DB-1.6.4
		>=dev-php/PEAR-Log-1.8.3
		"
S=${WORKDIR}/${MY_PN}

src_unpack() {

	unpack ${A} && cd "${S}"

	## The ebuild depends on PEAR-DB and PEAR-Log.
	## No need for additional PEAR library files
	rm -rf thirdparty

	## not running any tests
	rm -rf tests

	## Example apache, php and mysql config files
	cd etc
	for FL in *
	  do
	  mv ${FL} example-${FL}
	done
}

src_install() {
	webapp_src_preinst

	local docs="docs/CREDITS.txt
				docs/ChangeLog.txt
				docs/INSTALL.txt
				docs/README.txt
				docs/TODO.txt
				docs/UPGRADE.txt
				docs/faq.txt
				docs/i18n.txt
				docs/SearchPermissions.txt
				sql/mysql/install/user.sql
				"

	dodoc ${docs} etc/*

	## Main application
	cp -r . ${D}${MY_HTDOCSDIR}

	## Docs installed, remove unnecessary files
	rm -rf ${D}${MY_HTDOCSDIR}/etc
	for doc in ${docs}
	do
	  rm ${D}${MY_HTDOCSDIR}/${doc}
	done

	for CFG in ${MY_HTDOCSDIR}/config/{browsers.inc,dmsDefaults.php,environment.php,siteMap.inc,tableMappings.inc}
	do
	  webapp_configfile ${CFG}
	done

	## Documents will be saved here
	webapp_serverowned ${MY_HTDOCSDIR}/log
	webapp_serverowned ${MY_HTDOCSDIR}/Documents
	webapp_serverowned ${MY_HTDOCSDIR}/Documents/Root\ Folder
	webapp_serverowned ${MY_HTDOCSDIR}/Documents/Root\ Folder/Default\ Unit

	webapp_postinst_txt en ${FILESDIR}/postinstall-en-2.0.7.txt

	## Fix for the root folder
	webapp_hook_script ${FILESDIR}/config-hook-2.0.0.sh

	webapp_src_install
}