diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-12-11 23:57:25 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-12-11 23:57:25 +0000 |
commit | 7319282c72ef7f4ecd4b323d4b8485d18ca8057c (patch) | |
tree | 7a0de56cb892dd92fd8bc0ad89edda34c0d0ff27 /dev-php | |
parent | Initial commit per Bug #6564 (diff) | |
download | gentoo-2-7319282c72ef7f4ecd4b323d4b8485d18ca8057c.tar.gz gentoo-2-7319282c72ef7f4ecd4b323d4b8485d18ca8057c.tar.bz2 gentoo-2-7319282c72ef7f4ecd4b323d4b8485d18ca8057c.zip |
new package. x86 masked
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/phpgroupware/ChangeLog | 11 | ||||
-rw-r--r-- | dev-php/phpgroupware/files/digest-phpgroupware-0.9.14.001 | 1 | ||||
-rw-r--r-- | dev-php/phpgroupware/phpgroupware-0.9.14.001.ebuild | 49 |
3 files changed, 61 insertions, 0 deletions
diff --git a/dev-php/phpgroupware/ChangeLog b/dev-php/phpgroupware/ChangeLog new file mode 100644 index 000000000000..635c9fc34977 --- /dev/null +++ b/dev-php/phpgroupware/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-php/phpgroupware +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-php/phpgroupware/ChangeLog,v 1.1 2002/12/11 23:57:25 rphillips Exp $ + +*phpgroupware-0.9.14.001 (11 Dec 2002) + + 11 Dec 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Author: Justin Juff + New package + diff --git a/dev-php/phpgroupware/files/digest-phpgroupware-0.9.14.001 b/dev-php/phpgroupware/files/digest-phpgroupware-0.9.14.001 new file mode 100644 index 000000000000..39fbfd36259a --- /dev/null +++ b/dev-php/phpgroupware/files/digest-phpgroupware-0.9.14.001 @@ -0,0 +1 @@ +MD5 8bbcf14567a29aa1f3ce8c8c38783b0b phpGroupWare-0.9.14.001.tar.bz2 6399455 diff --git a/dev-php/phpgroupware/phpgroupware-0.9.14.001.ebuild b/dev-php/phpgroupware/phpgroupware-0.9.14.001.ebuild new file mode 100644 index 000000000000..22fce7f103bc --- /dev/null +++ b/dev-php/phpgroupware/phpgroupware-0.9.14.001.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-php/phpgroupware/phpgroupware-0.9.14.001.ebuild,v 1.1 2002/12/11 23:57:25 rphillips Exp $ + +S=${WORKDIR}/phpGroupWare-${PV} +HTTPD_ROOT="/home/httpd/htdocs" +HTTPD_USER="apache" +HTTPD_GROUP="apache" + +DESCRIPTION="The phpGroupWare intranet/groupware tool and application framework." +SRC_URI="http://www.phpgroupware.org/downloads_phpgw/phpGroupWare-${PV}.tar.bz2" +HOMEPAGE="http://www.phpgroupware.org" + +LICENSE="GPL-2" +SLOT="=" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/php + dev-db/mysql" + + +pkg_setup() { + if [ -L ${HTTPD_ROOT}/phpgroupware ] ; then + ewarn "You need to unmerge your old phpGroupWare version first." + ewarn "phpGroupWare will be installed into ${HTTPD_ROOT}/phpgroupware" + ewarn "directly instead of a version-dependant directory." + die "need to unmerge old version first" + fi +} + +src_compile() { + #nothing to compile + echo "Nothing to compile" +} + +src_install () { + dodir ${HTTPD_ROOT}/phpgroupware + cd ../work + cp -r . ${D}/${HTTPD_ROOT} + cd ${D}/${HTTPD_ROOT} + chown -R ${HTTPD_USER}.${HTTPD_GROUP} phpgroupware + chmod -R 700 phpgroupware/files +} + +pkg_postinst() { + einfo "Follow the instructions at http://docs.phpgroupware.org/12-docs/html/admin/x62.html#AEN134 " + einfo "to complete the install. You need to add MySQL users and configure phpGroupWare" +} |