diff options
author | Jochen Maes <sejo@gentoo.org> | 2005-05-16 14:31:22 +0000 |
---|---|---|
committer | Jochen Maes <sejo@gentoo.org> | 2005-05-16 14:31:22 +0000 |
commit | e1c35b610b9d27a85c7cfb2466ddb9da084731c8 (patch) | |
tree | eddcda168a17b64ac87b7394eb024e4a1102c9d5 /www-apps/dragonflycms/dragonflycms-9.0.3.0.ebuild | |
parent | Initial import, ebuild based on the contribution by Josh Nichols <nichoj@alum... (diff) | |
download | gentoo-2-e1c35b610b9d27a85c7cfb2466ddb9da084731c8.tar.gz gentoo-2-e1c35b610b9d27a85c7cfb2466ddb9da084731c8.tar.bz2 gentoo-2-e1c35b610b9d27a85c7cfb2466ddb9da084731c8.zip |
first commit for dragonflycms
(Portage version: 2.0.51.19)
Diffstat (limited to 'www-apps/dragonflycms/dragonflycms-9.0.3.0.ebuild')
-rw-r--r-- | www-apps/dragonflycms/dragonflycms-9.0.3.0.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/www-apps/dragonflycms/dragonflycms-9.0.3.0.ebuild b/www-apps/dragonflycms/dragonflycms-9.0.3.0.ebuild new file mode 100644 index 000000000000..e2db7687e649 --- /dev/null +++ b/www-apps/dragonflycms/dragonflycms-9.0.3.0.ebuild @@ -0,0 +1,49 @@ +# 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.1 2005/05/16 14:31:22 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" + +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 + +} |