diff options
author | Renat Lumpau <rl03@gentoo.org> | 2006-10-04 04:00:16 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2006-10-04 04:00:16 +0000 |
commit | a1906eddcbffb423fcab3643ad9a6407a72a4ce4 (patch) | |
tree | 3101c91b90a4f62c9020f56eac393828ef7032d9 /www-apps | |
parent | Version bump (diff) | |
download | historical-a1906eddcbffb423fcab3643ad9a6407a72a4ce4.tar.gz historical-a1906eddcbffb423fcab3643ad9a6407a72a4ce4.tar.bz2 historical-a1906eddcbffb423fcab3643ad9a6407a72a4ce4.zip |
Version bump, security bug #149672.
Package-Manager: portage-2.1.2_pre1
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/phprojekt/ChangeLog | 8 | ||||
-rw-r--r-- | www-apps/phprojekt/files/digest-phprojekt-5.1.2 | 3 | ||||
-rw-r--r-- | www-apps/phprojekt/phprojekt-5.1.2.ebuild | 40 |
3 files changed, 50 insertions, 1 deletions
diff --git a/www-apps/phprojekt/ChangeLog b/www-apps/phprojekt/ChangeLog index a7e8e4609a5b..a502395fef12 100644 --- a/www-apps/phprojekt/ChangeLog +++ b/www-apps/phprojekt/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apps/phprojekt # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/phprojekt/ChangeLog,v 1.20 2006/09/03 00:01:09 rl03 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/phprojekt/ChangeLog,v 1.21 2006/10/04 04:00:16 rl03 Exp $ + +*phprojekt-5.1.2 (04 Oct 2006) + + 04 Oct 2006; Renat Lumpau <rl03@gentoo.org> -phprojekt-5.1.1.ebuild, + +phprojekt-5.1.2.ebuild: + Version bump, security bug #149672. *phprojekt-5.1.1 (03 Sep 2006) diff --git a/www-apps/phprojekt/files/digest-phprojekt-5.1.2 b/www-apps/phprojekt/files/digest-phprojekt-5.1.2 new file mode 100644 index 000000000000..5536992af818 --- /dev/null +++ b/www-apps/phprojekt/files/digest-phprojekt-5.1.2 @@ -0,0 +1,3 @@ +MD5 89bd42c5041b8ea7556ea87f72d8848b phprojekt-5.1.2.zip 2083544 +RMD160 604bd45c76ab6297525860de14e56658f92e3f49 phprojekt-5.1.2.zip 2083544 +SHA256 f68d59466692e4f6d40e1dce4c4d11e3fd2d23a97f8577a2674f3727bcd41bb2 phprojekt-5.1.2.zip 2083544 diff --git a/www-apps/phprojekt/phprojekt-5.1.2.ebuild b/www-apps/phprojekt/phprojekt-5.1.2.ebuild new file mode 100644 index 000000000000..7665db71921f --- /dev/null +++ b/www-apps/phprojekt/phprojekt-5.1.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/phprojekt/phprojekt-5.1.2.ebuild,v 1.1 2006/10/04 04:00:16 rl03 Exp $ + +inherit webapp + +DESCRIPTION="Project management and coordination system" +HOMEPAGE="http://www.phprojekt.com/" +#SRC_URI="http://phprojekt.com/releases/${PN}/${P}.tar.gz" +SRC_URI="mirror://gentoo/${P}.zip" + +LICENSE="GPL-2" +KEYWORDS="~ppc ~x86" +IUSE="postgres mysql" + +S=${WORKDIR}/${PN}${PV} + +DEPEND="app-arch/unzip" +RDEPEND="net-www/apache + postgres? ( dev-db/postgresql ) + mysql? ( dev-db/mysql ) + virtual/php" + +pkg_setup () { + webapp_pkg_setup + elog "Please make sure that your PHP is compiled with support for IMAP and your database of choice" +} + +src_install() { + webapp_src_preinst + local file + + cp -R . ${D}/${MY_HTDOCSDIR} + for file in attach chat; do + webapp_serverowned ${MY_HTDOCSDIR}/${file} + done + webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt + + webapp_src_install +} |