diff options
author | Jochen Maes <sejo@gentoo.org> | 2005-07-03 06:56:53 +0000 |
---|---|---|
committer | Jochen Maes <sejo@gentoo.org> | 2005-07-03 06:56:53 +0000 |
commit | cf9d5d31ea4cb167db5d8a6e0439e792911435b9 (patch) | |
tree | 1c1f2495c62f511447a4de38e661b6ea527fcef5 /www-apps/dragonflycms/dragonflycms-9.0.5.0.ebuild | |
parent | gcc-4.0 version bump. (diff) | |
download | gentoo-2-cf9d5d31ea4cb167db5d8a6e0439e792911435b9.tar.gz gentoo-2-cf9d5d31ea4cb167db5d8a6e0439e792911435b9.tar.bz2 gentoo-2-cf9d5d31ea4cb167db5d8a6e0439e792911435b9.zip |
fixed bug in 9.0.4.0 and added 9.0.5.0
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'www-apps/dragonflycms/dragonflycms-9.0.5.0.ebuild')
-rw-r--r-- | www-apps/dragonflycms/dragonflycms-9.0.5.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/www-apps/dragonflycms/dragonflycms-9.0.5.0.ebuild b/www-apps/dragonflycms/dragonflycms-9.0.5.0.ebuild new file mode 100644 index 000000000000..1f481f5a6103 --- /dev/null +++ b/www-apps/dragonflycms/dragonflycms-9.0.5.0.ebuild @@ -0,0 +1,51 @@ +# 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.5.0.ebuild,v 1.1 2005/07/03 06:56:53 sejo Exp $ + +inherit webapp + +MY_P=Dragonfly${PV} +DESCRIPTION="CPG Dragonfly CMS is a feature-rich open source content management +system based off of PHP-Nuke 6.5" +HOMEPAGE="http://dragonflycms.org" +SRC_URI="mirror://gentoo/$MY_P.tar.bz2 +http://dev.gentoo.org/~sejo/files/Dragonfly9.0.5.0.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~ppc ~x86" +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 + +} |