blob: 12e1973ec73a6b46d9faf2b5df69974d57e99677 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/dragonflycms/dragonflycms-9.0.3.0.ebuild,v 1.2 2005/05/16 14:37:09 sejo Exp $
inherit webapp
MY_P=Dragonfly${PV}
DESCRIPTION="DragonFly CMS is an Open Source CMS/Portal in php"
HOMEPAGE="http://dragonflycms.org"
SRC_URI="mirror://gentoo/$MY_P.tar.bz2
http://dev.gentoo.org/~sejo/files/Dragonfly9.0.3.0.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~ppc"
IUSE=""
DEPEND=">=dev-db/mysql-3.23.32 <dev-db/mysql-5.1
virtual/httpd-php"
RDEPEND=""
src_unpack() {
unpack ${A}
}
src_install() {
webapp_src_preinst
#Do the documentation
insinto /usr/share/doc/${PF}
doins -r ${WORKDIR}/documentation/*
#installing files where they need to be.
einfo "installing php main files"
cp -r ${WORKDIR}/public_html/* ${D}${MY_HTDOCSDIR}
einfo "Done"
#identiy the configuration file the app uses
webapp_configfile ${MY_HTDOCSDIR}/config.php
# add the postinstall instructions
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
# done, now strut the stuff
webapp_src_install
}
|