diff options
author | 2006-11-01 22:23:23 +0000 | |
---|---|---|
committer | 2006-11-01 22:23:23 +0000 | |
commit | 0b9dff714a9bb04248d5e9c594afc2919f4f82a4 (patch) | |
tree | 64cfb689d3b11a2cd171f24d54891dbf58d6687f /www-apps/mantisbt | |
parent | Stable on Alpha + ia64, bug 153556. (diff) | |
download | historical-0b9dff714a9bb04248d5e9c594afc2919f4f82a4.tar.gz historical-0b9dff714a9bb04248d5e9c594afc2919f4f82a4.tar.bz2 historical-0b9dff714a9bb04248d5e9c594afc2919f4f82a4.zip |
Version bump, bug #153578.
Package-Manager: portage-2.1.2_pre1
Diffstat (limited to 'www-apps/mantisbt')
-rw-r--r-- | www-apps/mantisbt/ChangeLog | 8 | ||||
-rw-r--r-- | www-apps/mantisbt/files/digest-mantisbt-1.0.6 | 3 | ||||
-rw-r--r-- | www-apps/mantisbt/mantisbt-1.0.6.ebuild | 39 |
3 files changed, 49 insertions, 1 deletions
diff --git a/www-apps/mantisbt/ChangeLog b/www-apps/mantisbt/ChangeLog index f553e29bedbd..37d4544cf772 100644 --- a/www-apps/mantisbt/ChangeLog +++ b/www-apps/mantisbt/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apps/mantisbt # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.35 2006/08/02 14:26:40 rl03 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.36 2006/11/01 22:23:23 rl03 Exp $ + +*mantisbt-1.0.6 (01 Nov 2006) + + 01 Nov 2006; Renat Lumpau <rl03@gentoo.org> -mantisbt-1.0.3.ebuild, + -mantisbt-1.0.5.ebuild, +mantisbt-1.0.6.ebuild: + Version bump, bug #153578. 02 Aug 2006; Renat Lumpau <rl03@gentoo.org> mantisbt-1.0.5.ebuild: Typo in S diff --git a/www-apps/mantisbt/files/digest-mantisbt-1.0.6 b/www-apps/mantisbt/files/digest-mantisbt-1.0.6 new file mode 100644 index 000000000000..3deadee72f7e --- /dev/null +++ b/www-apps/mantisbt/files/digest-mantisbt-1.0.6 @@ -0,0 +1,3 @@ +MD5 64af171288bad777d6a1bba493e4a88b mantis-1.0.6.tar.gz 1638568 +RMD160 05b6cb89cf943447a887e9d8d52f927aaa316e16 mantis-1.0.6.tar.gz 1638568 +SHA256 6c43086aa5dc548e666d178ad0a60ee6e7a27b70af2341ae06d2423111301b03 mantis-1.0.6.tar.gz 1638568 diff --git a/www-apps/mantisbt/mantisbt-1.0.6.ebuild b/www-apps/mantisbt/mantisbt-1.0.6.ebuild new file mode 100644 index 000000000000..812c28aa4e95 --- /dev/null +++ b/www-apps/mantisbt/mantisbt-1.0.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.0.6.ebuild,v 1.1 2006/11/01 22:23:23 rl03 Exp $ + +inherit webapp + +IUSE="mysql postgres" +MY_P=mantis-${PV} + +DESCRIPTION="PHP/MySQL/Web based bugtracking system" +HOMEPAGE="http://www.mantisbt.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +S=${WORKDIR}/${MY_P} + +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=" + mysql? ( >=dev-db/mysql-3.23.32 ) + postgres? ( >=dev-db/postgresql-7 ) + net-www/apache + virtual/httpd-php +" + +LICENSE="GPL-2" + +src_install() { + webapp_src_preinst + dodoc doc/* + + cp -R . ${D}/${MY_HTDOCSDIR} + rm -rf ${D}/${MY_HTDOCSDIR}/doc + + mv ${D}/${MY_HTDOCSDIR}/config_inc.php.sample ${D}/${MY_HTDOCSDIR}/config_inc.php + + webapp_configfile ${MY_HTDOCSDIR}/config_inc.php + webapp_postinst_txt en ${FILESDIR}/postinstall-en-1.0.0.txt + webapp_src_install +} |