diff options
author | Renat Lumpau <rl03@gentoo.org> | 2007-01-03 00:50:48 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2007-01-03 00:50:48 +0000 |
commit | 1bf6ce65e237f111bdf32c0419951674fa76c25d (patch) | |
tree | 2fa495d9292bdcaa8773531099bbefe41002b7b4 /www-apps/xrms/xrms-1.99.2.ebuild | |
parent | Remove dev-util/xmingw-{binutils,gcc,runtime,w32api} from package.mask. (diff) | |
download | gentoo-2-1bf6ce65e237f111bdf32c0419951674fa76c25d.tar.gz gentoo-2-1bf6ce65e237f111bdf32c0419951674fa76c25d.tar.bz2 gentoo-2-1bf6ce65e237f111bdf32c0419951674fa76c25d.zip |
Initial ebuild, bug #62824
(Portage version: 2.1.2_rc4-r4)
Diffstat (limited to 'www-apps/xrms/xrms-1.99.2.ebuild')
-rw-r--r-- | www-apps/xrms/xrms-1.99.2.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/www-apps/xrms/xrms-1.99.2.ebuild b/www-apps/xrms/xrms-1.99.2.ebuild new file mode 100644 index 000000000000..510b084ed440 --- /dev/null +++ b/www-apps/xrms/xrms-1.99.2.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/xrms/xrms-1.99.2.ebuild,v 1.1 2007/01/03 00:50:48 rl03 Exp $ + +inherit webapp depend.php + +MY_DATE="2006-07-25" +DESCRIPTION="XRMS is a fully-integrated suite of web-based tools for Customer Relationship Management (CRM), Sales Force Automation (SFA), and Business Intelligence (BI) tools." +HOMEPAGE="http://xrms.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_DATE}-v${PV}-.tar.gz" + +LICENSE="OSL-2.0" +KEYWORDS="~x86" +S="${WORKDIR}/${PN}" + +IUSE="intl" + +RDEPEND=" + >=virtual/php-4.3.0 + dev-php/PEAR-PEAR +" + +pkg_setup() { + webapp_pkg_setup + local php_flags="mysql" + + use intl && php_flags="${php_flags} nls recode" + require_php_with_use ${php_flags} +} + +src_unpack() { + unpack ${A}; cd ${S} + # Remove .cvs* files and CVS directories + find -name .cvs\* -or \( -type d -name CVS -prune \) | xargs rm -rf +} + +src_install () { + webapp_src_preinst + + dodir "${MY_HOSTROOTDIR}/${PF}" + dodoc CHANGELOG README LICENSE install/INSTALL + + cp -R . "${D}/${MY_HTDOCSDIR}" + mv "${D}/${MY_HTDOCSDIR}/include" "${D}/${MY_HOSTROOTDIR}/${PF}" + + local files="export storage tmp" + for file in ${files}; do + webapp_serverowned "${MY_HTDOCSDIR}/${file}" + done + + webapp_configfile "${MY_HOSTROOTDIR}/${PF}/include/vars.php" + webapp_configfile "${MY_HTDOCSDIR}/include-locations.inc" + webapp_configfile "${MY_HOSTROOTDIR}/${PF}/include/plugin-cfg.php" + webapp_configfile "${MY_HOSTROOTDIR}/${PF}/include/classes/SMTPs/SMTPs.ini.php" + + webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt" + webapp_postupgrade_txt en "${FILESDIR}/postupgrade-en.txt" + webapp_hook_script "${FILESDIR}/reconfig" + + webapp_src_install +} |