summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2002-12-11 23:57:25 +0000
committerRyan Phillips <rphillips@gentoo.org>2002-12-11 23:57:25 +0000
commit4f0ad41f4c5847bdedfc8d4759a4a7ddee61efa1 (patch)
tree1d4a0548a47c3027de2cb1b2d9b5a29b55dc9bdf /dev-php
parentInitial commit per Bug #6564 (diff)
downloadhistorical-4f0ad41f4c5847bdedfc8d4759a4a7ddee61efa1.tar.gz
historical-4f0ad41f4c5847bdedfc8d4759a4a7ddee61efa1.tar.bz2
historical-4f0ad41f4c5847bdedfc8d4759a4a7ddee61efa1.zip
new package. x86 masked
Diffstat (limited to 'dev-php')
-rw-r--r--dev-php/phpgroupware/ChangeLog11
-rw-r--r--dev-php/phpgroupware/files/digest-phpgroupware-0.9.14.0011
-rw-r--r--dev-php/phpgroupware/phpgroupware-0.9.14.001.ebuild49
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"
+}